From e9ac9c2e6ac78939a47fbccd468dc56ff5c4abe3 Mon Sep 17 00:00:00 2001 From: Craig Date: Thu, 10 Oct 2024 10:16:56 -0700 Subject: [PATCH 1/7] Fixes problems creating subdirectories in output --- testdriver/testplan.py | 6 ++---- verifier/verifier.py | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/testdriver/testplan.py b/testdriver/testplan.py index 2045490b..9d2d1a1c 100644 --- a/testdriver/testplan.py +++ b/testdriver/testplan.py @@ -272,11 +272,9 @@ def run_one_test_mode(self): try: result_dir = os.path.dirname(self.outputFilePath) if not os.path.isdir(result_dir): - os.makedirs(result_dir) + os.makedirs(result_dir, exist_ok=True) except BaseException as error: - sys.stderr.write('!!!%s: Cannot create directory %sfor report file %s' % - (error, result_dir, self.outputFilePath)) - return None + logging.error('testplay.py: %s for %s / %s', error, result_dir, self.outputFilePath) # Create results file try: diff --git a/verifier/verifier.py b/verifier/verifier.py index 9346c2b1..c1a5f56c 100644 --- a/verifier/verifier.py +++ b/verifier/verifier.py @@ -71,7 +71,7 @@ def open_verify_files(self, vplan): vplan.result_time_stamp = datetime.datetime.fromtimestamp(file_time).strftime('%Y-%m-%d %H:%M') vplan.report.timestamp = vplan.result_time_stamp except BaseException as err: - logging.error(' *** Cannot open results file %s:\n %s', vplan.result_path, err) + logging.error(' *** CANNOT OPEN RESULTS FILE %s:\n %s', vplan.result_path, err) return None try: From d53c4f8762dc094fb43fd3c8032efb750127d1d5 Mon Sep 17 00:00:00 2001 From: Craig Date: Thu, 10 Oct 2024 17:56:58 -0700 Subject: [PATCH 2/7] Using datetime.json from CLDR for test/verify --- testgen/generators/datetime_fmt.py | 86 ++++++++++++++++++++++++++++-- 1 file changed, 81 insertions(+), 5 deletions(-) diff --git a/testgen/generators/datetime_fmt.py b/testgen/generators/datetime_fmt.py index 449af3fe..ff1e5f86 100644 --- a/testgen/generators/datetime_fmt.py +++ b/testgen/generators/datetime_fmt.py @@ -3,6 +3,7 @@ import json import re import logging +import math import subprocess from generators.base import DataGenerator @@ -12,6 +13,74 @@ class DateTimeFmtGenerator(DataGenerator): json_test = {"test_type": "datetime_fmt"} json_verify = {"test_type": "datetime_fmt"} + def generate_datetime_data_from_cldr(self, dt_json_path, run_limit=-1): + # Get CLDR-derived date time json file and parse it + # Optionally sample from it if run_limit > 1 + with open(dt_json_path, 'r', encoding="UTF-8") as dt_json_file: + try: + json_data = json.load(dt_json_file) + except json.JSONDecodeError as err: + return None + + test_cases = [] + verify_cases = [] + + test_obj = { + 'Test scenario': 'datetime_fmt', + 'test_type': 'datetime_fmt', + 'description': 'date/time format test data generated by Node', + 'icuVersion': self.icu_version, + 'cldrVersion': '??' + } + + test_cases = [] + verify_cases = [] + verify_obj = { + 'test_type': 'datetime_fmt', + 'description': 'date/time format test data generated by Node', + 'icuVersion': self.icu_version, + 'cldrVersion': '??' + } + # Get each entry and assemble the test data and verify data. + label_num = 0 + desired_width = math.ceil(math.log10(len(json_data))) # Based the size of json_data + for test_item in json_data: + label_str = str(label_num).rjust(desired_width, "0") + # Construct options + options = {} + # TODO: Generate input string with "Z" and compute tz_offset_secs + # TODO: Generate hash of the data without the label + new_test = { + "locale": test_item['locale'], + "options": options + } + # TODO: Generate hash of the data without the label + new_test[' "tz_offset_secs":'] = 0 # COMPUTE THIS FOR THE TIMEZONE + hex_hash = '' + new_test['hexhash'] = hex_hash + new_test['label'] = label_str + + new_verify = {"label": label_str, + "verify": test_item['expected'] + } + test_cases.append(new_test) + verify_cases.append(new_verify) + label_num += 1 + # Save output as: datetime_fmt_test.json and datetime_fmt_verify.json + test_obj['verification'] = test_cases + verify_obj['verification'] = verify_cases + + base_path = '' + dt_test_path = os.path.join(base_path, 'datetime_fmt_test.json') + dt_verify_path = os.path.join(base_path, 'datetime_fmt_verify.json') + + try: + self.saveJsonFile(dt_test_path, test_obj, indent=2) + self.saveJsonFile(dt_verify_path, verify_obj, indent=2) + except BaseException as err: + logging.error('!!! %s: Failure to save file %s', err, ) + return None + def process_test_data(self): # Use NOde JS to create the .json files icu_nvm_versions = { @@ -22,11 +91,18 @@ def process_test_data(self): 'icu71': '18.7.0', } + # Update to check for datetime.json which has been generated from CLDR data. + dt_json_path = os.path.join('.', self.icu_version, 'datetime.json') + if os.path.exists(dt_json_path): + result = self.generate_datetime_data_from_cldr(dt_json_path, self.run_limit) + return result + + # OK, there's no CLDR-based JSON data available. run_list = [ - ['source ~/.nvm/nvm.sh; nvm install 21.6.0; nvm use 21.6.0 --silent'], - ['node generators/datetime_gen.js'], - ['mv datetime_fmt*.json icu74'] - ] + ['source ~/.nvm/nvm.sh; nvm install 21.6.0; nvm use 21.6.0 --silent'], + ['node generators/datetime_gen.js'], + ['mv datetime_fmt*.json icu74'] + ] if self.icu_version not in icu_nvm_versions: logging.warning('Generating datetime data not configured for icu version %s', self.icu_version) @@ -39,7 +115,7 @@ def process_test_data(self): nvm_version, nvm_version, '-run_limit', self.run_limit) logging.debug('Running this command: %s', generate_command) - result = result = subprocess.run(generate_command, shell=True) + result = subprocess.run(generate_command, shell=True) # Move results to the right directory mv_command = 'mv datetime_fmt*.json %s' % self.icu_version From 2df65c42c51e2e30092c6c2c85cc647b656f925f Mon Sep 17 00:00:00 2001 From: Craig Date: Fri, 11 Oct 2024 11:43:53 -0700 Subject: [PATCH 3/7] Starting to support CLDR-based datetime_fmt test data --- schema/check_generated_data.py | 1 + schema/schema_validator.py | 2 +- testgen/generators/datetime_fmt.py | 16 +- testgen/icu76/datetime.json | 58214 +++++++++++++++++++++++++++ 4 files changed, 58225 insertions(+), 8 deletions(-) create mode 100644 testgen/icu76/datetime.json diff --git a/schema/check_generated_data.py b/schema/check_generated_data.py index 10706230..948d0dcb 100644 --- a/schema/check_generated_data.py +++ b/schema/check_generated_data.py @@ -5,6 +5,7 @@ import glob import json +from jsonschema import Draft7Validator, ValidationError import logging import logging.config diff --git a/schema/schema_validator.py b/schema/schema_validator.py index 683352e0..6818a4de 100644 --- a/schema/schema_validator.py +++ b/schema/schema_validator.py @@ -5,8 +5,8 @@ import jsonschema.exceptions from jsonschema import validate -from jsonschema import validate from jsonschema import exceptions +from jsonschema import ValidationError import logging import logging.config diff --git a/testgen/generators/datetime_fmt.py b/testgen/generators/datetime_fmt.py index ff1e5f86..ed61f497 100644 --- a/testgen/generators/datetime_fmt.py +++ b/testgen/generators/datetime_fmt.py @@ -51,13 +51,12 @@ def generate_datetime_data_from_cldr(self, dt_json_path, run_limit=-1): # TODO: Generate input string with "Z" and compute tz_offset_secs # TODO: Generate hash of the data without the label new_test = { - "locale": test_item['locale'], + "locale": test_item['locale'], + "input_string": test_item['input'], "options": options - } + } # TODO: Generate hash of the data without the label - new_test[' "tz_offset_secs":'] = 0 # COMPUTE THIS FOR THE TIMEZONE - hex_hash = '' - new_test['hexhash'] = hex_hash + new_test['tz_offset_secs'] = 0 # COMPUTE THIS FOR THE TIMEZONE new_test['label'] = label_str new_verify = {"label": label_str, @@ -66,9 +65,12 @@ def generate_datetime_data_from_cldr(self, dt_json_path, run_limit=-1): test_cases.append(new_test) verify_cases.append(new_verify) label_num += 1 + # Save output as: datetime_fmt_test.json and datetime_fmt_verify.json - test_obj['verification'] = test_cases - verify_obj['verification'] = verify_cases + test_obj['tests'] = test_cases + verify_obj['verifications'] = verify_cases + # Create the hex hash values + self.generateTestHashValues(test_obj) base_path = '' dt_test_path = os.path.join(base_path, 'datetime_fmt_test.json') diff --git a/testgen/icu76/datetime.json b/testgen/icu76/datetime.json new file mode 100644 index 00000000..c2a3fcba --- /dev/null +++ b/testgen/icu76/datetime.json @@ -0,0 +1,58214 @@ +[ + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "March 16, 2024, 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]", + "expected": "July 2, 2001, 6:14:15 AM PDT" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "May 29, 1984, 12:53:00 AM PDT" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "May 29, 2050, 9:47:00 AM PDT" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "July 15, 1969, 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]", + "expected": "January 12, 1970, 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]", + "expected": "September 8, 2001, 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]", + "expected": "March 7, 2024, 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]", + "expected": "July 2, 2001, 1:14:15 PM PDT" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "May 29, 1984, 7:53:00 AM PDT" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "May 29, 2030, 4:47:00 PM PDT" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "July 16, 1969, 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]", + "expected": "January 12, 1970, 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]", + "expected": "September 9, 2001, 1:46:40 AM PDT" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "March 17, 2024, 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]", + "expected": "July 2, 2001, 2:14:15 PM GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "May 29, 1984, 8:53:00 AM GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "May 29, 2050, 5:47:00 PM GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "July 16, 1969, 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]", + "expected": "January 12, 1970, 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]", + "expected": "September 9, 2001, 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]", + "expected": "March 7, 2024, 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]", + "expected": "July 2, 2001, 9:14:15 PM GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "May 29, 1984, 3:53:00 PM GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "May 30, 2030, 12:47:00 AM GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "July 16, 1969, 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]", + "expected": "January 12, 1970, 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]", + "expected": "September 9, 2001, 9:46:40 AM GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "March 17, 2024, 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]", + "expected": "July 2, 2001, 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]", + "expected": "May 29, 1984, 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]", + "expected": "May 29, 2050, 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]", + "expected": "July 16, 1969, 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]", + "expected": "January 12, 1970, 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]", + "expected": "September 9, 2001, 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]", + "expected": "March 7, 2024, 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]", + "expected": "July 3, 2001, 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]", + "expected": "May 29, 1984, 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]", + "expected": "May 30, 2030, 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]", + "expected": "July 16, 1969, 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]", + "expected": "January 13, 1970, 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]", + "expected": "September 9, 2001, 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]", + "expected": "March 17, 2024, 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]", + "expected": "July 2, 2001, 4:14:15 PM GMT+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "May 29, 1984, 11:53:00 AM GMT+4" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "May 29, 2050, 7:47:00 PM GMT+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "July 16, 1969, 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]", + "expected": "January 12, 1970, 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]", + "expected": "September 9, 2001, 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]", + "expected": "March 7, 2024, 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]", + "expected": "July 2, 2001, 11:14:15 PM GMT+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "May 29, 1984, 6:53:00 PM GMT+4" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "May 30, 2030, 2:47:00 AM GMT+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "July 16, 1969, 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]", + "expected": "January 13, 1970, 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]", + "expected": "September 9, 2001, 11:46:40 AM GMT+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "March 17, 2024, 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]", + "expected": "July 2, 2001, 11:14:15 PM GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "May 29, 1984, 5:53:00 PM GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "May 30, 2050, 2:47:00 AM GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "July 16, 1969, 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]", + "expected": "January 12, 1970, 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]", + "expected": "September 9, 2001, 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]", + "expected": "March 7, 2024, 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]", + "expected": "July 3, 2001, 6:14:15 AM GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "May 30, 1984, 12:53:00 AM GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "May 30, 2030, 9:47:00 AM GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "July 16, 1969, 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]", + "expected": "January 13, 1970, 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]", + "expected": "September 9, 2001, 6:46:40 PM GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "March 17, 2024, 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]", + "expected": "July 2, 2001, 10:14:15 PM GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "May 29, 1984, 4:53:00 PM GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "May 30, 2050, 1:47:00 AM GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "July 16, 1969, 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]", + "expected": "January 12, 1970, 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]", + "expected": "September 9, 2001, 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]", + "expected": "March 7, 2024, 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]", + "expected": "July 3, 2001, 5:14:15 AM GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "May 29, 1984, 11:53:00 PM GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "May 30, 2030, 8:47:00 AM GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "July 16, 1969, 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]", + "expected": "January 13, 1970, 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]", + "expected": "September 9, 2001, 5:46:40 PM GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "March 16, 2024, 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]", + "expected": "July 2, 2001, 10:14:15 AM GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "May 29, 1984, 4:53:00 AM GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "May 29, 2050, 1:47:00 PM GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "July 15, 1969, 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]", + "expected": "January 12, 1970, 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]", + "expected": "September 8, 2001, 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]", + "expected": "March 7, 2024, 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]", + "expected": "July 2, 2001, 5:14:15 PM GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "May 29, 1984, 11:53:00 AM GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "May 29, 2030, 8:47:00 PM GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "July 16, 1969, 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]", + "expected": "January 12, 1970, 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]", + "expected": "September 9, 2001, 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]", + "expected": "Saturday, March 16, 2024, 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]", + "expected": "Monday, July 2, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Sunday, May 29, 2050, 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]", + "expected": "Tuesday, July 15, 1969, 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]", + "expected": "Monday, January 12, 1970, 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]", + "expected": "Saturday, September 8, 2001, 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]", + "expected": "Thursday, March 7, 2024, 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]", + "expected": "Monday, July 2, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Wednesday, May 29, 2030, 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]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Monday, January 12, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Sunday, March 17, 2024, 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]", + "expected": "Monday, July 2, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Sunday, May 29, 2050, 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]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Monday, January 12, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Thursday, March 7, 2024, 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]", + "expected": "Monday, July 2, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Thursday, May 30, 2030, 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]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Monday, January 12, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Sunday, March 17, 2024, 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]", + "expected": "Monday, July 2, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Sunday, May 29, 2050, 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]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Monday, January 12, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Thursday, March 7, 2024, 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]", + "expected": "Tuesday, July 3, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Thursday, May 30, 2030, 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]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Tuesday, January 13, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Sunday, March 17, 2024, 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]", + "expected": "Monday, July 2, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Sunday, May 29, 2050, 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]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Monday, January 12, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Thursday, March 7, 2024, 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]", + "expected": "Monday, July 2, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Thursday, May 30, 2030, 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]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Tuesday, January 13, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Sunday, March 17, 2024, 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]", + "expected": "Monday, July 2, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Monday, May 30, 2050, 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]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Monday, January 12, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Thursday, March 7, 2024, 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]", + "expected": "Tuesday, July 3, 2001, 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]", + "expected": "Wednesday, May 30, 1984, 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]", + "expected": "Thursday, May 30, 2030, 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]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Tuesday, January 13, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Sunday, March 17, 2024, 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]", + "expected": "Monday, July 2, 2001, 10:14:15 PM Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "Tuesday, May 29, 1984, 4:53:00 PM Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "Monday, May 30, 2050, 1:47:00 AM Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Monday, January 12, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Thursday, March 7, 2024, 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]", + "expected": "Tuesday, July 3, 2001, 5:14:15 AM Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "Tuesday, May 29, 1984, 11:53:00 PM Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "Thursday, May 30, 2030, 8:47:00 AM Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Tuesday, January 13, 1970, 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]", + "expected": "Sunday, September 9, 2001, 5:46:40 PM Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "Saturday, March 16, 2024, 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]", + "expected": "Monday, July 2, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Sunday, May 29, 2050, 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]", + "expected": "Tuesday, July 15, 1969, 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]", + "expected": "Monday, January 12, 1970, 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]", + "expected": "Saturday, September 8, 2001, 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]", + "expected": "Thursday, March 7, 2024, 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]", + "expected": "Monday, July 2, 2001, 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]", + "expected": "Tuesday, May 29, 1984, 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]", + "expected": "Wednesday, May 29, 2030, 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]", + "expected": "Wednesday, July 16, 1969, 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]", + "expected": "Monday, January 12, 1970, 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]", + "expected": "Sunday, September 9, 2001, 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]", + "expected": "Saturday, March 16, 2024, 5:00 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "Monday, July 2, 2001, 6:14 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "Tuesday, May 29, 1984, 12:53 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "Sunday, May 29, 2050, 9:47 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "Tuesday, July 15, 1969, 5:00 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "Monday, January 12, 1970, 5:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "Saturday, September 8, 2001, 6:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "Thursday, March 7, 2024, 12:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "Monday, July 2, 2001, 1:14 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "Tuesday, May 29, 1984, 7:53 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "Wednesday, May 29, 2030, 4:47 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "Wednesday, July 16, 1969, 12:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "Monday, January 12, 1970, 1:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "Sunday, September 9, 2001, 1:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "Sunday, March 17, 2024, 1:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "Monday, July 2, 2001, 2:14 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "Tuesday, May 29, 1984, 8:53 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "Sunday, May 29, 2050, 5:47 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "Wednesday, July 16, 1969, 1:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "Monday, January 12, 1970, 2:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "Sunday, September 9, 2001, 2:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "Thursday, March 7, 2024, 9:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "Monday, July 2, 2001, 9:14 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "Tuesday, May 29, 1984, 3:53 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "Thursday, May 30, 2030, 12:47 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "Wednesday, July 16, 1969, 8:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "Monday, January 12, 1970, 10:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "Sunday, September 9, 2001, 9:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "Sunday, March 17, 2024, 3:30 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "Monday, July 2, 2001, 5:44 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "Tuesday, May 29, 1984, 11:23 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "Sunday, May 29, 2050, 8:17 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "Wednesday, July 16, 1969, 3:30 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "Monday, January 12, 1970, 5:16 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "Sunday, September 9, 2001, 6:16 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "Thursday, March 7, 2024, 11:30 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "Tuesday, July 3, 2001, 12:44 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "Tuesday, May 29, 1984, 6:23 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "Thursday, May 30, 2030, 3:17 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "Wednesday, July 16, 1969, 10:30 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "Tuesday, January 13, 1970, 1:16 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "Sunday, September 9, 2001, 1:16 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "Sunday, March 17, 2024, 2:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "Monday, July 2, 2001, 4:14 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "Tuesday, May 29, 1984, 11:53 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "Sunday, May 29, 2050, 7:47 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "Wednesday, July 16, 1969, 3:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "Monday, January 12, 1970, 4:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "Sunday, September 9, 2001, 4:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "Thursday, March 7, 2024, 10:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "Monday, July 2, 2001, 11:14 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "Tuesday, May 29, 1984, 6:53 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "Thursday, May 30, 2030, 2:47 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "Wednesday, July 16, 1969, 10:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "Tuesday, January 13, 1970, 12:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "Sunday, September 9, 2001, 11:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "Sunday, March 17, 2024, 10:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "Monday, July 2, 2001, 11:14 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "Tuesday, May 29, 1984, 5:53 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "Monday, May 30, 2050, 2:47 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "Wednesday, July 16, 1969, 10:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "Monday, January 12, 1970, 11:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "Sunday, September 9, 2001, 11:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "Thursday, March 7, 2024, 6:00 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "Tuesday, July 3, 2001, 6:14 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "Wednesday, May 30, 1984, 12:53 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "Thursday, May 30, 2030, 9:47 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "Wednesday, July 16, 1969, 5:00 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "Tuesday, January 13, 1970, 7:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "Sunday, September 9, 2001, 6:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "Sunday, March 17, 2024, 9:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "Monday, July 2, 2001, 10:14 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "Tuesday, May 29, 1984, 4:53 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "Monday, May 30, 2050, 1:47 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "Wednesday, July 16, 1969, 9:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "Monday, January 12, 1970, 10:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "Sunday, September 9, 2001, 10:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "Thursday, March 7, 2024, 5:00 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "Tuesday, July 3, 2001, 5:14 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "Tuesday, May 29, 1984, 11:53 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "Thursday, May 30, 2030, 8:47 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "Wednesday, July 16, 1969, 4:00 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "Tuesday, January 13, 1970, 6:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "Sunday, September 9, 2001, 5:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "Saturday, March 16, 2024, 9:00 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "Monday, July 2, 2001, 10:14 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "Tuesday, May 29, 1984, 4:53 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "Sunday, May 29, 2050, 1:47 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "Tuesday, July 15, 1969, 9:00 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "Monday, January 12, 1970, 10:46 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "Saturday, September 8, 2001, 10:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "Thursday, March 7, 2024, 5:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "Monday, July 2, 2001, 5:14 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "Tuesday, May 29, 1984, 11:53 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "Wednesday, May 29, 2030, 8:47 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "Wednesday, July 16, 1969, 4:00 AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "Monday, January 12, 1970, 6:46 PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "Sunday, September 9, 2001, 5:46 AM" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "March 16, 2024, 5:00:00 PM PDT" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "July 2, 2001, 6:14:15 AM PDT" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "May 29, 1984, 12:53:00 AM PDT" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "May 29, 2050, 9:47:00 AM PDT" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "July 15, 1969, 5:00:00 PM GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "January 12, 1970, 5:46:40 AM PST" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "September 8, 2001, 6:46:40 PM PDT" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "March 7, 2024, 12:00:01 AM PST" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "July 2, 2001, 1:14:15 PM PDT" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "May 29, 1984, 7:53:00 AM PDT" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "May 29, 2030, 4:47:00 PM PDT" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "July 16, 1969, 12:00:00 AM GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "January 12, 1970, 1:46:40 PM PST" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "September 9, 2001, 1:46:40 AM PDT" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "March 17, 2024, 1:00:00 AM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "July 2, 2001, 2:14:15 PM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "May 29, 1984, 8:53:00 AM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "May 29, 2050, 5:47:00 PM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "July 16, 1969, 1:00:00 AM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "January 12, 1970, 2:46:40 PM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "September 9, 2001, 2:46:40 AM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "March 7, 2024, 9:00:01 AM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "July 2, 2001, 9:14:15 PM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "May 29, 1984, 3:53:00 PM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "May 30, 2030, 12:47:00 AM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "July 16, 1969, 8:00:00 AM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "January 12, 1970, 10:46:40 PM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "September 9, 2001, 9:46:40 AM GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "March 17, 2024, 3:30:00 AM GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "July 2, 2001, 5:44:15 PM GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "May 29, 1984, 11:23:00 AM GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "May 29, 2050, 8:17:00 PM GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "July 16, 1969, 3:30:00 AM GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "January 12, 1970, 5:16:40 PM GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "September 9, 2001, 6:16:40 AM GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "March 7, 2024, 11:30:01 AM GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "July 3, 2001, 12:44:15 AM GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "May 29, 1984, 6:23:00 PM GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "May 30, 2030, 3:17:00 AM GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "July 16, 1969, 10:30:00 AM GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "January 13, 1970, 1:16:40 AM GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "September 9, 2001, 1:16:40 PM GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "March 17, 2024, 2:00:00 AM GMT+2" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "July 2, 2001, 4:14:15 PM GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "May 29, 1984, 11:53:00 AM GMT+4" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "May 29, 2050, 7:47:00 PM GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "July 16, 1969, 3:00:00 AM GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "January 12, 1970, 4:46:40 PM GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "September 9, 2001, 4:46:40 AM GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "March 7, 2024, 10:00:01 AM GMT+2" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "July 2, 2001, 11:14:15 PM GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "May 29, 1984, 6:53:00 PM GMT+4" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "May 30, 2030, 2:47:00 AM GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "July 16, 1969, 10:00:00 AM GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "January 13, 1970, 12:46:40 AM GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "September 9, 2001, 11:46:40 AM GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "March 17, 2024, 10:00:00 AM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "July 2, 2001, 11:14:15 PM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "May 29, 1984, 5:53:00 PM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "May 30, 2050, 2:47:00 AM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "July 16, 1969, 10:00:00 AM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "January 12, 1970, 11:46:40 PM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "September 9, 2001, 11:46:40 AM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "March 7, 2024, 6:00:01 PM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "July 3, 2001, 6:14:15 AM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "May 30, 1984, 12:53:00 AM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "May 30, 2030, 9:47:00 AM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "July 16, 1969, 5:00:00 PM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "January 13, 1970, 7:46:40 AM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "September 9, 2001, 6:46:40 PM GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "March 17, 2024, 9:00:00 AM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "July 2, 2001, 10:14:15 PM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "May 29, 1984, 4:53:00 PM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "May 30, 2050, 1:47:00 AM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "July 16, 1969, 9:00:00 AM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "January 12, 1970, 10:46:40 PM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "September 9, 2001, 10:46:40 AM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "March 7, 2024, 5:00:01 PM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "July 3, 2001, 5:14:15 AM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "May 29, 1984, 11:53:00 PM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "May 30, 2030, 8:47:00 AM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "July 16, 1969, 4:00:00 PM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "January 13, 1970, 6:46:40 AM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "September 9, 2001, 5:46:40 PM GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "March 16, 2024, 9:00:00 PM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "July 2, 2001, 10:14:15 AM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "May 29, 1984, 4:53:00 AM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "May 29, 2050, 1:47:00 PM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "July 15, 1969, 9:00:00 PM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "January 12, 1970, 10:46:40 AM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "September 8, 2001, 10:46:40 PM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "March 7, 2024, 5:00:01 AM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "July 2, 2001, 5:14:15 PM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "May 29, 1984, 11:53:00 AM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "May 29, 2030, 8:47:00 PM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "July 16, 1969, 4:00:00 AM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "January 12, 1970, 6:46:40 PM GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "September 9, 2001, 5:46:40 AM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "March 16, 2024, 5:00:00 PM PDT" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "July 2, 2001, 6:14:15 AM PDT" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "May 29, 1984, 12:53:00 AM PDT" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "May 29, 2050, 9:47:00 AM PDT" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "July 15, 1969, 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": "January 12, 1970, 5:46:40 AM PST" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "September 8, 2001, 6:46:40 PM PDT" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "March 7, 2024, 12:00:01 AM PST" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "July 2, 2001, 1:14:15 PM PDT" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "May 29, 1984, 7:53:00 AM PDT" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "May 29, 2030, 4:47:00 PM PDT" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "July 16, 1969, 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": "January 12, 1970, 1:46:40 PM PST" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "September 9, 2001, 1:46:40 AM PDT" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "March 17, 2024, 1:00:00 AM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "July 2, 2001, 2:14:15 PM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "May 29, 1984, 8:53:00 AM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "May 29, 2050, 5:47:00 PM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "July 16, 1969, 1:00:00 AM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "January 12, 1970, 2:46:40 PM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "September 9, 2001, 2:46:40 AM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "March 7, 2024, 9:00:01 AM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "July 2, 2001, 9:14:15 PM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "May 29, 1984, 3:53:00 PM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "May 30, 2030, 12:47:00 AM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "July 16, 1969, 8:00:00 AM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "January 12, 1970, 10:46:40 PM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "September 9, 2001, 9:46:40 AM GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "March 17, 2024, 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": "July 2, 2001, 5:44:15 PM GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "May 29, 1984, 11:23:00 AM GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "May 29, 2050, 8:17:00 PM GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "July 16, 1969, 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": "January 12, 1970, 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": "September 9, 2001, 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": "March 7, 2024, 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": "July 3, 2001, 12:44:15 AM GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "May 29, 1984, 6:23:00 PM GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "May 30, 2030, 3:17:00 AM GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "July 16, 1969, 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": "January 13, 1970, 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": "September 9, 2001, 1:16:40 PM GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "March 17, 2024, 2:00:00 AM GMT+2" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "July 2, 2001, 4:14:15 PM GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "May 29, 1984, 11:53:00 AM GMT+4" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "May 29, 2050, 7:47:00 PM GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "July 16, 1969, 3:00:00 AM GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "January 12, 1970, 4:46:40 PM GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "September 9, 2001, 4:46:40 AM GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "March 7, 2024, 10:00:01 AM GMT+2" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "July 2, 2001, 11:14:15 PM GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "May 29, 1984, 6:53:00 PM GMT+4" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "May 30, 2030, 2:47:00 AM GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "July 16, 1969, 10:00:00 AM GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "January 13, 1970, 12:46:40 AM GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "September 9, 2001, 11:46:40 AM GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "March 17, 2024, 10:00:00 AM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "July 2, 2001, 11:14:15 PM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "May 29, 1984, 5:53:00 PM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "May 30, 2050, 2:47:00 AM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "July 16, 1969, 10:00:00 AM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "January 12, 1970, 11:46:40 PM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "September 9, 2001, 11:46:40 AM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "March 7, 2024, 6:00:01 PM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "July 3, 2001, 6:14:15 AM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "May 30, 1984, 12:53:00 AM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "May 30, 2030, 9:47:00 AM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "July 16, 1969, 5:00:00 PM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "January 13, 1970, 7:46:40 AM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "September 9, 2001, 6:46:40 PM GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "March 17, 2024, 9:00:00 AM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "July 2, 2001, 10:14:15 PM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "May 29, 1984, 4:53:00 PM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "May 30, 2050, 1:47:00 AM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "July 16, 1969, 9:00:00 AM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "January 12, 1970, 10:46:40 PM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "September 9, 2001, 10:46:40 AM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "March 7, 2024, 5:00:01 PM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "July 3, 2001, 5:14:15 AM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "May 29, 1984, 11:53:00 PM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "May 30, 2030, 8:47:00 AM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "July 16, 1969, 4:00:00 PM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "January 13, 1970, 6:46:40 AM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "September 9, 2001, 5:46:40 PM GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "March 16, 2024, 9:00:00 PM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "July 2, 2001, 10:14:15 AM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "May 29, 1984, 4:53:00 AM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "May 29, 2050, 1:47:00 PM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "July 15, 1969, 9:00:00 PM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "January 12, 1970, 10:46:40 AM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "September 8, 2001, 10:46:40 PM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "March 7, 2024, 5:00:01 AM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "July 2, 2001, 5:14:15 PM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "May 29, 1984, 11:53:00 AM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "May 29, 2030, 8:47:00 PM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "July 16, 1969, 4:00:00 AM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "January 12, 1970, 6:46:40 PM GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-US", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "September 9, 2001, 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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "09/09/2001, 01:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "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]", + "expected": "02/07/2001, 14:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "29/05/1984, 08:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "29/05/2050, 17:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "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]", + "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]", + "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]", + "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]", + "expected": "02/07/2001, 21:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "29/05/1984, 15:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "30/05/2030, 00:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "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]", + "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]", + "expected": "09/09/2001, 09:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "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]", + "expected": "02/07/2001, 17:44" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "29/05/1984, 11:23" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "29/05/2050, 20:17" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "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]", + "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]", + "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]", + "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]", + "expected": "03/07/2001, 00:44" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "29/05/1984, 18:23" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "30/05/2030, 03:17" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "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]", + "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]", + "expected": "09/09/2001, 13:16" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "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]", + "expected": "02/07/2001, 16:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "29/05/1984, 11:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "29/05/2050, 19:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "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]", + "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]", + "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]", + "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]", + "expected": "02/07/2001, 23:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "29/05/1984, 18:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "30/05/2030, 02:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "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]", + "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]", + "expected": "09/09/2001, 11:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "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]", + "expected": "02/07/2001, 23:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "29/05/1984, 17:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "30/05/2050, 02:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "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]", + "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]", + "expected": "03/07/2001, 06:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "30/05/1984, 00:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "30/05/2030, 09:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "expected": "09/09/2001, 18:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "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]", + "expected": "02/07/2001, 22:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "29/05/1984, 16:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "30/05/2050, 01:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "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]", + "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]", + "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]", + "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]", + "expected": "03/07/2001, 05:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "29/05/1984, 23:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "30/05/2030, 08:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "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]", + "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]", + "expected": "09/09/2001, 17:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "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]", + "expected": "02/07/2001, 10:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "29/05/1984, 04:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "29/05/2050, 13:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "expected": "02/07/2001, 17:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "29/05/1984, 11:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "29/05/2030, 20:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "16 March 2024, 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]", + "expected": "2 July 2001, 06:14:15 GMT-7" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "29 May 1984, 00:53:00 GMT-7" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "29 May 2050, 09:47:00 GMT-7" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "15 July 1969, 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]", + "expected": "12 January 1970, 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]", + "expected": "8 September 2001, 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]", + "expected": "7 March 2024, 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]", + "expected": "2 July 2001, 13:14:15 GMT-7" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "29 May 1984, 07:53:00 GMT-7" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "29 May 2030, 16:47:00 GMT-7" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "16 July 1969, 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]", + "expected": "12 January 1970, 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]", + "expected": "9 September 2001, 01:46:40 GMT-7" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "17 March 2024, 01:00:00 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2 July 2001, 14:14:15 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "29 May 1984, 08:53:00 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "29 May 2050, 17:47:00 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "16 July 1969, 01:00:00 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "12 January 1970, 14:46:40 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "9 September 2001, 02:46:40 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "7 March 2024, 09:00:01 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2 July 2001, 21:14:15 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "29 May 1984, 15:53:00 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "30 May 2030, 00:47:00 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "16 July 1969, 08:00:00 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "12 January 1970, 22:46:40 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "9 September 2001, 09:46:40 GMT+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "17 March 2024, 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]", + "expected": "2 July 2001, 17:44:15 GMT+4:30" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "29 May 1984, 11:23:00 GMT+3:30" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "29 May 2050, 20:17:00 GMT+3:30" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "16 July 1969, 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]", + "expected": "12 January 1970, 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]", + "expected": "9 September 2001, 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]", + "expected": "7 March 2024, 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]", + "expected": "3 July 2001, 00:44:15 GMT+4:30" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "29 May 1984, 18:23:00 GMT+3:30" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "30 May 2030, 03:17:00 GMT+3:30" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "16 July 1969, 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]", + "expected": "13 January 1970, 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]", + "expected": "9 September 2001, 13:16:40 GMT+4:30" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "17 March 2024, 02:00:00 EET" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2 July 2001, 16:14:15 EEST" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "29 May 1984, 11:53:00 GMT+4" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "29 May 2050, 19:47:00 EEST" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "16 July 1969, 03:00:00 GMT+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "12 January 1970, 16:46:40 GMT+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "9 September 2001, 04:46:40 EEST" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "7 March 2024, 10:00:01 EET" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2 July 2001, 23:14:15 EEST" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "29 May 1984, 18:53:00 GMT+4" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "30 May 2030, 02:47:00 EEST" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "16 July 1969, 10:00:00 GMT+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "13 January 1970, 00:46:40 GMT+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "9 September 2001, 11:46:40 EEST" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "17 March 2024, 10:00:00 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2 July 2001, 23:14:15 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "29 May 1984, 17:53:00 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "30 May 2050, 02:47:00 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "16 July 1969, 10:00:00 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "12 January 1970, 23:46:40 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "9 September 2001, 11:46:40 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "7 March 2024, 18:00:01 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "3 July 2001, 06:14:15 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "30 May 1984, 00:53:00 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "30 May 2030, 09:47:00 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "16 July 1969, 17:00:00 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "13 January 1970, 07:46:40 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "9 September 2001, 18:46:40 GMT+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "17 March 2024, 09:00:00 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2 July 2001, 22:14:15 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "29 May 1984, 16:53:00 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "30 May 2050, 01:47:00 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "16 July 1969, 09:00:00 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "12 January 1970, 22:46:40 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "9 September 2001, 10:46:40 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "7 March 2024, 17:00:01 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "3 July 2001, 05:14:15 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "29 May 1984, 23:53:00 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "30 May 2030, 08:47:00 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "16 July 1969, 16:00:00 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "13 January 1970, 06:46:40 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "9 September 2001, 17:46:40 GMT+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "16 March 2024, 21:00:00 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2 July 2001, 10:14:15 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "29 May 1984, 04:53:00 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "29 May 2050, 13:47:00 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "15 July 1969, 21:00:00 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "12 January 1970, 10:46:40 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "8 September 2001, 22:46:40 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "7 March 2024, 05:00:01 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2 July 2001, 17:14:15 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "29 May 1984, 11:53:00 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "29 May 2030, 20:47:00 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "16 July 1969, 04:00:00 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "12 January 1970, 18:46:40 GMT-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "9 September 2001, 05:46:40 GMT-3" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "Saturday, 16 March 2024, 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]", + "expected": "Monday, 2 July 2001, 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]", + "expected": "Tuesday, 29 May 1984, 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]", + "expected": "Sunday, 29 May 2050, 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]", + "expected": "Tuesday, 15 July 1969, 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]", + "expected": "Monday, 12 January 1970, 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]", + "expected": "Saturday, 8 September 2001, 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]", + "expected": "Thursday, 7 March 2024, 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]", + "expected": "Monday, 2 July 2001, 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]", + "expected": "Tuesday, 29 May 1984, 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]", + "expected": "Wednesday, 29 May 2030, 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]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Monday, 12 January 1970, 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]", + "expected": "Sunday, 9 September 2001, 01:46:40 Pacific Daylight Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "Sunday, 17 March 2024, 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]", + "expected": "Monday, 2 July 2001, 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]", + "expected": "Tuesday, 29 May 1984, 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]", + "expected": "Sunday, 29 May 2050, 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]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Monday, 12 January 1970, 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]", + "expected": "Sunday, 9 September 2001, 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]", + "expected": "Thursday, 7 March 2024, 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]", + "expected": "Monday, 2 July 2001, 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]", + "expected": "Tuesday, 29 May 1984, 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]", + "expected": "Thursday, 30 May 2030, 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]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Monday, 12 January 1970, 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]", + "expected": "Sunday, 9 September 2001, 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]", + "expected": "Sunday, 17 March 2024, 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]", + "expected": "Monday, 2 July 2001, 17:44:15 Iran Daylight Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "Tuesday, 29 May 1984, 11:23:00 Iran Standard Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "Sunday, 29 May 2050, 20:17:00 Iran Standard Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Monday, 12 January 1970, 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]", + "expected": "Sunday, 9 September 2001, 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]", + "expected": "Thursday, 7 March 2024, 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]", + "expected": "Tuesday, 3 July 2001, 00:44:15 Iran Daylight Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "Tuesday, 29 May 1984, 18:23:00 Iran Standard Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "Thursday, 30 May 2030, 03:17:00 Iran Standard Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Tuesday, 13 January 1970, 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]", + "expected": "Sunday, 9 September 2001, 13:16:40 Iran Daylight Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "Sunday, 17 March 2024, 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]", + "expected": "Monday, 2 July 2001, 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]", + "expected": "Tuesday, 29 May 1984, 11:53:00 Moscow Summer Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "Sunday, 29 May 2050, 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]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Monday, 12 January 1970, 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]", + "expected": "Sunday, 9 September 2001, 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]", + "expected": "Thursday, 7 March 2024, 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]", + "expected": "Monday, 2 July 2001, 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]", + "expected": "Tuesday, 29 May 1984, 18:53:00 Moscow Summer Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "Thursday, 30 May 2030, 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]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Tuesday, 13 January 1970, 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]", + "expected": "Sunday, 9 September 2001, 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]", + "expected": "Sunday, 17 March 2024, 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]", + "expected": "Monday, 2 July 2001, 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]", + "expected": "Tuesday, 29 May 1984, 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]", + "expected": "Monday, 30 May 2050, 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]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Monday, 12 January 1970, 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]", + "expected": "Sunday, 9 September 2001, 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]", + "expected": "Thursday, 7 March 2024, 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]", + "expected": "Tuesday, 3 July 2001, 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]", + "expected": "Wednesday, 30 May 1984, 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]", + "expected": "Thursday, 30 May 2030, 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]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Tuesday, 13 January 1970, 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]", + "expected": "Sunday, 9 September 2001, 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]", + "expected": "Sunday, 17 March 2024, 09:00:00 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "Monday, 2 July 2001, 22:14:15 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "Tuesday, 29 May 1984, 16:53:00 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "Monday, 30 May 2050, 01:47:00 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Monday, 12 January 1970, 22:46:40 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "Sunday, 9 September 2001, 10:46:40 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "Thursday, 7 March 2024, 17:00:01 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "Tuesday, 3 July 2001, 05:14:15 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "Tuesday, 29 May 1984, 23:53:00 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "Thursday, 30 May 2030, 08:47:00 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Tuesday, 13 January 1970, 06:46:40 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "Sunday, 9 September 2001, 17:46:40 Palau Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "Saturday, 16 March 2024, 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]", + "expected": "Monday, 2 July 2001, 10:14:15 Uruguay Standard Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "Tuesday, 29 May 1984, 04:53:00 Uruguay Standard Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "Sunday, 29 May 2050, 13:47:00 Uruguay Standard Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "Tuesday, 15 July 1969, 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]", + "expected": "Monday, 12 January 1970, 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]", + "expected": "Saturday, 8 September 2001, 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]", + "expected": "Thursday, 7 March 2024, 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]", + "expected": "Monday, 2 July 2001, 17:14:15 Uruguay Standard Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "Tuesday, 29 May 1984, 11:53:00 Uruguay Standard Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "Wednesday, 29 May 2030, 20:47:00 Uruguay Standard Time" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "Wednesday, 16 July 1969, 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]", + "expected": "Monday, 12 January 1970, 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]", + "expected": "Sunday, 9 September 2001, 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]", + "expected": "Saturday, 16 March 2024, 17:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "Monday, 2 July 2001, 06:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "Tuesday, 29 May 1984, 00:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "Sunday, 29 May 2050, 09:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "Tuesday, 15 July 1969, 17:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "Monday, 12 January 1970, 05:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "Saturday, 8 September 2001, 18:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "Thursday, 7 March 2024, 00:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "Monday, 2 July 2001, 13:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "Tuesday, 29 May 1984, 07:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "Wednesday, 29 May 2030, 16:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "Wednesday, 16 July 1969, 00:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "Monday, 12 January 1970, 13:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "Sunday, 9 September 2001, 01:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "Sunday, 17 March 2024, 01:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "Monday, 2 July 2001, 14:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "Tuesday, 29 May 1984, 08:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "Sunday, 29 May 2050, 17:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "Wednesday, 16 July 1969, 01:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "Monday, 12 January 1970, 14:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "Sunday, 9 September 2001, 02:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "Thursday, 7 March 2024, 09:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "Monday, 2 July 2001, 21:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "Tuesday, 29 May 1984, 15:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "Thursday, 30 May 2030, 00:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "Wednesday, 16 July 1969, 08:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "Monday, 12 January 1970, 22:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "Sunday, 9 September 2001, 09:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "Sunday, 17 March 2024, 03:30" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "Monday, 2 July 2001, 17:44" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "Tuesday, 29 May 1984, 11:23" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "Sunday, 29 May 2050, 20:17" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "Wednesday, 16 July 1969, 03:30" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "Monday, 12 January 1970, 17:16" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "Sunday, 9 September 2001, 06:16" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "Thursday, 7 March 2024, 11:30" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "Tuesday, 3 July 2001, 00:44" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "Tuesday, 29 May 1984, 18:23" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "Thursday, 30 May 2030, 03:17" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "Wednesday, 16 July 1969, 10:30" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "Tuesday, 13 January 1970, 01:16" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "Sunday, 9 September 2001, 13:16" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "Sunday, 17 March 2024, 02:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "Monday, 2 July 2001, 16:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "Tuesday, 29 May 1984, 11:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "Sunday, 29 May 2050, 19:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "Wednesday, 16 July 1969, 03:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "Monday, 12 January 1970, 16:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "Sunday, 9 September 2001, 04:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "Thursday, 7 March 2024, 10:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "Monday, 2 July 2001, 23:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "Tuesday, 29 May 1984, 18:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "Thursday, 30 May 2030, 02:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "Wednesday, 16 July 1969, 10:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "Tuesday, 13 January 1970, 00:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "Sunday, 9 September 2001, 11:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "Sunday, 17 March 2024, 10:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "Monday, 2 July 2001, 23:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "Tuesday, 29 May 1984, 17:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "Monday, 30 May 2050, 02:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "Wednesday, 16 July 1969, 10:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "Monday, 12 January 1970, 23:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "Sunday, 9 September 2001, 11:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "Thursday, 7 March 2024, 18:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "Tuesday, 3 July 2001, 06:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "Wednesday, 30 May 1984, 00:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "Thursday, 30 May 2030, 09:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "Wednesday, 16 July 1969, 17:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "Tuesday, 13 January 1970, 07:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "Sunday, 9 September 2001, 18:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "Sunday, 17 March 2024, 09:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "Monday, 2 July 2001, 22:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "Tuesday, 29 May 1984, 16:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "Monday, 30 May 2050, 01:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "Wednesday, 16 July 1969, 09:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "Monday, 12 January 1970, 22:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "Sunday, 9 September 2001, 10:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "Thursday, 7 March 2024, 17:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "Tuesday, 3 July 2001, 05:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "Tuesday, 29 May 1984, 23:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "Thursday, 30 May 2030, 08:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "Wednesday, 16 July 1969, 16:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "Tuesday, 13 January 1970, 06:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "Sunday, 9 September 2001, 17:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "Saturday, 16 March 2024, 21:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "Monday, 2 July 2001, 10:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "Tuesday, 29 May 1984, 04:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "Sunday, 29 May 2050, 13:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "Tuesday, 15 July 1969, 21:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "Monday, 12 January 1970, 10:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "Saturday, 8 September 2001, 22:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "Thursday, 7 March 2024, 05:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "Monday, 2 July 2001, 17:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "Tuesday, 29 May 1984, 11:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "Wednesday, 29 May 2030, 20:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "Wednesday, 16 July 1969, 04:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "Monday, 12 January 1970, 18:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "Sunday, 9 September 2001, 05:46" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "16 March 2024, 17:00:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "2 July 2001, 06:14:15 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "29 May 1984, 00:53:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "29 May 2050, 09:47:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "15 July 1969, 17:00:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "12 January 1970, 05:46:40 GMT-8" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "8 September 2001, 18:46:40 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "7 March 2024, 00:00:01 GMT-8" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "2 July 2001, 13:14:15 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "29 May 1984, 07:53:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "29 May 2030, 16:47:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "16 July 1969, 00:00:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "12 January 1970, 13:46:40 GMT-8" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "9 September 2001, 01:46:40 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "17 March 2024, 01:00:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2 July 2001, 14:14:15 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "29 May 1984, 08:53:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "29 May 2050, 17:47:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "16 July 1969, 01:00:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "12 January 1970, 14:46:40 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "9 September 2001, 02:46:40 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "7 March 2024, 09:00:01 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2 July 2001, 21:14:15 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "29 May 1984, 15:53:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "30 May 2030, 00:47:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "16 July 1969, 08:00:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "12 January 1970, 22:46:40 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "9 September 2001, 09:46:40 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "17 March 2024, 03:30:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "2 July 2001, 17:44:15 GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "29 May 1984, 11:23:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "29 May 2050, 20:17:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "16 July 1969, 03:30:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "12 January 1970, 17:16:40 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "9 September 2001, 06:16:40 GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "7 March 2024, 11:30:01 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "3 July 2001, 00:44:15 GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "29 May 1984, 18:23:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "30 May 2030, 03:17:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "16 July 1969, 10:30:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "13 January 1970, 01:16:40 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "9 September 2001, 13:16:40 GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "17 March 2024, 02:00:00 EET" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2 July 2001, 16:14:15 EEST" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "29 May 1984, 11:53:00 GMT+4" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "29 May 2050, 19:47:00 EEST" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "16 July 1969, 03:00:00 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "12 January 1970, 16:46:40 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "9 September 2001, 04:46:40 EEST" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "7 March 2024, 10:00:01 EET" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2 July 2001, 23:14:15 EEST" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "29 May 1984, 18:53:00 GMT+4" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "30 May 2030, 02:47:00 EEST" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "16 July 1969, 10:00:00 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "13 January 1970, 00:46:40 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "9 September 2001, 11:46:40 EEST" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "17 March 2024, 10:00:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2 July 2001, 23:14:15 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "29 May 1984, 17:53:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "30 May 2050, 02:47:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "16 July 1969, 10:00:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "12 January 1970, 23:46:40 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "9 September 2001, 11:46:40 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "7 March 2024, 18:00:01 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "3 July 2001, 06:14:15 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "30 May 1984, 00:53:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "30 May 2030, 09:47:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "16 July 1969, 17:00:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "13 January 1970, 07:46:40 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "9 September 2001, 18:46:40 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "17 March 2024, 09:00:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2 July 2001, 22:14:15 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "29 May 1984, 16:53:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "30 May 2050, 01:47:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "16 July 1969, 09:00:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "12 January 1970, 22:46:40 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "9 September 2001, 10:46:40 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "7 March 2024, 17:00:01 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "3 July 2001, 05:14:15 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "29 May 1984, 23:53:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "30 May 2030, 08:47:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "16 July 1969, 16:00:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "13 January 1970, 06:46:40 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "9 September 2001, 17:46:40 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "16 March 2024, 21:00:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2 July 2001, 10:14:15 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "29 May 1984, 04:53:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "29 May 2050, 13:47:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "15 July 1969, 21:00:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "12 January 1970, 10:46:40 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "8 September 2001, 22:46:40 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "7 March 2024, 05:00:01 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2 July 2001, 17:14:15 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "29 May 1984, 11:53:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "29 May 2030, 20:47:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "16 July 1969, 04:00:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "12 January 1970, 18:46:40 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "9 September 2001, 05:46:40 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "16 March 2024, 17:00:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "2 July 2001, 06:14:15 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "29 May 1984, 00:53:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "29 May 2050, 09:47:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "15 July 1969, 17:00:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "12 January 1970, 05:46:40 GMT-8" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "8 September 2001, 18:46:40 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "7 March 2024, 00:00:01 GMT-8" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "2 July 2001, 13:14:15 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "29 May 1984, 07:53:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "29 May 2030, 16:47:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "16 July 1969, 00:00:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "12 January 1970, 13:46:40 GMT-8" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "9 September 2001, 01:46:40 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "17 March 2024, 01:00:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2 July 2001, 14:14:15 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "29 May 1984, 08:53:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "29 May 2050, 17:47:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "16 July 1969, 01:00:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "12 January 1970, 14:46:40 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "9 September 2001, 02:46:40 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "7 March 2024, 09:00:01 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2 July 2001, 21:14:15 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "29 May 1984, 15:53:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "30 May 2030, 00:47:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "16 July 1969, 08:00:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "12 January 1970, 22:46:40 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "9 September 2001, 09:46:40 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "17 March 2024, 03:30:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "2 July 2001, 17:44:15 GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "29 May 1984, 11:23:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "29 May 2050, 20:17:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "16 July 1969, 03:30:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "12 January 1970, 17:16:40 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "9 September 2001, 06:16:40 GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "7 March 2024, 11:30:01 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "3 July 2001, 00:44:15 GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "29 May 1984, 18:23:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "30 May 2030, 03:17:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "16 July 1969, 10:30:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "13 January 1970, 01:16:40 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "9 September 2001, 13:16:40 GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "17 March 2024, 02:00:00 EET" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2 July 2001, 16:14:15 EEST" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "29 May 1984, 11:53:00 GMT+4" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "29 May 2050, 19:47:00 EEST" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "16 July 1969, 03:00:00 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "12 January 1970, 16:46:40 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "9 September 2001, 04:46:40 EEST" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "7 March 2024, 10:00:01 EET" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2 July 2001, 23:14:15 EEST" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "29 May 1984, 18:53:00 GMT+4" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "30 May 2030, 02:47:00 EEST" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "16 July 1969, 10:00:00 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "13 January 1970, 00:46:40 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "9 September 2001, 11:46:40 EEST" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "17 March 2024, 10:00:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2 July 2001, 23:14:15 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "29 May 1984, 17:53:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "30 May 2050, 02:47:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "16 July 1969, 10:00:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "12 January 1970, 23:46:40 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "9 September 2001, 11:46:40 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "7 March 2024, 18:00:01 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "3 July 2001, 06:14:15 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "30 May 1984, 00:53:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "30 May 2030, 09:47:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "16 July 1969, 17:00:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "13 January 1970, 07:46:40 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "9 September 2001, 18:46:40 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "17 March 2024, 09:00:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2 July 2001, 22:14:15 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "29 May 1984, 16:53:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "30 May 2050, 01:47:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "16 July 1969, 09:00:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "12 January 1970, 22:46:40 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "9 September 2001, 10:46:40 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "7 March 2024, 17:00:01 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "3 July 2001, 05:14:15 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "29 May 1984, 23:53:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "30 May 2030, 08:47:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "16 July 1969, 16:00:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "13 January 1970, 06:46:40 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "9 September 2001, 17:46:40 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "16 March 2024, 21:00:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2 July 2001, 10:14:15 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "29 May 1984, 04:53:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "29 May 2050, 13:47:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "15 July 1969, 21:00:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "12 January 1970, 10:46:40 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "8 September 2001, 22:46:40 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "7 March 2024, 05:00:01 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2 July 2001, 17:14:15 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "29 May 1984, 11:53:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "29 May 2030, 20:47:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "16 July 1969, 04:00:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "12 January 1970, 18:46:40 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "en-GB", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "9 September 2001, 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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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日 下午5:00:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "2001年7月2日 清晨6:14:15 [PDT]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "1984年5月29日 凌晨12:53:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "2050年5月29日 上午9:47:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "1969年7月15日 下午5:00:00 [GMT-7]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "1970年1月12日 清晨5:46:40 [PST]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "2001年9月8日 下午6:46:40 [PDT]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "2024年3月7日 凌晨12:00:01 [PST]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "2001年7月2日 下午1:14:15 [PDT]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "1984年5月29日 清晨7:53:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "2030年5月29日 下午4:47:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "1969年7月16日 凌晨12:00:00 [GMT-7]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "1970年1月12日 下午1:46:40 [PST]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "2001年9月9日 凌晨1:46:40 [PDT]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "2024年3月17日 凌晨1:00:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2001年7月2日 下午2:14:15 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "1984年5月29日 上午8:53:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "2050年5月29日 下午5:47:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "1969年7月16日 凌晨1:00:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "1970年1月12日 下午2:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "2001年9月9日 凌晨2:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "2024年3月7日 上午9:00:01 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2001年7月2日 晚上9:14:15 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "1984年5月29日 下午3:53:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "2030年5月30日 凌晨12:47:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "1969年7月16日 上午8:00:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "1970年1月12日 晚上10:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "2001年9月9日 上午9:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "2024年3月17日 凌晨3:30:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "2001年7月2日 下午5:44:15 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "1984年5月29日 上午11:23:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "2050年5月29日 晚上8:17:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "1969年7月16日 凌晨3:30:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "1970年1月12日 下午5:16:40 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "2001年9月9日 清晨6:16:40 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "2024年3月7日 上午11:30:01 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "2001年7月3日 凌晨12:44:15 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "1984年5月29日 下午6:23:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "2030年5月30日 凌晨3:17:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "1969年7月16日 上午10:30:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "1970年1月13日 凌晨1:16:40 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "2001年9月9日 下午1:16:40 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "2024年3月17日 凌晨2:00:00 [GMT+2]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2001年7月2日 下午4:14:15 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "1984年5月29日 上午11:53:00 [GMT+4]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "2050年5月29日 晚上7:47:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "1969年7月16日 凌晨3:00:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "1970年1月12日 下午4:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "2001年9月9日 凌晨4:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "2024年3月7日 上午10:00:01 [GMT+2]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2001年7月2日 晚上11:14:15 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "1984年5月29日 下午6:53:00 [GMT+4]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "2030年5月30日 凌晨2:47:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "1969年7月16日 上午10:00:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "1970年1月13日 凌晨12:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "2001年9月9日 上午11:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "2024年3月17日 上午10:00:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2001年7月2日 晚上11:14:15 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "1984年5月29日 下午5:53:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "2050年5月30日 凌晨2:47:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "1969年7月16日 上午10:00:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "1970年1月12日 晚上11:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "2001年9月9日 上午11:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "2024年3月7日 下午6:00:01 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "2001年7月3日 清晨6:14:15 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "1984年5月30日 凌晨12:53:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "2030年5月30日 上午9:47:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "1969年7月16日 下午5:00:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "1970年1月13日 清晨7:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "2001年9月9日 下午6:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "2024年3月17日 上午9:00:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2001年7月2日 晚上10:14:15 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "1984年5月29日 下午4:53:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "2050年5月30日 凌晨1:47:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "1969年7月16日 上午9:00:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "1970年1月12日 晚上10:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "2001年9月9日 上午10:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "2024年3月7日 下午5:00:01 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "2001年7月3日 清晨5:14:15 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "1984年5月29日 晚上11:53:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "2030年5月30日 上午8:47:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "1969年7月16日 下午4:00:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "1970年1月13日 清晨6:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "2001年9月9日 下午5:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "2024年3月16日 晚上9:00:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2001年7月2日 上午10:14:15 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "1984年5月29日 凌晨4:53:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "2050年5月29日 下午1:47:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "1969年7月15日 晚上9:00:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "1970年1月12日 上午10:46:40 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "2001年9月8日 晚上10:46:40 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "2024年3月7日 清晨5:00:01 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2001年7月2日 下午5:14:15 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "1984年5月29日 上午11:53:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "2030年5月29日 晚上8:47:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "1969年7月16日 凌晨4:00:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "1970年1月12日 下午6:46:40 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "2001年9月9日 清晨5:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "2024年3月16日 下午5:00:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "2001年7月2日 清晨6:14:15 [PDT]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "1984年5月29日 凌晨12:53:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "2050年5月29日 上午9:47:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "1969年7月15日 下午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": "1970年1月12日 清晨5:46:40 [PST]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "2001年9月8日 下午6:46:40 [PDT]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "2024年3月7日 凌晨12:00:01 [PST]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "2001年7月2日 下午1:14:15 [PDT]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "1984年5月29日 清晨7:53:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "2030年5月29日 下午4:47:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "1969年7月16日 凌晨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": "1970年1月12日 下午1:46:40 [PST]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "2001年9月9日 凌晨1:46:40 [PDT]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "2024年3月17日 凌晨1:00:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2001年7月2日 下午2:14:15 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "1984年5月29日 上午8:53:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "2050年5月29日 下午5:47:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "1969年7月16日 凌晨1:00:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "1970年1月12日 下午2:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "2001年9月9日 凌晨2:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "2024年3月7日 上午9:00:01 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2001年7月2日 晚上9:14:15 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "1984年5月29日 下午3:53:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "2030年5月30日 凌晨12:47:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "1969年7月16日 上午8:00:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "1970年1月12日 晚上10:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "2001年9月9日 上午9:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "2024年3月17日 凌晨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": "2001年7月2日 下午5:44:15 [GMT+4:30]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "1984年5月29日 上午11:23:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "2050年5月29日 晚上8:17:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "1969年7月16日 凌晨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": "1970年1月12日 下午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": "2001年9月9日 清晨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": "2024年3月7日 上午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": "2001年7月3日 凌晨12:44:15 [GMT+4:30]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "1984年5月29日 下午6:23:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "2030年5月30日 凌晨3:17:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "1969年7月16日 上午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": "1970年1月13日 凌晨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": "2001年9月9日 下午1:16:40 [GMT+4:30]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "2024年3月17日 凌晨2:00:00 [GMT+2]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2001年7月2日 下午4:14:15 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "1984年5月29日 上午11:53:00 [GMT+4]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "2050年5月29日 晚上7:47:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "1969年7月16日 凌晨3:00:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "1970年1月12日 下午4:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "2001年9月9日 凌晨4:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "2024年3月7日 上午10:00:01 [GMT+2]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2001年7月2日 晚上11:14:15 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "1984年5月29日 下午6:53:00 [GMT+4]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "2030年5月30日 凌晨2:47:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "1969年7月16日 上午10:00:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "1970年1月13日 凌晨12:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "2001年9月9日 上午11:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "2024年3月17日 上午10:00:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2001年7月2日 晚上11:14:15 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "1984年5月29日 下午5:53:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "2050年5月30日 凌晨2:47:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "1969年7月16日 上午10:00:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "1970年1月12日 晚上11:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "2001年9月9日 上午11:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "2024年3月7日 下午6:00:01 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "2001年7月3日 清晨6:14:15 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "1984年5月30日 凌晨12:53:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "2030年5月30日 上午9:47:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "1969年7月16日 下午5:00:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "1970年1月13日 清晨7:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "2001年9月9日 下午6:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "2024年3月17日 上午9:00:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2001年7月2日 晚上10:14:15 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "1984年5月29日 下午4:53:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "2050年5月30日 凌晨1:47:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "1969年7月16日 上午9:00:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "1970年1月12日 晚上10:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "2001年9月9日 上午10:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "2024年3月7日 下午5:00:01 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "2001年7月3日 清晨5:14:15 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "1984年5月29日 晚上11:53:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "2030年5月30日 上午8:47:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "1969年7月16日 下午4:00:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "1970年1月13日 清晨6:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "2001年9月9日 下午5:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "2024年3月16日 晚上9:00:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2001年7月2日 上午10:14:15 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "1984年5月29日 凌晨4:53:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "2050年5月29日 下午1:47:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "1969年7月15日 晚上9:00:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "1970年1月12日 上午10:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "2001年9月8日 晚上10:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "2024年3月7日 清晨5:00:01 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2001年7月2日 下午5:14:15 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "1984年5月29日 上午11:53:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "2030年5月29日 晚上8:47:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "1969年7月16日 凌晨4:00:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "1970年1月12日 下午6:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zh-Hant-TW", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "2001年9月9日 清晨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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001年七月廿二 凌晨1:46:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "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]", + "expected": "2001年五月十二 下午2:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "1984年四月廿九 上午8:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "2050年四月初九 下午5:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001年五月十二 晚上9:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "1984年四月廿九 下午3:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "2030年四月廿九 凌晨12:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "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]", + "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]", + "expected": "2001年七月廿二 上午9:46:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "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]", + "expected": "2001年五月十二 下午5:44:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "1984年四月廿九 上午11:23:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "2050年四月初九 晚上8:17:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001年五月十三 凌晨12:44:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "1984年四月廿九 下午6:23:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "2030年四月廿九 凌晨3:17:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "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]", + "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]", + "expected": "2001年七月廿二 下午1:16:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "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]", + "expected": "2001年五月十二 下午4:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "1984年四月廿九 上午11:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "2050年四月初九 晚上7:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001年五月十二 晚上11:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "1984年四月廿九 下午6:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "2030年四月廿九 凌晨2:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "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]", + "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]", + "expected": "2001年七月廿二 上午11:46:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "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]", + "expected": "2001年五月十二 晚上11:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "1984年四月廿九 下午5:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "2050年四月初十 凌晨2:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001年五月十三 清晨6:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "1984年四月三十 凌晨12:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "2030年四月廿九 上午9:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "expected": "2001年七月廿二 下午6:46:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "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]", + "expected": "2001年五月十二 晚上10:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "1984年四月廿九 下午4:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "2050年四月初十 凌晨1:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001年五月十三 清晨5:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "1984年四月廿九 晚上11:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "2030年四月廿九 上午8:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "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]", + "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]", + "expected": "2001年七月廿二 下午5:46:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "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]", + "expected": "2001年五月十二 上午10:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "1984年四月廿九 凌晨4:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "2050年四月初九 下午1:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001年五月十二 下午5:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "1984年四月廿九 上午11:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "2030年四月廿八 晚上8:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001辛巳年七月廿二 星期日 凌晨1:46:40 [太平洋夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "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]", + "expected": "2001辛巳年五月十二 星期一 下午2:14:15 [西非標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "1984甲子年四月廿九 星期二 上午8:53:00 [西非標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "2050庚午年四月初九 星期日 下午5:47:00 [西非標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001辛巳年五月十二 星期一 晚上9:14:15 [西非標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "1984甲子年四月廿九 星期二 下午3:53:00 [西非標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "2030庚戌年四月廿九 星期四 凌晨12:47:00 [西非標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "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]", + "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]", + "expected": "2001辛巳年七月廿二 星期日 上午9:46:40 [西非標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "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]", + "expected": "2001辛巳年五月十二 星期一 下午5:44:15 [伊朗夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "1984甲子年四月廿九 星期二 上午11:23:00 [伊朗標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "2050庚午年四月初九 星期日 晚上8:17:00 [伊朗標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001辛巳年五月十三 星期二 凌晨12:44:15 [伊朗夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "1984甲子年四月廿九 星期二 下午6:23:00 [伊朗標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "2030庚戌年四月廿九 星期四 凌晨3:17:00 [伊朗標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "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]", + "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]", + "expected": "2001辛巳年七月廿二 星期日 下午1:16:40 [伊朗夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "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]", + "expected": "2001辛巳年五月十二 星期一 下午4:14:15 [東歐夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "1984甲子年四月廿九 星期二 上午11:53:00 [莫斯科夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "2050庚午年四月初九 星期日 晚上7:47:00 [東歐夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001辛巳年五月十二 星期一 晚上11:14:15 [東歐夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "1984甲子年四月廿九 星期二 下午6:53:00 [莫斯科夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "2030庚戌年四月廿九 星期四 凌晨2:47:00 [東歐夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "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]", + "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]", + "expected": "2001辛巳年七月廿二 星期日 上午11:46:40 [東歐夏令時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "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]", + "expected": "2001辛巳年五月十二 星期一 晚上11:14:15 [澳洲東部標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "1984甲子年四月廿九 星期二 下午5:53:00 [澳洲東部標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "2050庚午年四月初十 星期一 凌晨2:47:00 [澳洲東部標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001辛巳年五月十三 星期二 清晨6:14:15 [澳洲東部標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "1984甲子年四月三十 星期三 凌晨12:53:00 [澳洲東部標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "2030庚戌年四月廿九 星期四 上午9:47:00 [澳洲東部標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "expected": "2001辛巳年七月廿二 星期日 下午6:46:40 [澳洲東部標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "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]", + "expected": "2001辛巳年五月十二 星期一 晚上10:14:15 [帛琉時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "1984甲子年四月廿九 星期二 下午4:53:00 [帛琉時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "2050庚午年四月初十 星期一 凌晨1:47:00 [帛琉時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001辛巳年五月十三 星期二 清晨5:14:15 [帛琉時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "1984甲子年四月廿九 星期二 晚上11:53:00 [帛琉時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "2030庚戌年四月廿九 星期四 上午8:47:00 [帛琉時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "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]", + "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]", + "expected": "2001辛巳年七月廿二 星期日 下午5:46:40 [帛琉時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "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]", + "expected": "2001辛巳年五月十二 星期一 上午10:14:15 [烏拉圭標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "1984甲子年四月廿九 星期二 凌晨4:53:00 [烏拉圭標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "2050庚午年四月初九 星期日 下午1:47:00 [烏拉圭標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001辛巳年五月十二 星期一 下午5:14:15 [烏拉圭標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "1984甲子年四月廿九 星期二 上午11:53:00 [烏拉圭標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "2030庚戌年四月廿八 星期三 晚上8:47:00 [烏拉圭標準時間]" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001辛巳年五月十二 星期一 清晨6:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "1984甲子年四月廿九 星期二 凌晨12:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "2050庚午年四月初九 星期日 上午9:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "expected": "2001辛巳年五月十二 星期一 下午1:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "1984甲子年四月廿九 星期二 清晨7:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "2030庚戌年四月廿八 星期三 下午4:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "expected": "2001辛巳年七月廿二 星期日 凌晨1:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "2024甲辰年二月初八 星期日 凌晨1:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2001辛巳年五月十二 星期一 下午2:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "1984甲子年四月廿九 星期二 上午8:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "2050庚午年四月初九 星期日 下午5:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "1969己酉年六月初三 星期三 凌晨1:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "1969己酉年臘月初五 星期一 下午2:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "2001辛巳年七月廿二 星期日 凌晨2:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "2024甲辰年正月廿七 星期四 上午9:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2001辛巳年五月十二 星期一 晚上9:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "1984甲子年四月廿九 星期二 下午3:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "2030庚戌年四月廿九 星期四 凌晨12:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "1969己酉年六月初三 星期三 上午8:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "1969己酉年臘月初五 星期一 晚上10:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "2001辛巳年七月廿二 星期日 上午9:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "2024甲辰年二月初八 星期日 凌晨3:30" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "2001辛巳年五月十二 星期一 下午5:44" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "1984甲子年四月廿九 星期二 上午11:23" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "2050庚午年四月初九 星期日 晚上8:17" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "1969己酉年六月初三 星期三 凌晨3:30" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "1969己酉年臘月初五 星期一 下午5:16" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "2001辛巳年七月廿二 星期日 清晨6:16" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "2024甲辰年正月廿七 星期四 上午11:30" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "2001辛巳年五月十三 星期二 凌晨12:44" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "1984甲子年四月廿九 星期二 下午6:23" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "2030庚戌年四月廿九 星期四 凌晨3:17" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "1969己酉年六月初三 星期三 上午10:30" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "1969己酉年臘月初六 星期二 凌晨1:16" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "2001辛巳年七月廿二 星期日 下午1:16" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "2024甲辰年二月初八 星期日 凌晨2:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2001辛巳年五月十二 星期一 下午4:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "1984甲子年四月廿九 星期二 上午11:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "2050庚午年四月初九 星期日 晚上7:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "1969己酉年六月初三 星期三 凌晨3:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "1969己酉年臘月初五 星期一 下午4:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "2001辛巳年七月廿二 星期日 凌晨4:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "2024甲辰年正月廿七 星期四 上午10:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2001辛巳年五月十二 星期一 晚上11:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "1984甲子年四月廿九 星期二 下午6:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "2030庚戌年四月廿九 星期四 凌晨2:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "1969己酉年六月初三 星期三 上午10:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "1969己酉年臘月初六 星期二 凌晨12:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "2001辛巳年七月廿二 星期日 上午11:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "2024甲辰年二月初八 星期日 上午10:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2001辛巳年五月十二 星期一 晚上11:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "1984甲子年四月廿九 星期二 下午5:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "2050庚午年四月初十 星期一 凌晨2:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "1969己酉年六月初三 星期三 上午10:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "1969己酉年臘月初五 星期一 晚上11:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "2001辛巳年七月廿二 星期日 上午11:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "2024甲辰年正月廿七 星期四 下午6:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "2001辛巳年五月十三 星期二 清晨6:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "1984甲子年四月三十 星期三 凌晨12:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "2030庚戌年四月廿九 星期四 上午9:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "1969己酉年六月初三 星期三 下午5:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "1969己酉年臘月初六 星期二 清晨7:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "2001辛巳年七月廿二 星期日 下午6:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "2024甲辰年二月初八 星期日 上午9:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2001辛巳年五月十二 星期一 晚上10:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "1984甲子年四月廿九 星期二 下午4:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "2050庚午年四月初十 星期一 凌晨1:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "1969己酉年六月初三 星期三 上午9:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "1969己酉年臘月初五 星期一 晚上10:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "2001辛巳年七月廿二 星期日 上午10:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "2024甲辰年正月廿七 星期四 下午5:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "2001辛巳年五月十三 星期二 清晨5:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "1984甲子年四月廿九 星期二 晚上11:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "2030庚戌年四月廿九 星期四 上午8:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "1969己酉年六月初三 星期三 下午4:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "1969己酉年臘月初六 星期二 清晨6:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "2001辛巳年七月廿二 星期日 下午5:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "2024甲辰年二月初七 星期六 晚上9:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2001辛巳年五月十二 星期一 上午10:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "1984甲子年四月廿九 星期二 凌晨4:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "2050庚午年四月初九 星期日 下午1:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "1969己酉年六月初二 星期二 晚上9:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "1969己酉年臘月初五 星期一 上午10:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "2001辛巳年七月廿一 星期六 晚上10:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "2024甲辰年正月廿七 星期四 清晨5:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2001辛巳年五月十二 星期一 下午5:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "1984甲子年四月廿九 星期二 上午11:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "2030庚戌年四月廿八 星期三 晚上8:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "1969己酉年六月初三 星期三 凌晨4:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "1969己酉年臘月初五 星期一 下午6:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "2001辛巳年七月廿二 星期日 清晨5:46" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "2024甲辰年二月初七 下午5:00:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "2001辛巳年五月十二 清晨6:14:15 [PDT]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "1984甲子年四月廿九 凌晨12:53:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "2050庚午年四月初九 上午9:47:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "1969己酉年六月初二 下午5:00:00 [GMT-7]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "1969己酉年臘月初五 清晨5:46:40 [PST]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "2001辛巳年七月廿一 下午6:46:40 [PDT]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "2024甲辰年正月廿七 凌晨12:00:01 [PST]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "2001辛巳年五月十二 下午1:14:15 [PDT]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "1984甲子年四月廿九 清晨7:53:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "2030庚戌年四月廿八 下午4:47:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "1969己酉年六月初三 凌晨12:00:00 [GMT-7]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "1969己酉年臘月初五 下午1:46:40 [PST]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "2001辛巳年七月廿二 凌晨1:46:40 [PDT]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "2024甲辰年二月初八 凌晨1:00:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2001辛巳年五月十二 下午2:14:15 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "1984甲子年四月廿九 上午8:53:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "2050庚午年四月初九 下午5:47:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "1969己酉年六月初三 凌晨1:00:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "1969己酉年臘月初五 下午2:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "2001辛巳年七月廿二 凌晨2:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "2024甲辰年正月廿七 上午9:00:01 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2001辛巳年五月十二 晚上9:14:15 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "1984甲子年四月廿九 下午3:53:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "2030庚戌年四月廿九 凌晨12:47:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "1969己酉年六月初三 上午8:00:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "2001辛巳年七月廿二 上午9:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "2024甲辰年二月初八 凌晨3:30:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "2001辛巳年五月十二 下午5:44:15 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "1984甲子年四月廿九 上午11:23:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "2050庚午年四月初九 晚上8:17:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "1969己酉年六月初三 凌晨3:30:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "1969己酉年臘月初五 下午5:16:40 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "2001辛巳年七月廿二 清晨6:16:40 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "2024甲辰年正月廿七 上午11:30:01 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "2001辛巳年五月十三 凌晨12:44:15 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "1984甲子年四月廿九 下午6:23:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "2030庚戌年四月廿九 凌晨3:17:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "1969己酉年六月初三 上午10:30:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "1969己酉年臘月初六 凌晨1:16:40 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "2001辛巳年七月廿二 下午1:16:40 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "2024甲辰年二月初八 凌晨2:00:00 [GMT+2]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2001辛巳年五月十二 下午4:14:15 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "1984甲子年四月廿九 上午11:53:00 [GMT+4]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "2050庚午年四月初九 晚上7:47:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "1969己酉年六月初三 凌晨3:00:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "1969己酉年臘月初五 下午4:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "2001辛巳年七月廿二 凌晨4:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "2024甲辰年正月廿七 上午10:00:01 [GMT+2]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "1984甲子年四月廿九 下午6:53:00 [GMT+4]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "2030庚戌年四月廿九 凌晨2:47:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "1969己酉年六月初三 上午10:00:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "1969己酉年臘月初六 凌晨12:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "2024甲辰年二月初八 上午10:00:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "1984甲子年四月廿九 下午5:53:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "2050庚午年四月初十 凌晨2:47:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "1969己酉年六月初三 上午10:00:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "1969己酉年臘月初五 晚上11:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "2024甲辰年正月廿七 下午6:00:01 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "2001辛巳年五月十三 清晨6:14:15 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "1984甲子年四月三十 凌晨12:53:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "2030庚戌年四月廿九 上午9:47:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "1969己酉年六月初三 下午5:00:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "1969己酉年臘月初六 清晨7:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "2001辛巳年七月廿二 下午6:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "2024甲辰年二月初八 上午9:00:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2001辛巳年五月十二 晚上10:14:15 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "1984甲子年四月廿九 下午4:53:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "2050庚午年四月初十 凌晨1:47:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "1969己酉年六月初三 上午9:00:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "2001辛巳年七月廿二 上午10:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "2024甲辰年正月廿七 下午5:00:01 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "2001辛巳年五月十三 清晨5:14:15 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "1984甲子年四月廿九 晚上11:53:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "2030庚戌年四月廿九 上午8:47:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "1969己酉年六月初三 下午4:00:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "1969己酉年臘月初六 清晨6:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "2001辛巳年七月廿二 下午5:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "2024甲辰年二月初七 晚上9:00:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2001辛巳年五月十二 上午10:14:15 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "1984甲子年四月廿九 凌晨4:53:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "2050庚午年四月初九 下午1:47:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "1969己酉年六月初二 晚上9:00:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "1969己酉年臘月初五 上午10:46:40 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "2001辛巳年七月廿一 晚上10:46:40 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "2024甲辰年正月廿七 清晨5:00:01 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2001辛巳年五月十二 下午5:14:15 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "1984甲子年四月廿九 上午11:53:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "2030庚戌年四月廿八 晚上8:47:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "1969己酉年六月初三 凌晨4:00:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "1969己酉年臘月初五 下午6:46:40 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "2001辛巳年七月廿二 清晨5:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "2024甲辰年二月初七 下午5:00:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "2001辛巳年五月十二 清晨6:14:15 [PDT]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "1984甲子年四月廿九 凌晨12:53:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "2050庚午年四月初九 上午9:47:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "1969己酉年六月初二 下午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": "1969己酉年臘月初五 清晨5:46:40 [PST]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "2001辛巳年七月廿一 下午6:46:40 [PDT]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "2024甲辰年正月廿七 凌晨12:00:01 [PST]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "2001辛巳年五月十二 下午1:14:15 [PDT]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "1984甲子年四月廿九 清晨7:53:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "2030庚戌年四月廿八 下午4:47:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "1969己酉年六月初三 凌晨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": "1969己酉年臘月初五 下午1:46:40 [PST]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "2001辛巳年七月廿二 凌晨1:46:40 [PDT]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "2024甲辰年二月初八 凌晨1:00:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2001辛巳年五月十二 下午2:14:15 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "1984甲子年四月廿九 上午8:53:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "2050庚午年四月初九 下午5:47:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "1969己酉年六月初三 凌晨1:00:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "1969己酉年臘月初五 下午2:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "2001辛巳年七月廿二 凌晨2:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "2024甲辰年正月廿七 上午9:00:01 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2001辛巳年五月十二 晚上9:14:15 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "1984甲子年四月廿九 下午3:53:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "2030庚戌年四月廿九 凌晨12:47:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "1969己酉年六月初三 上午8:00:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "2001辛巳年七月廿二 上午9:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "2024甲辰年二月初八 凌晨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": "2001辛巳年五月十二 下午5:44:15 [GMT+4:30]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "1984甲子年四月廿九 上午11:23:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "2050庚午年四月初九 晚上8:17:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "1969己酉年六月初三 凌晨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": "1969己酉年臘月初五 下午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": "2001辛巳年七月廿二 清晨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": "2024甲辰年正月廿七 上午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": "2001辛巳年五月十三 凌晨12:44:15 [GMT+4:30]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "1984甲子年四月廿九 下午6:23:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "2030庚戌年四月廿九 凌晨3:17:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "1969己酉年六月初三 上午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": "1969己酉年臘月初六 凌晨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": "2001辛巳年七月廿二 下午1:16:40 [GMT+4:30]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "2024甲辰年二月初八 凌晨2:00:00 [GMT+2]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2001辛巳年五月十二 下午4:14:15 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "1984甲子年四月廿九 上午11:53:00 [GMT+4]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "2050庚午年四月初九 晚上7:47:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "1969己酉年六月初三 凌晨3:00:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "1969己酉年臘月初五 下午4:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "2001辛巳年七月廿二 凌晨4:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "2024甲辰年正月廿七 上午10:00:01 [GMT+2]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "1984甲子年四月廿九 下午6:53:00 [GMT+4]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "2030庚戌年四月廿九 凌晨2:47:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "1969己酉年六月初三 上午10:00:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "1969己酉年臘月初六 凌晨12:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "2024甲辰年二月初八 上午10:00:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "1984甲子年四月廿九 下午5:53:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "2050庚午年四月初十 凌晨2:47:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "1969己酉年六月初三 上午10:00:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "1969己酉年臘月初五 晚上11:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "2024甲辰年正月廿七 下午6:00:01 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "2001辛巳年五月十三 清晨6:14:15 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "1984甲子年四月三十 凌晨12:53:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "2030庚戌年四月廿九 上午9:47:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "1969己酉年六月初三 下午5:00:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "1969己酉年臘月初六 清晨7:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "2001辛巳年七月廿二 下午6:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "2024甲辰年二月初八 上午9:00:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2001辛巳年五月十二 晚上10:14:15 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "1984甲子年四月廿九 下午4:53:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "2050庚午年四月初十 凌晨1:47:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "1969己酉年六月初三 上午9:00:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "2001辛巳年七月廿二 上午10:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "2024甲辰年正月廿七 下午5:00:01 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "2001辛巳年五月十三 清晨5:14:15 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "1984甲子年四月廿九 晚上11:53:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "2030庚戌年四月廿九 上午8:47:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "1969己酉年六月初三 下午4:00:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "1969己酉年臘月初六 清晨6:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "2001辛巳年七月廿二 下午5:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "2024甲辰年二月初七 晚上9:00:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2001辛巳年五月十二 上午10:14:15 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "1984甲子年四月廿九 凌晨4:53:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "2050庚午年四月初九 下午1:47:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "1969己酉年六月初二 晚上9:00:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "1969己酉年臘月初五 上午10:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "2001辛巳年七月廿一 晚上10:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "2024甲辰年正月廿七 清晨5:00:01 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2001辛巳年五月十二 下午5:14:15 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "1984甲子年四月廿九 上午11:53:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "2030庚戌年四月廿八 晚上8:47:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "1969己酉年六月初三 凌晨4:00:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "1969己酉年臘月初五 下午6:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "chinese", + "locale": "zh-Hant-TW", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "2001辛巳年七月廿二 清晨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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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日 下午5:00:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "民國90年7月2日 清晨6:14:15 [PDT]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "民國73年5月29日 凌晨12:53:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "民國139年5月29日 上午9:47:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "民國58年7月15日 下午5:00:00 [GMT-7]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "民國59年1月12日 清晨5:46:40 [PST]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "民國90年9月8日 下午6:46:40 [PDT]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "民國113年3月7日 凌晨12:00:01 [PST]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "民國90年7月2日 下午1:14:15 [PDT]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "民國73年5月29日 清晨7:53:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "民國119年5月29日 下午4:47:00 [PDT]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "民國58年7月16日 凌晨12:00:00 [GMT-7]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "民國59年1月12日 下午1:46:40 [PST]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "民國90年9月9日 凌晨1:46:40 [PDT]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "民國113年3月17日 凌晨1:00:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "民國90年7月2日 下午2:14:15 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "民國73年5月29日 上午8:53:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "民國139年5月29日 下午5:47:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "民國58年7月16日 凌晨1:00:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "民國59年1月12日 下午2:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "民國90年9月9日 凌晨2:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "民國113年3月7日 上午9:00:01 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "民國90年7月2日 晚上9:14:15 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "民國73年5月29日 下午3:53:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "民國119年5月30日 凌晨12:47:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "民國58年7月16日 上午8:00:00 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "民國59年1月12日 晚上10:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "民國90年9月9日 上午9:46:40 [GMT+1]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "民國113年3月17日 凌晨3:30:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "民國90年7月2日 下午5:44:15 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "民國73年5月29日 上午11:23:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "民國139年5月29日 晚上8:17:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "民國58年7月16日 凌晨3:30:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "民國59年1月12日 下午5:16:40 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "民國90年9月9日 清晨6:16:40 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "民國113年3月7日 上午11:30:01 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "民國90年7月3日 凌晨12:44:15 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "民國73年5月29日 下午6:23:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "民國119年5月30日 凌晨3:17:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "民國58年7月16日 上午10:30:00 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "民國59年1月13日 凌晨1:16:40 [GMT+3:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "民國90年9月9日 下午1:16:40 [GMT+4:30]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "民國113年3月17日 凌晨2:00:00 [GMT+2]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "民國90年7月2日 下午4:14:15 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "民國73年5月29日 上午11:53:00 [GMT+4]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "民國139年5月29日 晚上7:47:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "民國58年7月16日 凌晨3:00:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "民國59年1月12日 下午4:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "民國90年9月9日 凌晨4:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "民國113年3月7日 上午10:00:01 [GMT+2]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "民國90年7月2日 晚上11:14:15 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "民國73年5月29日 下午6:53:00 [GMT+4]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "民國119年5月30日 凌晨2:47:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "民國58年7月16日 上午10:00:00 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "民國59年1月13日 凌晨12:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "民國90年9月9日 上午11:46:40 [GMT+3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "民國113年3月17日 上午10:00:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "民國90年7月2日 晚上11:14:15 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "民國73年5月29日 下午5:53:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "民國139年5月30日 凌晨2:47:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "民國58年7月16日 上午10:00:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "民國59年1月12日 晚上11:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "民國90年9月9日 上午11:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "民國113年3月7日 下午6:00:01 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "民國90年7月3日 清晨6:14:15 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "民國73年5月30日 凌晨12:53:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "民國119年5月30日 上午9:47:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "民國58年7月16日 下午5:00:00 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "民國59年1月13日 清晨7:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "民國90年9月9日 下午6:46:40 [GMT+10]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "民國113年3月17日 上午9:00:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "民國90年7月2日 晚上10:14:15 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "民國73年5月29日 下午4:53:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "民國139年5月30日 凌晨1:47:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "民國58年7月16日 上午9:00:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "民國59年1月12日 晚上10:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "民國90年9月9日 上午10:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "民國113年3月7日 下午5:00:01 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "民國90年7月3日 清晨5:14:15 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "民國73年5月29日 晚上11:53:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "民國119年5月30日 上午8:47:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "民國58年7月16日 下午4:00:00 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "民國59年1月13日 清晨6:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "民國90年9月9日 下午5:46:40 [GMT+9]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "民國113年3月16日 晚上9:00:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "民國90年7月2日 上午10:14:15 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "民國73年5月29日 凌晨4:53:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "民國139年5月29日 下午1:47:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "民國58年7月15日 晚上9:00:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "民國59年1月12日 上午10:46:40 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "民國90年9月8日 晚上10:46:40 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "民國113年3月7日 清晨5:00:01 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "民國90年7月2日 下午5:14:15 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "民國73年5月29日 上午11:53:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "民國119年5月29日 晚上8:47:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "民國58年7月16日 凌晨4:00:00 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "民國59年1月12日 下午6:46:40 [GMT-3]" + }, + { + "dateLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "民國90年9月9日 清晨5:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "民國113年3月16日 下午5:00:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "民國90年7月2日 清晨6:14:15 [PDT]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "民國73年5月29日 凌晨12:53:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "民國139年5月29日 上午9:47:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "民國58年7月15日 下午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": "民國59年1月12日 清晨5:46:40 [PST]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "民國90年9月8日 下午6:46:40 [PDT]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "民國113年3月7日 凌晨12:00:01 [PST]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "民國90年7月2日 下午1:14:15 [PDT]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "民國73年5月29日 清晨7:53:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "民國119年5月29日 下午4:47:00 [PDT]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "民國58年7月16日 凌晨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": "民國59年1月12日 下午1:46:40 [PST]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "民國90年9月9日 凌晨1:46:40 [PDT]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "民國113年3月17日 凌晨1:00:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "民國90年7月2日 下午2:14:15 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "民國73年5月29日 上午8:53:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "民國139年5月29日 下午5:47:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "民國58年7月16日 凌晨1:00:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "民國59年1月12日 下午2:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "民國90年9月9日 凌晨2:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "民國113年3月7日 上午9:00:01 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "民國90年7月2日 晚上9:14:15 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "民國73年5月29日 下午3:53:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "民國119年5月30日 凌晨12:47:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "民國58年7月16日 上午8:00:00 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "民國59年1月12日 晚上10:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "民國90年9月9日 上午9:46:40 [GMT+1]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "民國113年3月17日 凌晨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": "民國90年7月2日 下午5:44:15 [GMT+4:30]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "民國73年5月29日 上午11:23:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "民國139年5月29日 晚上8:17:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "民國58年7月16日 凌晨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": "民國59年1月12日 下午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": "民國90年9月9日 清晨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": "民國113年3月7日 上午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": "民國90年7月3日 凌晨12:44:15 [GMT+4:30]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "民國73年5月29日 下午6:23:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "民國119年5月30日 凌晨3:17:00 [GMT+3:30]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "民國58年7月16日 上午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": "民國59年1月13日 凌晨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": "民國90年9月9日 下午1:16:40 [GMT+4:30]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "民國113年3月17日 凌晨2:00:00 [GMT+2]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "民國90年7月2日 下午4:14:15 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "民國73年5月29日 上午11:53:00 [GMT+4]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "民國139年5月29日 晚上7:47:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "民國58年7月16日 凌晨3:00:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "民國59年1月12日 下午4:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "民國90年9月9日 凌晨4:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "民國113年3月7日 上午10:00:01 [GMT+2]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "民國90年7月2日 晚上11:14:15 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "民國73年5月29日 下午6:53:00 [GMT+4]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "民國119年5月30日 凌晨2:47:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "民國58年7月16日 上午10:00:00 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "民國59年1月13日 凌晨12:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "民國90年9月9日 上午11:46:40 [GMT+3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "民國113年3月17日 上午10:00:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "民國90年7月2日 晚上11:14:15 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "民國73年5月29日 下午5:53:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "民國139年5月30日 凌晨2:47:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "民國58年7月16日 上午10:00:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "民國59年1月12日 晚上11:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "民國90年9月9日 上午11:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "民國113年3月7日 下午6:00:01 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "民國90年7月3日 清晨6:14:15 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "民國73年5月30日 凌晨12:53:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "民國119年5月30日 上午9:47:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "民國58年7月16日 下午5:00:00 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "民國59年1月13日 清晨7:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "民國90年9月9日 下午6:46:40 [GMT+10]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "民國113年3月17日 上午9:00:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "民國90年7月2日 晚上10:14:15 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "民國73年5月29日 下午4:53:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "民國139年5月30日 凌晨1:47:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "民國58年7月16日 上午9:00:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "民國59年1月12日 晚上10:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "民國90年9月9日 上午10:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "民國113年3月7日 下午5:00:01 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "民國90年7月3日 清晨5:14:15 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "民國73年5月29日 晚上11:53:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "民國119年5月30日 上午8:47:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "民國58年7月16日 下午4:00:00 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "民國59年1月13日 清晨6:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "民國90年9月9日 下午5:46:40 [GMT+9]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "民國113年3月16日 晚上9:00:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "民國90年7月2日 上午10:14:15 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "民國73年5月29日 凌晨4:53:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "民國139年5月29日 下午1:47:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "民國58年7月15日 晚上9:00:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "民國59年1月12日 上午10:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "民國90年9月8日 晚上10:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "民國113年3月7日 清晨5:00:01 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "民國90年7月2日 下午5:14:15 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "民國73年5月29日 上午11:53:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "民國119年5月29日 晚上8:47:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "民國58年7月16日 凌晨4:00:00 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "民國59年1月12日 下午6:46:40 [GMT-3]" + }, + { + "timeLength": "long", + "calendar": "roc", + "locale": "zh-Hant-TW", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "民國90年9月9日 清晨5:46:40 [GMT-3]" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "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]", + "expected": "06:14 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "00:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "09:47 29/5/50" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "expected": "13:14 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "07:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "16:47 29/5/30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "expected": "01:46 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "01:00 17/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "14:14 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "08:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "17:47 29/5/50" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "01:00 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "14:46 12/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "02:46 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "09:00 7/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "21:14 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "15:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "00:47 30/5/30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "08:00 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "22:46 12/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "09:46 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "03:30 17/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "17:44 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "11:23 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "20:17 29/5/50" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "03:30 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "17:16 12/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "06:16 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "11:30 7/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "00:44 3/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "18:23 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "03:17 30/5/30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "10:30 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "01:16 13/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "13:16 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "02:00 17/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "16:14 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "11:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "19:47 29/5/50" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "03:00 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "16:46 12/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "04:46 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "10:00 7/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "23:14 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "18:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "02:47 30/5/30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "10:00 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "00:46 13/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "11:46 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "10:00 17/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "23:14 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "17:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "02:47 30/5/50" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "10:00 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "23:46 12/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "11:46 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "18:00 7/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "06:14 3/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "00:53 30/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "09:47 30/5/30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "17:00 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "07:46 13/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "18:46 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "09:00 17/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "22:14 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "16:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "01:47 30/5/50" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "09:00 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "22:46 12/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "10:46 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "17:00 7/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "05:14 3/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "23:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "08:47 30/5/30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "16:00 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "06:46 13/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "17:46 9/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "21:00 16/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "10:14 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "04:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "13:47 29/5/50" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "21:00 15/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "10:46 12/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "22:46 8/9/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "05:00 7/3/24" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "17:14 2/7/01" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "11:53 29/5/84" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "20:47 29/5/30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "04:00 16/7/69" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "18:46 12/1/70" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "05:46 9/9/01" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "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": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "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": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "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": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "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": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "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]", + "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": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "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": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "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": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "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": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "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": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "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": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "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]", + "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": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "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": "2024-03-17T01:00+01:00[Africa/Luanda]", + "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": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "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": "1984-05-29T08:53+01:00[Africa/Luanda]", + "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": "2050-05-29T17:47+01:00[Africa/Luanda]", + "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": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "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]", + "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": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "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": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "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": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "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": "1984-05-29T15:53+01:00[Africa/Luanda]", + "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": "2030-05-30T00:47+01:00[Africa/Luanda]", + "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": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "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]", + "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": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "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": "2024-03-17T03:30+03:30[Asia/Tehran]", + "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": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "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": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "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]", + "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": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "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]", + "expected": "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]", + "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": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "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": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "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": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "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]", + "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": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "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]", + "expected": "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]", + "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": "2024-03-17T02:00+02:00[Europe/Kiev]", + "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": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "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": "1984-05-29T11:53+04:00[Europe/Kiev]", + "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": "2050-05-29T19:47+03:00[Europe/Kiev]", + "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": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "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]", + "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": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "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": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "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": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "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": "1984-05-29T18:53+04:00[Europe/Kiev]", + "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": "2030-05-30T02:47+03:00[Europe/Kiev]", + "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": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "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]", + "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": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "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": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "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": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "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": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "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": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "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": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "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]", + "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": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "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": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "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": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "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": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "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": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "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": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "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]", + "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": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "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": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "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": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "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]", + "expected": "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]", + "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": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "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]", + "expected": "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]", + "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": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "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": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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]", + "expected": "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": "17:00:00 PDT 16 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "06:14:15 PDT 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "00:53:00 PDT 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "09:47:00 PDT 29 tháng 5, 2050" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "17:00:00 GMT-7 15 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "05:46:40 PST 12 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "18:46:40 PDT 8 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "00:00:01 PST 7 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "13:14:15 PDT 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "07:53:00 PDT 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "16:47:00 PDT 29 tháng 5, 2030" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "00:00:00 GMT-7 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "13:46:40 PST 12 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "01:46:40 PDT 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "01:00:00 GMT+1 17 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "14:14:15 GMT+1 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "08:53:00 GMT+1 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "17:47:00 GMT+1 29 tháng 5, 2050" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "01:00:00 GMT+1 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "14:46:40 GMT+1 12 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "02:46:40 GMT+1 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "09:00:01 GMT+1 7 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "21:14:15 GMT+1 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "15:53:00 GMT+1 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "00:47:00 GMT+1 30 tháng 5, 2030" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "08:00:00 GMT+1 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "22:46:40 GMT+1 12 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "09:46:40 GMT+1 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "03:30:00 GMT+3:30 17 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "17:44:15 GMT+4:30 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "11:23:00 GMT+3:30 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "20:17:00 GMT+3:30 29 tháng 5, 2050" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "03:30:00 GMT+3:30 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "17:16:40 GMT+3:30 12 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "06:16:40 GMT+4:30 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "11:30:01 GMT+3:30 7 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "00:44:15 GMT+4:30 3 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "18:23:00 GMT+3:30 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "03:17:00 GMT+3:30 30 tháng 5, 2030" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "10:30:00 GMT+3:30 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "01:16:40 GMT+3:30 13 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "13:16:40 GMT+4:30 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "02:00:00 GMT+2 17 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "16:14:15 GMT+3 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "11:53:00 GMT+4 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "19:47:00 GMT+3 29 tháng 5, 2050" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "03:00:00 GMT+3 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "16:46:40 GMT+3 12 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "04:46:40 GMT+3 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "10:00:01 GMT+2 7 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "23:14:15 GMT+3 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "18:53:00 GMT+4 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "02:47:00 GMT+3 30 tháng 5, 2030" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "10:00:00 GMT+3 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "00:46:40 GMT+3 13 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "11:46:40 GMT+3 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "10:00:00 GMT+10 17 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "23:14:15 GMT+10 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "17:53:00 GMT+10 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "02:47:00 GMT+10 30 tháng 5, 2050" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "10:00:00 GMT+10 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "23:46:40 GMT+10 12 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "11:46:40 GMT+10 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "18:00:01 GMT+10 7 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "06:14:15 GMT+10 3 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "00:53:00 GMT+10 30 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "09:47:00 GMT+10 30 tháng 5, 2030" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "17:00:00 GMT+10 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "07:46:40 GMT+10 13 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "18:46:40 GMT+10 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "09:00:00 GMT+9 17 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "22:14:15 GMT+9 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "16:53:00 GMT+9 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "01:47:00 GMT+9 30 tháng 5, 2050" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "09:00:00 GMT+9 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "22:46:40 GMT+9 12 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "10:46:40 GMT+9 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "17:00:01 GMT+9 7 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "05:14:15 GMT+9 3 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "23:53:00 GMT+9 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "08:47:00 GMT+9 30 tháng 5, 2030" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "16:00:00 GMT+9 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "06:46:40 GMT+9 13 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "17:46:40 GMT+9 9 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "21:00:00 GMT-3 16 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "10:14:15 GMT-3 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "04:53:00 GMT-3 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "13:47:00 GMT-3 29 tháng 5, 2050" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "21:00:00 GMT-3 15 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "10:46:40 GMT-3 12 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "22:46:40 GMT-3 8 tháng 9, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "05:00:01 GMT-3 7 tháng 3, 2024" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "17:14:15 GMT-3 2 tháng 7, 2001" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "11:53:00 GMT-3 29 tháng 5, 1984" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "20:47:00 GMT-3 29 tháng 5, 2030" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "04:00:00 GMT-3 16 tháng 7, 1969" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "18:46:40 GMT-3 12 tháng 1, 1970" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "05:46:40 GMT-3 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 16 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "06:14:15 PDT 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "00:53:00 PDT 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "09:47:00 PDT 29 tháng 5, 2050" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "17:00:00 GMT-7 15 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "05:46:40 PST 12 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "18:46:40 PDT 8 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "00:00:01 PST 7 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "13:14:15 PDT 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "07:53:00 PDT 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "16:47:00 PDT 29 tháng 5, 2030" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "00:00:00 GMT-7 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "13:46:40 PST 12 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "01:46:40 PDT 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "01:00:00 GMT+1 17 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "14:14:15 GMT+1 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "08:53:00 GMT+1 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "17:47:00 GMT+1 29 tháng 5, 2050" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "01:00:00 GMT+1 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "14:46:40 GMT+1 12 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "02:46:40 GMT+1 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "09:00:01 GMT+1 7 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "21:14:15 GMT+1 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "15:53:00 GMT+1 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "00:47:00 GMT+1 30 tháng 5, 2030" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "08:00:00 GMT+1 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "22:46:40 GMT+1 12 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "09:46:40 GMT+1 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "03:30:00 GMT+3:30 17 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "17:44:15 GMT+4:30 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "11:23:00 GMT+3:30 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "20:17:00 GMT+3:30 29 tháng 5, 2050" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "03:30:00 GMT+3:30 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "17:16:40 GMT+3:30 12 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "06:16:40 GMT+4:30 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "11:30:01 GMT+3:30 7 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "00:44:15 GMT+4:30 3 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "18:23:00 GMT+3:30 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "03:17:00 GMT+3:30 30 tháng 5, 2030" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "10:30:00 GMT+3:30 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "01:16:40 GMT+3:30 13 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "13:16:40 GMT+4:30 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "02:00:00 GMT+2 17 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "16:14:15 GMT+3 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "11:53:00 GMT+4 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "19:47:00 GMT+3 29 tháng 5, 2050" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "03:00:00 GMT+3 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "16:46:40 GMT+3 12 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "04:46:40 GMT+3 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "10:00:01 GMT+2 7 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "23:14:15 GMT+3 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "18:53:00 GMT+4 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "02:47:00 GMT+3 30 tháng 5, 2030" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "10:00:00 GMT+3 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "00:46:40 GMT+3 13 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "11:46:40 GMT+3 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "10:00:00 GMT+10 17 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "23:14:15 GMT+10 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "17:53:00 GMT+10 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "02:47:00 GMT+10 30 tháng 5, 2050" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "10:00:00 GMT+10 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "23:46:40 GMT+10 12 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "11:46:40 GMT+10 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "18:00:01 GMT+10 7 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "06:14:15 GMT+10 3 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "00:53:00 GMT+10 30 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "09:47:00 GMT+10 30 tháng 5, 2030" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "17:00:00 GMT+10 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "07:46:40 GMT+10 13 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "18:46:40 GMT+10 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "09:00:00 GMT+9 17 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "22:14:15 GMT+9 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "16:53:00 GMT+9 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "01:47:00 GMT+9 30 tháng 5, 2050" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "09:00:00 GMT+9 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "22:46:40 GMT+9 12 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "10:46:40 GMT+9 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "17:00:01 GMT+9 7 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "05:14:15 GMT+9 3 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "23:53:00 GMT+9 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "08:47:00 GMT+9 30 tháng 5, 2030" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "16:00:00 GMT+9 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "06:46:40 GMT+9 13 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "17:46:40 GMT+9 9 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "21:00:00 GMT-3 16 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "10:14:15 GMT-3 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "04:53:00 GMT-3 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "13:47:00 GMT-3 29 tháng 5, 2050" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "21:00:00 GMT-3 15 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "10:46:40 GMT-3 12 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "22:46:40 GMT-3 8 tháng 9, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "05:00:01 GMT-3 7 tháng 3, 2024" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "17:14:15 GMT-3 2 tháng 7, 2001" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "11:53:00 GMT-3 29 tháng 5, 1984" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "20:47:00 GMT-3 29 tháng 5, 2030" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "04:00:00 GMT-3 16 tháng 7, 1969" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "18:46:40 GMT-3 12 tháng 1, 1970" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "vi", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "05:46:40 GMT-3 9 tháng 9, 2001" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "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]", + "expected": "2‏/7‏/2001، 6:14 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "29‏/5‏/1984، 12:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "29‏/5‏/2050، 9:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "expected": "2‏/7‏/2001، 1:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "29‏/5‏/1984، 7:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "29‏/5‏/2030، 4:47 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "expected": "9‏/9‏/2001، 1:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "17‏/3‏/2024، 1:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2‏/7‏/2001، 2:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "29‏/5‏/1984، 8:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "29‏/5‏/2050، 5:47 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "16‏/7‏/1969، 1:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "12‏/1‏/1970، 2:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "9‏/9‏/2001، 2:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "7‏/3‏/2024، 9:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2‏/7‏/2001، 9:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "29‏/5‏/1984، 3:53 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "30‏/5‏/2030، 12:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "16‏/7‏/1969، 8:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "12‏/1‏/1970، 10:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "9‏/9‏/2001، 9:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "17‏/3‏/2024، 3:30 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "2‏/7‏/2001، 5:44 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "29‏/5‏/1984، 11:23 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "29‏/5‏/2050، 8:17 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "16‏/7‏/1969، 3:30 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "12‏/1‏/1970، 5:16 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "9‏/9‏/2001، 6:16 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "7‏/3‏/2024، 11:30 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "3‏/7‏/2001، 12:44 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "29‏/5‏/1984، 6:23 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "30‏/5‏/2030، 3:17 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "16‏/7‏/1969، 10:30 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "13‏/1‏/1970، 1:16 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "9‏/9‏/2001، 1:16 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "17‏/3‏/2024، 2:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2‏/7‏/2001، 4:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "29‏/5‏/1984، 11:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "29‏/5‏/2050، 7:47 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "16‏/7‏/1969، 3:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "12‏/1‏/1970، 4:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "9‏/9‏/2001، 4:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "7‏/3‏/2024، 10:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2‏/7‏/2001، 11:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "29‏/5‏/1984، 6:53 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "30‏/5‏/2030، 2:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "16‏/7‏/1969، 10:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "13‏/1‏/1970، 12:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "9‏/9‏/2001، 11:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "17‏/3‏/2024، 10:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2‏/7‏/2001، 11:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "29‏/5‏/1984، 5:53 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "30‏/5‏/2050، 2:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "16‏/7‏/1969، 10:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "12‏/1‏/1970، 11:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "9‏/9‏/2001، 11:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "7‏/3‏/2024، 6:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "3‏/7‏/2001، 6:14 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "30‏/5‏/1984، 12:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "30‏/5‏/2030، 9:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "16‏/7‏/1969، 5:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "13‏/1‏/1970، 7:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "9‏/9‏/2001، 6:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "17‏/3‏/2024، 9:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2‏/7‏/2001، 10:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "29‏/5‏/1984، 4:53 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "30‏/5‏/2050، 1:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "16‏/7‏/1969، 9:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "12‏/1‏/1970، 10:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "9‏/9‏/2001، 10:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "7‏/3‏/2024، 5:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "3‏/7‏/2001، 5:14 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "29‏/5‏/1984، 11:53 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "30‏/5‏/2030، 8:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "16‏/7‏/1969، 4:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "13‏/1‏/1970، 6:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "9‏/9‏/2001، 5:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "16‏/3‏/2024، 9:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2‏/7‏/2001، 10:14 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "29‏/5‏/1984، 4:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "29‏/5‏/2050، 1:47 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "15‏/7‏/1969، 9:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "12‏/1‏/1970، 10:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "8‏/9‏/2001، 10:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "7‏/3‏/2024، 5:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2‏/7‏/2001، 5:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "29‏/5‏/1984، 11:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "29‏/5‏/2030، 8:47 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "16‏/7‏/1969، 4:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "12‏/1‏/1970، 6:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "9‏/9‏/2001، 5:46 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "09‏/09‏/2001، 1:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "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]", + "expected": "02‏/07‏/2001، 2:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "29‏/05‏/1984، 8:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "29‏/05‏/2050، 5:47:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "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]", + "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]", + "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]", + "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]", + "expected": "02‏/07‏/2001، 9:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "29‏/05‏/1984، 3:53:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "30‏/05‏/2030، 12:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "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]", + "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]", + "expected": "09‏/09‏/2001، 9:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "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]", + "expected": "02‏/07‏/2001، 5:44:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "29‏/05‏/1984، 11:23:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "29‏/05‏/2050، 8:17:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "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]", + "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]", + "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]", + "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]", + "expected": "03‏/07‏/2001، 12:44:15 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "29‏/05‏/1984، 6:23:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "30‏/05‏/2030، 3:17:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "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]", + "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]", + "expected": "09‏/09‏/2001، 1:16:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "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]", + "expected": "02‏/07‏/2001، 4:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "29‏/05‏/1984، 11:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "29‏/05‏/2050، 7:47:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "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]", + "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]", + "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]", + "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]", + "expected": "02‏/07‏/2001، 11:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "29‏/05‏/1984، 6:53:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "30‏/05‏/2030، 2:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "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]", + "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]", + "expected": "09‏/09‏/2001، 11:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "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]", + "expected": "02‏/07‏/2001، 11:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "29‏/05‏/1984، 5:53:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "30‏/05‏/2050، 2:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "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]", + "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]", + "expected": "03‏/07‏/2001، 6:14:15 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "30‏/05‏/1984، 12:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "30‏/05‏/2030، 9:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "expected": "09‏/09‏/2001، 6:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "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]", + "expected": "02‏/07‏/2001، 10:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "29‏/05‏/1984، 4:53:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "30‏/05‏/2050، 1:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "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]", + "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]", + "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]", + "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]", + "expected": "03‏/07‏/2001، 5:14:15 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "29‏/05‏/1984، 11:53:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "30‏/05‏/2030، 8:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "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]", + "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]", + "expected": "09‏/09‏/2001، 5:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "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]", + "expected": "02‏/07‏/2001، 10:14:15 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "29‏/05‏/1984، 4:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "29‏/05‏/2050، 1:47:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "expected": "02‏/07‏/2001، 5:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "29‏/05‏/1984، 11:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "29‏/05‏/2030، 8:47:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "9 سبتمبر 2001، 1:46:40 ص غرينتش-7" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "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]", + "expected": "2 يوليو 2001، 2:14:15 م غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "29 مايو 1984، 8:53:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "29 مايو 2050، 5:47:00 م غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "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]", + "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]", + "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]", + "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]", + "expected": "2 يوليو 2001، 9:14:15 م غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "29 مايو 1984، 3:53:00 م غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "30 مايو 2030، 12:47:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "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]", + "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]", + "expected": "9 سبتمبر 2001، 9:46:40 ص غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "2 يوليو 2001، 4:14:15 م غرينتش+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "29 مايو 1984، 11:53:00 ص غرينتش+4" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "29 مايو 2050، 7:47:00 م غرينتش+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "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]", + "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]", + "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]", + "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]", + "expected": "2 يوليو 2001، 11:14:15 م غرينتش+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "29 مايو 1984، 6:53:00 م غرينتش+4" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "30 مايو 2030، 2:47:00 ص غرينتش+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "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]", + "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]", + "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "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]", + "expected": "2 يوليو 2001، 11:14:15 م غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "29 مايو 1984، 5:53:00 م غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "30 مايو 2050، 2:47:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "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]", + "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]", + "expected": "3 يوليو 2001، 6:14:15 ص غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "30 مايو 1984، 12:53:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "30 مايو 2030، 9:47:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "expected": "9 سبتمبر 2001، 6:46:40 م غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "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]", + "expected": "2 يوليو 2001، 10:14:15 م غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "29 مايو 1984، 4:53:00 م غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "30 مايو 2050، 1:47:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "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]", + "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]", + "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]", + "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]", + "expected": "3 يوليو 2001، 5:14:15 ص غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "29 مايو 1984، 11:53:00 م غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "30 مايو 2030، 8:47:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "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]", + "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]", + "expected": "9 سبتمبر 2001، 5:46:40 م غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "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]", + "expected": "2 يوليو 2001، 10:14:15 ص غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "29 مايو 1984، 4:53:00 ص غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "29 مايو 2050، 1:47:00 م غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "expected": "2 يوليو 2001، 5:14:15 م غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "29 مايو 1984، 11:53:00 ص غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "29 مايو 2030، 8:47:00 م غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "expected": "الاثنين، 2 يوليو 2001، 6:14:15 ص توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "الثلاثاء، 29 مايو 1984، 12:53:00 ص توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "الأحد، 29 مايو 2050، 9:47:00 ص توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "expected": "الاثنين، 2 يوليو 2001، 1:14:15 م توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "الثلاثاء، 29 مايو 1984، 7:53:00 ص توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "الأربعاء، 29 مايو 2030، 4:47:00 م توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "expected": "الأحد، 9 سبتمبر 2001، 1:46:40 ص توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "الأحد، 17 مارس 2024، 1:00:00 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "الاثنين، 2 يوليو 2001، 2:14:15 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "الثلاثاء، 29 مايو 1984، 8:53:00 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "الأحد، 29 مايو 2050، 5:47:00 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "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]", + "expected": "الاثنين، 12 يناير 1970، 2:46:40 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "الأحد، 9 سبتمبر 2001، 2:46:40 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "الخميس، 7 مارس 2024، 9:00:01 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "الاثنين، 2 يوليو 2001، 9:14:15 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "الثلاثاء، 29 مايو 1984، 3:53:00 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "الخميس، 30 مايو 2030، 12:47:00 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "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]", + "expected": "الاثنين، 12 يناير 1970، 10:46:40 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "الأحد، 9 سبتمبر 2001، 9:46:40 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "الأحد، 17 مارس 2024، 3:30:00 ص توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "الاثنين، 2 يوليو 2001، 5:44:15 م توقيت إيران الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "الثلاثاء، 29 مايو 1984، 11:23:00 ص توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "الأحد، 29 مايو 2050، 8:17:00 م توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "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]", + "expected": "الاثنين، 12 يناير 1970، 5:16:40 م توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "الأحد، 9 سبتمبر 2001، 6:16:40 ص توقيت إيران الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "الخميس، 7 مارس 2024، 11:30:01 ص توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "الثلاثاء، 3 يوليو 2001، 12:44:15 ص توقيت إيران الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "الثلاثاء، 29 مايو 1984، 6:23:00 م توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "الخميس، 30 مايو 2030، 3:17:00 ص توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "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]", + "expected": "الثلاثاء، 13 يناير 1970، 1:16:40 ص توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "الأحد، 9 سبتمبر 2001، 1:16:40 م توقيت إيران الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "الأحد، 17 مارس 2024، 2:00:00 ص توقيت شرق أوروبا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "الاثنين، 2 يوليو 2001، 4:14:15 م توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "الثلاثاء، 29 مايو 1984، 11:53:00 ص توقيت موسكو الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "الأحد، 29 مايو 2050، 7:47:00 م توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "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]", + "expected": "الاثنين، 12 يناير 1970، 4:46:40 م توقيت موسكو الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "الأحد، 9 سبتمبر 2001، 4:46:40 ص توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "الخميس، 7 مارس 2024، 10:00:01 ص توقيت شرق أوروبا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "الاثنين، 2 يوليو 2001، 11:14:15 م توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "الثلاثاء، 29 مايو 1984، 6:53:00 م توقيت موسكو الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "الخميس، 30 مايو 2030، 2:47:00 ص توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "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]", + "expected": "الثلاثاء، 13 يناير 1970، 12:46:40 ص توقيت موسكو الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "الأحد، 9 سبتمبر 2001، 11:46:40 ص توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "الأحد، 17 مارس 2024، 10:00:00 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "الاثنين، 2 يوليو 2001، 11:14:15 م توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "الثلاثاء، 29 مايو 1984، 5:53:00 م توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "الاثنين، 30 مايو 2050، 2:47:00 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "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]", + "expected": "الاثنين، 12 يناير 1970، 11:46:40 م توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "الأحد، 9 سبتمبر 2001، 11:46:40 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "الخميس، 7 مارس 2024، 6:00:01 م توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "الثلاثاء، 3 يوليو 2001، 6:14:15 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "الأربعاء، 30 مايو 1984، 12:53:00 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "الخميس، 30 مايو 2030، 9:47:00 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "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]", + "expected": "الثلاثاء، 13 يناير 1970، 7:46:40 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "الأحد، 9 سبتمبر 2001، 6:46:40 م توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "الأحد، 17 مارس 2024، 9:00:00 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "الاثنين، 2 يوليو 2001، 10:14:15 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 29 مايو 1984، 4:53:00 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "الاثنين، 30 مايو 2050، 1:47:00 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "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]", + "expected": "الاثنين، 12 يناير 1970، 10:46:40 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "الأحد، 9 سبتمبر 2001، 10:46:40 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "الخميس، 7 مارس 2024، 5:00:01 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 3 يوليو 2001، 5:14:15 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 29 مايو 1984، 11:53:00 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "الخميس، 30 مايو 2030، 8:47:00 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "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]", + "expected": "الثلاثاء، 13 يناير 1970، 6:46:40 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "الأحد، 9 سبتمبر 2001، 5:46:40 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "السبت، 16 مارس 2024، 9:00:00 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "الاثنين، 2 يوليو 2001، 10:14:15 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "الثلاثاء، 29 مايو 1984، 4:53:00 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "الأحد، 29 مايو 2050، 1:47:00 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "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]", + "expected": "الاثنين، 12 يناير 1970، 10:46:40 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "السبت، 8 سبتمبر 2001، 10:46:40 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "الخميس، 7 مارس 2024، 5:00:01 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "الاثنين، 2 يوليو 2001، 5:14:15 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "الثلاثاء، 29 مايو 1984، 11:53:00 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "الأربعاء، 29 مايو 2030، 8:47:00 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "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]", + "expected": "الاثنين، 12 يناير 1970، 6:46:40 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "الأحد، 9 سبتمبر 2001، 5:46:40 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "السبت، 16 مارس 2024، 5:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "الاثنين، 2 يوليو 2001، 6:14 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "الثلاثاء، 29 مايو 1984، 12:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "الأحد، 29 مايو 2050، 9:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "الثلاثاء، 15 يوليو 1969، 5:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "الاثنين، 12 يناير 1970، 5:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "السبت، 8 سبتمبر 2001، 6:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "الخميس، 7 مارس 2024، 12:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "الاثنين، 2 يوليو 2001، 1:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "الثلاثاء، 29 مايو 1984، 7:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "الأربعاء، 29 مايو 2030، 4:47 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "الأربعاء، 16 يوليو 1969، 12:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "الاثنين، 12 يناير 1970، 1:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "الأحد، 9 سبتمبر 2001، 1:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "الأحد، 17 مارس 2024، 1:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "الاثنين، 2 يوليو 2001، 2:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "الثلاثاء، 29 مايو 1984، 8:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "الأحد، 29 مايو 2050، 5:47 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "الأربعاء، 16 يوليو 1969، 1:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "الاثنين، 12 يناير 1970، 2:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "الأحد، 9 سبتمبر 2001، 2:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "الخميس، 7 مارس 2024، 9:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "الاثنين، 2 يوليو 2001، 9:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "الثلاثاء، 29 مايو 1984، 3:53 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "الخميس، 30 مايو 2030، 12:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "الأربعاء، 16 يوليو 1969، 8:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "الاثنين، 12 يناير 1970، 10:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "الأحد، 9 سبتمبر 2001، 9:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "الأحد، 17 مارس 2024، 3:30 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "الاثنين، 2 يوليو 2001، 5:44 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "الثلاثاء، 29 مايو 1984، 11:23 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "الأحد، 29 مايو 2050، 8:17 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "الأربعاء، 16 يوليو 1969، 3:30 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "الاثنين، 12 يناير 1970، 5:16 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "الأحد، 9 سبتمبر 2001، 6:16 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "الخميس، 7 مارس 2024، 11:30 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "الثلاثاء، 3 يوليو 2001، 12:44 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "الثلاثاء، 29 مايو 1984، 6:23 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "الخميس، 30 مايو 2030، 3:17 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "الأربعاء، 16 يوليو 1969، 10:30 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "الثلاثاء، 13 يناير 1970، 1:16 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "الأحد، 9 سبتمبر 2001، 1:16 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "الأحد، 17 مارس 2024، 2:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "الاثنين، 2 يوليو 2001، 4:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "الثلاثاء، 29 مايو 1984، 11:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "الأحد، 29 مايو 2050، 7:47 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "الأربعاء، 16 يوليو 1969، 3:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "الاثنين، 12 يناير 1970، 4:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "الأحد، 9 سبتمبر 2001، 4:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "الخميس، 7 مارس 2024، 10:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "الاثنين، 2 يوليو 2001، 11:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "الثلاثاء، 29 مايو 1984، 6:53 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "الخميس، 30 مايو 2030، 2:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "الأربعاء، 16 يوليو 1969، 10:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "الثلاثاء، 13 يناير 1970، 12:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "الأحد، 9 سبتمبر 2001، 11:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "الأحد، 17 مارس 2024، 10:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "الاثنين، 2 يوليو 2001، 11:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "الثلاثاء، 29 مايو 1984، 5:53 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "الاثنين، 30 مايو 2050، 2:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "الأربعاء، 16 يوليو 1969، 10:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "الاثنين، 12 يناير 1970، 11:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "الأحد، 9 سبتمبر 2001، 11:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "الخميس، 7 مارس 2024، 6:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "الثلاثاء، 3 يوليو 2001، 6:14 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "الأربعاء، 30 مايو 1984، 12:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "الخميس، 30 مايو 2030، 9:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "الأربعاء، 16 يوليو 1969، 5:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "الثلاثاء، 13 يناير 1970، 7:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "الأحد، 9 سبتمبر 2001، 6:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "الأحد، 17 مارس 2024، 9:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "الاثنين، 2 يوليو 2001، 10:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 29 مايو 1984، 4:53 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "الاثنين، 30 مايو 2050، 1:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "الأربعاء، 16 يوليو 1969، 9:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "الاثنين، 12 يناير 1970، 10:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "الأحد، 9 سبتمبر 2001، 10:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "الخميس، 7 مارس 2024، 5:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 3 يوليو 2001، 5:14 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 29 مايو 1984، 11:53 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "الخميس، 30 مايو 2030، 8:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "الأربعاء، 16 يوليو 1969، 4:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 13 يناير 1970، 6:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "الأحد، 9 سبتمبر 2001، 5:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "السبت، 16 مارس 2024، 9:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "الاثنين، 2 يوليو 2001، 10:14 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "الثلاثاء، 29 مايو 1984، 4:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "الأحد، 29 مايو 2050، 1:47 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "الثلاثاء، 15 يوليو 1969، 9:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "الاثنين، 12 يناير 1970، 10:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "السبت، 8 سبتمبر 2001، 10:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "الخميس، 7 مارس 2024، 5:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "الاثنين، 2 يوليو 2001، 5:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "الثلاثاء، 29 مايو 1984، 11:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "الأربعاء، 29 مايو 2030، 8:47 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "الأربعاء، 16 يوليو 1969، 4:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "الاثنين، 12 يناير 1970، 6:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "الأحد، 9 سبتمبر 2001، 5:46 ص" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "16 مارس 2024، 5:00:00 م غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "2 يوليو 2001، 6:14:15 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "29 مايو 1984، 12:53:00 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "29 مايو 2050، 9:47:00 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "15 يوليو 1969، 5:00:00 م غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "12 يناير 1970، 5:46:40 ص غرينتش-8" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "8 سبتمبر 2001، 6:46:40 م غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "7 مارس 2024، 12:00:01 ص غرينتش-8" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "2 يوليو 2001، 1:14:15 م غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "29 مايو 1984، 7:53:00 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "29 مايو 2030، 4:47:00 م غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "16 يوليو 1969، 12:00:00 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "12 يناير 1970، 1:46:40 م غرينتش-8" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "9 سبتمبر 2001، 1:46:40 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "17 مارس 2024، 1:00:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2 يوليو 2001، 2:14:15 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "29 مايو 1984، 8:53:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "29 مايو 2050، 5:47:00 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "16 يوليو 1969، 1:00:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "12 يناير 1970، 2:46:40 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "9 سبتمبر 2001، 2:46:40 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "7 مارس 2024، 9:00:01 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2 يوليو 2001، 9:14:15 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "29 مايو 1984، 3:53:00 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "30 مايو 2030، 12:47:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "16 يوليو 1969، 8:00:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "12 يناير 1970، 10:46:40 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "9 سبتمبر 2001، 9:46:40 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "17 مارس 2024، 3:30:00 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "2 يوليو 2001، 5:44:15 م غرينتش+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "29 مايو 1984، 11:23:00 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "29 مايو 2050، 8:17:00 م غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "16 يوليو 1969، 3:30:00 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "12 يناير 1970، 5:16:40 م غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "9 سبتمبر 2001، 6:16:40 ص غرينتش+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "7 مارس 2024، 11:30:01 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "3 يوليو 2001، 12:44:15 ص غرينتش+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "29 مايو 1984، 6:23:00 م غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "30 مايو 2030، 3:17:00 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "16 يوليو 1969، 10:30:00 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "13 يناير 1970، 1:16:40 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "9 سبتمبر 2001، 1:16:40 م غرينتش+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "17 مارس 2024، 2:00:00 ص غرينتش+2" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2 يوليو 2001، 4:14:15 م غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "29 مايو 1984، 11:53:00 ص غرينتش+4" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "29 مايو 2050، 7:47:00 م غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "16 يوليو 1969، 3:00:00 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "12 يناير 1970، 4:46:40 م غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "9 سبتمبر 2001، 4:46:40 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "7 مارس 2024، 10:00:01 ص غرينتش+2" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2 يوليو 2001، 11:14:15 م غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "29 مايو 1984، 6:53:00 م غرينتش+4" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "30 مايو 2030، 2:47:00 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "13 يناير 1970، 12:46:40 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "17 مارس 2024، 10:00:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2 يوليو 2001، 11:14:15 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "29 مايو 1984، 5:53:00 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "30 مايو 2050، 2:47:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "12 يناير 1970، 11:46:40 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "7 مارس 2024، 6:00:01 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "3 يوليو 2001، 6:14:15 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "30 مايو 1984، 12:53:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "30 مايو 2030، 9:47:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "16 يوليو 1969، 5:00:00 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "13 يناير 1970، 7:46:40 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "9 سبتمبر 2001، 6:46:40 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "17 مارس 2024، 9:00:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2 يوليو 2001، 10:14:15 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "29 مايو 1984، 4:53:00 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "30 مايو 2050، 1:47:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "16 يوليو 1969، 9:00:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "12 يناير 1970، 10:46:40 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "9 سبتمبر 2001، 10:46:40 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "7 مارس 2024، 5:00:01 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "3 يوليو 2001، 5:14:15 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "29 مايو 1984، 11:53:00 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "30 مايو 2030، 8:47:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "16 يوليو 1969، 4:00:00 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "13 يناير 1970، 6:46:40 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "9 سبتمبر 2001، 5:46:40 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "16 مارس 2024، 9:00:00 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2 يوليو 2001، 10:14:15 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "29 مايو 1984، 4:53:00 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "29 مايو 2050، 1:47:00 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "15 يوليو 1969، 9:00:00 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "12 يناير 1970، 10:46:40 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "8 سبتمبر 2001، 10:46:40 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "7 مارس 2024، 5:00:01 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2 يوليو 2001، 5:14:15 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "29 مايو 1984، 11:53:00 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "29 مايو 2030، 8:47:00 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "16 يوليو 1969، 4:00:00 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "12 يناير 1970، 6:46:40 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "9 سبتمبر 2001، 5:46:40 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "16 مارس 2024، 5:00:00 م غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "2 يوليو 2001، 6:14:15 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "29 مايو 1984، 12:53:00 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "29 مايو 2050، 9:47:00 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "15 يوليو 1969، 5:00:00 م غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "12 يناير 1970، 5:46:40 ص غرينتش-8" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "8 سبتمبر 2001، 6:46:40 م غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "7 مارس 2024، 12:00:01 ص غرينتش-8" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "2 يوليو 2001، 1:14:15 م غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "29 مايو 1984، 7:53:00 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "29 مايو 2030، 4:47:00 م غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "16 يوليو 1969، 12:00:00 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "12 يناير 1970، 1:46:40 م غرينتش-8" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "9 سبتمبر 2001، 1:46:40 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "17 مارس 2024، 1:00:00 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "2 يوليو 2001، 2:14:15 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "29 مايو 1984، 8:53:00 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "29 مايو 2050، 5:47:00 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "16 يوليو 1969، 1:00:00 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "12 يناير 1970، 2:46:40 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "9 سبتمبر 2001، 2:46:40 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "7 مارس 2024، 9:00:01 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "2 يوليو 2001، 9:14:15 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "29 مايو 1984، 3:53:00 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "30 مايو 2030، 12:47:00 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "16 يوليو 1969، 8:00:00 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "12 يناير 1970، 10:46:40 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "9 سبتمبر 2001، 9:46:40 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "17 مارس 2024، 3:30:00 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "2 يوليو 2001، 5:44:15 م غرينتش+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "29 مايو 1984، 11:23:00 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "29 مايو 2050، 8:17:00 م غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "16 يوليو 1969، 3:30:00 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "12 يناير 1970، 5:16:40 م غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "9 سبتمبر 2001، 6:16:40 ص غرينتش+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "7 مارس 2024، 11:30:01 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "3 يوليو 2001، 12:44:15 ص غرينتش+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "29 مايو 1984، 6:23:00 م غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "30 مايو 2030، 3:17:00 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "16 يوليو 1969، 10:30:00 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "13 يناير 1970، 1:16:40 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "9 سبتمبر 2001، 1:16:40 م غرينتش+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "17 مارس 2024، 2:00:00 ص غرينتش+2" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "2 يوليو 2001، 4:14:15 م غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "29 مايو 1984، 11:53:00 ص غرينتش+4" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "29 مايو 2050، 7:47:00 م غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "16 يوليو 1969، 3:00:00 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "12 يناير 1970، 4:46:40 م غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "9 سبتمبر 2001، 4:46:40 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "7 مارس 2024، 10:00:01 ص غرينتش+2" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "2 يوليو 2001، 11:14:15 م غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "29 مايو 1984، 6:53:00 م غرينتش+4" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "30 مايو 2030، 2:47:00 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "13 يناير 1970، 12:46:40 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "17 مارس 2024، 10:00:00 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "2 يوليو 2001، 11:14:15 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "29 مايو 1984، 5:53:00 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "30 مايو 2050، 2:47:00 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "12 يناير 1970، 11:46:40 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "7 مارس 2024، 6:00:01 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "3 يوليو 2001، 6:14:15 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "30 مايو 1984، 12:53:00 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "30 مايو 2030، 9:47:00 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "16 يوليو 1969، 5:00:00 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "13 يناير 1970، 7:46:40 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "9 سبتمبر 2001، 6:46:40 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "17 مارس 2024، 9:00:00 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "2 يوليو 2001، 10:14:15 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "29 مايو 1984، 4:53:00 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "30 مايو 2050، 1:47:00 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "16 يوليو 1969، 9:00:00 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "12 يناير 1970، 10:46:40 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "9 سبتمبر 2001، 10:46:40 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "7 مارس 2024، 5:00:01 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "3 يوليو 2001، 5:14:15 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "29 مايو 1984، 11:53:00 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "30 مايو 2030، 8:47:00 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "16 يوليو 1969، 4:00:00 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "13 يناير 1970، 6:46:40 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "9 سبتمبر 2001، 5:46:40 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "16 مارس 2024، 9:00:00 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "2 يوليو 2001، 10:14:15 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "29 مايو 1984، 4:53:00 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "29 مايو 2050، 1:47:00 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "15 يوليو 1969، 9:00:00 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "12 يناير 1970، 10:46:40 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "8 سبتمبر 2001، 10:46:40 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "7 مارس 2024، 5:00:01 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "2 يوليو 2001، 5:14:15 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "29 مايو 1984، 11:53:00 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "29 مايو 2030، 8:47:00 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "16 يوليو 1969، 4:00:00 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "12 يناير 1970، 6:46:40 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "9 سبتمبر 2001، 5:46:40 ص غرينتش-3" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "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]", + "expected": "11‏/4‏/1422 هـ, 6:14 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "28‏/8‏/1404 هـ, 12:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "9‏/9‏/1472 هـ, 9:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "expected": "11‏/4‏/1422 هـ, 1:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "28‏/8‏/1404 هـ, 7:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "27‏/1‏/1452 هـ, 4:47 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "expected": "21‏/6‏/1422 هـ, 1:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "7‏/9‏/1445 هـ, 1:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "11‏/4‏/1422 هـ, 2:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "28‏/8‏/1404 هـ, 8:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "9‏/9‏/1472 هـ, 5:47 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "2‏/5‏/1389 هـ, 1:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "5‏/11‏/1389 هـ, 2:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "21‏/6‏/1422 هـ, 2:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "27‏/8‏/1445 هـ, 9:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "11‏/4‏/1422 هـ, 9:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "28‏/8‏/1404 هـ, 3:53 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "28‏/1‏/1452 هـ, 12:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "2‏/5‏/1389 هـ, 8:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "5‏/11‏/1389 هـ, 10:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "21‏/6‏/1422 هـ, 9:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "7‏/9‏/1445 هـ, 3:30 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "11‏/4‏/1422 هـ, 5:44 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "28‏/8‏/1404 هـ, 11:23 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "9‏/9‏/1472 هـ, 8:17 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "2‏/5‏/1389 هـ, 3:30 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "5‏/11‏/1389 هـ, 5:16 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "21‏/6‏/1422 هـ, 6:16 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "27‏/8‏/1445 هـ, 11:30 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "12‏/4‏/1422 هـ, 12:44 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "28‏/8‏/1404 هـ, 6:23 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "28‏/1‏/1452 هـ, 3:17 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "2‏/5‏/1389 هـ, 10:30 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "6‏/11‏/1389 هـ, 1:16 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "21‏/6‏/1422 هـ, 1:16 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "7‏/9‏/1445 هـ, 2:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "11‏/4‏/1422 هـ, 4:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "28‏/8‏/1404 هـ, 11:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "9‏/9‏/1472 هـ, 7:47 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "2‏/5‏/1389 هـ, 3:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "5‏/11‏/1389 هـ, 4:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "21‏/6‏/1422 هـ, 4:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "27‏/8‏/1445 هـ, 10:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "11‏/4‏/1422 هـ, 11:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "28‏/8‏/1404 هـ, 6:53 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "28‏/1‏/1452 هـ, 2:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "2‏/5‏/1389 هـ, 10:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "6‏/11‏/1389 هـ, 12:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "21‏/6‏/1422 هـ, 11:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "7‏/9‏/1445 هـ, 10:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "11‏/4‏/1422 هـ, 11:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "28‏/8‏/1404 هـ, 5:53 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "10‏/9‏/1472 هـ, 2:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "2‏/5‏/1389 هـ, 10:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "5‏/11‏/1389 هـ, 11:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "21‏/6‏/1422 هـ, 11:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "27‏/8‏/1445 هـ, 6:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "12‏/4‏/1422 هـ, 6:14 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "29‏/8‏/1404 هـ, 12:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "28‏/1‏/1452 هـ, 9:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "2‏/5‏/1389 هـ, 5:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "6‏/11‏/1389 هـ, 7:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "21‏/6‏/1422 هـ, 6:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "7‏/9‏/1445 هـ, 9:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "11‏/4‏/1422 هـ, 10:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "28‏/8‏/1404 هـ, 4:53 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "10‏/9‏/1472 هـ, 1:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "2‏/5‏/1389 هـ, 9:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "5‏/11‏/1389 هـ, 10:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "21‏/6‏/1422 هـ, 10:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "27‏/8‏/1445 هـ, 5:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "12‏/4‏/1422 هـ, 5:14 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "28‏/8‏/1404 هـ, 11:53 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "28‏/1‏/1452 هـ, 8:47 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "2‏/5‏/1389 هـ, 4:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "6‏/11‏/1389 هـ, 6:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "21‏/6‏/1422 هـ, 5:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "6‏/9‏/1445 هـ, 9:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "11‏/4‏/1422 هـ, 10:14 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "28‏/8‏/1404 هـ, 4:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "9‏/9‏/1472 هـ, 1:47 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "1‏/5‏/1389 هـ, 9:00 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "5‏/11‏/1389 هـ, 10:46 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "20‏/6‏/1422 هـ, 10:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "27‏/8‏/1445 هـ, 5:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "11‏/4‏/1422 هـ, 5:14 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "28‏/8‏/1404 هـ, 11:53 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "27‏/1‏/1452 هـ, 8:47 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "2‏/5‏/1389 هـ, 4:00 ص" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "5‏/11‏/1389 هـ, 6:46 م" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "21‏/6‏/1422 هـ, 5:46 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "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]", + "expected": "11 ربيع الآخر 1422 هـ، 6:14:15 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "28 شعبان 1404 هـ، 12:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "9 رمضان 1472 هـ، 9:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "expected": "11 ربيع الآخر 1422 هـ، 1:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "28 شعبان 1404 هـ، 7:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "27 محرم 1452 هـ، 4:47:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "7 رمضان 1445 هـ، 1:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "28 شعبان 1404 هـ، 8:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "9 رمضان 1472 هـ، 5:47:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "2 جمادى الأولى 1389 هـ، 1:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "5 ذو القعدة 1389 هـ، 2:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "21 جمادى الآخرة 1422 هـ، 2:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "27 شعبان 1445 هـ، 9:00:01 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "28 شعبان 1404 هـ، 3:53:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "28 محرم 1452 هـ، 12:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "2 جمادى الأولى 1389 هـ، 8:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "7 رمضان 1445 هـ، 3:30:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "11 ربيع الآخر 1422 هـ، 5:44:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "28 شعبان 1404 هـ، 11:23:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "9 رمضان 1472 هـ، 8:17:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "2 جمادى الأولى 1389 هـ، 3:30:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "21 جمادى الآخرة 1422 هـ، 6:16:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "27 شعبان 1445 هـ، 11:30:01 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "12 ربيع الآخر 1422 هـ، 12:44:15 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "28 شعبان 1404 هـ، 6:23:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "28 محرم 1452 هـ، 3:17:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "2 جمادى الأولى 1389 هـ، 10:30:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "6 ذو القعدة 1389 هـ، 1:16:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "21 جمادى الآخرة 1422 هـ، 1:16:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "7 رمضان 1445 هـ، 2:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "28 شعبان 1404 هـ، 11:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "9 رمضان 1472 هـ، 7:47:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "2 جمادى الأولى 1389 هـ، 3:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "5 ذو القعدة 1389 هـ، 4:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "21 جمادى الآخرة 1422 هـ، 4:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "27 شعبان 1445 هـ، 10:00:01 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "28 شعبان 1404 هـ، 6:53:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "28 محرم 1452 هـ، 2:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "6 ذو القعدة 1389 هـ، 12:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "7 رمضان 1445 هـ، 10:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "28 شعبان 1404 هـ، 5:53:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "10 رمضان 1472 هـ، 2:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "27 شعبان 1445 هـ، 6:00:01 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "29 شعبان 1404 هـ، 12:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "28 محرم 1452 هـ، 9:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "7 رمضان 1445 هـ، 9:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "28 شعبان 1404 هـ، 4:53:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "10 رمضان 1472 هـ، 1:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "2 جمادى الأولى 1389 هـ، 9:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "21 جمادى الآخرة 1422 هـ، 10:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "27 شعبان 1445 هـ، 5:00:01 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "28 شعبان 1404 هـ، 11:53:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "28 محرم 1452 هـ، 8:47:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "6 ذو القعدة 1389 هـ، 6:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "6 رمضان 1445 هـ، 9:00:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "28 شعبان 1404 هـ، 4:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "9 رمضان 1472 هـ، 1:47:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "1 جمادى الأولى 1389 هـ، 9:00:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "5 ذو القعدة 1389 هـ، 10:46:40 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "20 جمادى الآخرة 1422 هـ، 10:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "27 شعبان 1445 هـ، 5:00:01 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "28 شعبان 1404 هـ، 11:53:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "27 محرم 1452 هـ، 8:47:00 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 ص" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "5 ذو القعدة 1389 هـ، 6:46:40 م" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 ص" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص غرينتش-7" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "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]", + "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "28 شعبان 1404 هـ، 8:53:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "9 رمضان 1472 هـ، 5:47:00 م غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "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]", + "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]", + "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]", + "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]", + "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "28 شعبان 1404 هـ، 3:53:00 م غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "28 محرم 1452 هـ، 12:47:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "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]", + "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]", + "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص غرينتش+1" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م غرينتش+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش+4" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "9 رمضان 1472 هـ، 7:47:00 م غرينتش+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "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]", + "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]", + "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]", + "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]", + "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "28 شعبان 1404 هـ، 6:53:00 م غرينتش+4" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "28 محرم 1452 هـ، 2:47:00 ص غرينتش+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "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]", + "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]", + "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "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]", + "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "28 شعبان 1404 هـ، 5:53:00 م غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "10 رمضان 1472 هـ، 2:47:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "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]", + "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]", + "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "29 شعبان 1404 هـ، 12:53:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "28 محرم 1452 هـ، 9:47:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش+10" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "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]", + "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "28 شعبان 1404 هـ، 4:53:00 م غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "10 رمضان 1472 هـ، 1:47:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "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]", + "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]", + "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]", + "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]", + "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "28 شعبان 1404 هـ، 11:53:00 م غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "28 محرم 1452 هـ، 8:47:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "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]", + "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]", + "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م غرينتش+9" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "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]", + "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "28 شعبان 1404 هـ، 4:53:00 ص غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "9 رمضان 1472 هـ، 1:47:00 م غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "27 محرم 1452 هـ، 8:47:00 م غرينتش-3" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 6:14:15 ص توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 12:53:00 ص توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "الأحد، 9 رمضان 1472 هـ، 9:47:00 ص توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 1:14:15 م توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 7:53:00 ص توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "الأربعاء، 27 محرم 1452 هـ، 4:47:00 م توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:46:40 ص توقيت المحيط الهادي الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "الأحد، 7 رمضان 1445 هـ، 1:00:00 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 2:14:15 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 8:53:00 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "الأحد، 9 رمضان 1472 هـ، 5:47:00 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "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]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 2:46:40 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 2:46:40 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "الخميس، 27 شعبان 1445 هـ، 9:00:01 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 9:14:15 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 3:53:00 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "الخميس، 28 محرم 1452 هـ، 12:47:00 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "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]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 م توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 9:46:40 ص توقيت غرب أفريقيا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "الأحد، 7 رمضان 1445 هـ، 3:30:00 ص توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:44:15 م توقيت إيران الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:23:00 ص توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "الأحد، 9 رمضان 1472 هـ، 8:17:00 م توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "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]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:16:40 م توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:16:40 ص توقيت إيران الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "الخميس، 27 شعبان 1445 هـ، 11:30:01 ص توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 12:44:15 ص توقيت إيران الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:23:00 م توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "الخميس، 28 محرم 1452 هـ، 3:17:00 ص توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "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]", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 1:16:40 ص توقيت إيران الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:16:40 م توقيت إيران الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "الأحد، 7 رمضان 1445 هـ، 2:00:00 ص توقيت شرق أوروبا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 4:14:15 م توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 ص توقيت موسكو الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "الأحد، 9 رمضان 1472 هـ، 7:47:00 م توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "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]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 4:46:40 م توقيت موسكو الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 4:46:40 ص توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "الخميس، 27 شعبان 1445 هـ، 10:00:01 ص توقيت شرق أوروبا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14:15 م توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:53:00 م توقيت موسكو الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "الخميس، 28 محرم 1452 هـ، 2:47:00 ص توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "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]", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 12:46:40 ص توقيت موسكو الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46:40 ص توقيت شرق أوروبا الصيفي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "الأحد، 7 رمضان 1445 هـ، 10:00:00 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14:15 م توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 5:53:00 م توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "الاثنين، 10 رمضان 1472 هـ، 2:47:00 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "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]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 11:46:40 م توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46:40 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "الخميس، 27 شعبان 1445 هـ، 6:00:01 م توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 6:14:15 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "الأربعاء، 29 شعبان 1404 هـ، 12:53:00 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "الخميس، 28 محرم 1452 هـ، 9:47:00 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "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]", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 7:46:40 ص توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:46:40 م توقيت شرق أستراليا الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "الأحد، 7 رمضان 1445 هـ، 9:00:00 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14:15 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53:00 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "الاثنين، 10 رمضان 1472 هـ، 1:47:00 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "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]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 10:46:40 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "الخميس، 27 شعبان 1445 هـ، 5:00:01 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 5:14:15 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "الخميس، 28 محرم 1452 هـ، 8:47:00 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "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]", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 6:46:40 ص توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46:40 م توقيت بالاو" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "السبت، 6 رمضان 1445 هـ، 9:00:00 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14:15 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53:00 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "الأحد، 9 رمضان 1472 هـ، 1:47:00 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "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]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 10:46:40 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "الخميس، 27 شعبان 1445 هـ، 5:00:01 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:14:15 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "الأربعاء، 27 محرم 1452 هـ، 8:47:00 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "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]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 6:46:40 م توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46:40 ص توقيت أوروغواي الرسمي" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "السبت، 6 رمضان 1445 هـ، 5:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 6:14 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 12:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "الأحد، 9 رمضان 1472 هـ، 9:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 5:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 6:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "الخميس، 27 شعبان 1445 هـ، 12:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 1:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 7:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "الأربعاء، 27 محرم 1452 هـ، 4:47 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 12:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 1:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "الأحد، 7 رمضان 1445 هـ، 1:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 2:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 8:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "الأحد، 9 رمضان 1472 هـ، 5:47 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 1:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 2:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 2:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "الخميس، 27 شعبان 1445 هـ، 9:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 9:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 3:53 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "الخميس، 28 محرم 1452 هـ، 12:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 8:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 9:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "الأحد، 7 رمضان 1445 هـ، 3:30 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:44 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:23 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "الأحد، 9 رمضان 1472 هـ، 8:17 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:30 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:16 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:16 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "الخميس، 27 شعبان 1445 هـ، 11:30 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 12:44 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:23 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "الخميس، 28 محرم 1452 هـ، 3:17 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:30 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 1:16 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:16 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "الأحد، 7 رمضان 1445 هـ، 2:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 4:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "الأحد، 9 رمضان 1472 هـ، 7:47 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 4:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 4:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "الخميس، 27 شعبان 1445 هـ، 10:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:53 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "الخميس، 28 محرم 1452 هـ، 2:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 12:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "الأحد، 7 رمضان 1445 هـ، 10:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 5:53 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "الاثنين، 10 رمضان 1472 هـ، 2:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 11:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "الخميس، 27 شعبان 1445 هـ، 6:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 6:14 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "الأربعاء، 29 شعبان 1404 هـ، 12:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "الخميس، 28 محرم 1452 هـ، 9:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 5:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 7:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "الأحد، 7 رمضان 1445 هـ، 9:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "الاثنين، 10 رمضان 1472 هـ، 1:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 9:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 10:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "الخميس، 27 شعبان 1445 هـ، 5:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 5:14 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "الخميس، 28 محرم 1452 هـ، 8:47 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 6:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "السبت، 6 رمضان 1445 هـ، 9:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "الأحد، 9 رمضان 1472 هـ، 1:47 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 9:00 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 10:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "الخميس، 27 شعبان 1445 هـ، 5:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:14 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "الأربعاء، 27 محرم 1452 هـ، 8:47 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00 ص" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 6:46 م" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46 ص" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "6 رمضان 1445 هـ، 5:00:00 م غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "11 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "28 شعبان 1404 هـ، 12:53:00 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "9 رمضان 1472 هـ، 9:47:00 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "1 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "5 ذو القعدة 1389 هـ، 5:46:40 ص غرينتش-8" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "20 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "27 شعبان 1445 هـ، 12:00:01 ص غرينتش-8" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "11 ربيع الآخر 1422 هـ، 1:14:15 م غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "28 شعبان 1404 هـ، 7:53:00 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "27 محرم 1452 هـ، 4:47:00 م غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "2 جمادى الأولى 1389 هـ، 12:00:00 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "5 ذو القعدة 1389 هـ، 1:46:40 م غرينتش-8" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص غرينتش-7" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "7 رمضان 1445 هـ، 1:00:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "28 شعبان 1404 هـ، 8:53:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "9 رمضان 1472 هـ، 5:47:00 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "2 جمادى الأولى 1389 هـ، 1:00:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "5 ذو القعدة 1389 هـ، 2:46:40 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "21 جمادى الآخرة 1422 هـ، 2:46:40 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "27 شعبان 1445 هـ، 9:00:01 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "28 شعبان 1404 هـ، 3:53:00 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "28 محرم 1452 هـ، 12:47:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "2 جمادى الأولى 1389 هـ، 8:00:00 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص غرينتش+1" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "7 رمضان 1445 هـ، 3:30:00 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "11 ربيع الآخر 1422 هـ، 5:44:15 م غرينتش+4:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "28 شعبان 1404 هـ، 11:23:00 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "9 رمضان 1472 هـ، 8:17:00 م غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "2 جمادى الأولى 1389 هـ، 3:30:00 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "21 جمادى الآخرة 1422 هـ، 6:16:40 ص غرينتش+4:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "27 شعبان 1445 هـ، 11:30:01 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "12 ربيع الآخر 1422 هـ، 12:44:15 ص غرينتش+4:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "28 شعبان 1404 هـ، 6:23:00 م غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "28 محرم 1452 هـ، 3:17:00 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "2 جمادى الأولى 1389 هـ، 10:30:00 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "6 ذو القعدة 1389 هـ، 1:16:40 ص غرينتش+3:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "21 جمادى الآخرة 1422 هـ، 1:16:40 م غرينتش+4:30" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "7 رمضان 1445 هـ، 2:00:00 ص غرينتش+2" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش+4" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "9 رمضان 1472 هـ، 7:47:00 م غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "2 جمادى الأولى 1389 هـ، 3:00:00 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "5 ذو القعدة 1389 هـ، 4:46:40 م غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "21 جمادى الآخرة 1422 هـ، 4:46:40 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "27 شعبان 1445 هـ، 10:00:01 ص غرينتش+2" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "28 شعبان 1404 هـ، 6:53:00 م غرينتش+4" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "28 محرم 1452 هـ، 2:47:00 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "6 ذو القعدة 1389 هـ، 12:46:40 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "7 رمضان 1445 هـ، 10:00:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "28 شعبان 1404 هـ، 5:53:00 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "10 رمضان 1472 هـ، 2:47:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "27 شعبان 1445 هـ، 6:00:01 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "29 شعبان 1404 هـ، 12:53:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "28 محرم 1452 هـ، 9:47:00 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش+10" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "7 رمضان 1445 هـ، 9:00:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "28 شعبان 1404 هـ، 4:53:00 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "10 رمضان 1472 هـ، 1:47:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "2 جمادى الأولى 1389 هـ، 9:00:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "21 جمادى الآخرة 1422 هـ، 10:46:40 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "27 شعبان 1445 هـ، 5:00:01 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "28 شعبان 1404 هـ، 11:53:00 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "28 محرم 1452 هـ، 8:47:00 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "6 ذو القعدة 1389 هـ، 6:46:40 ص غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م غرينتش+9" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "6 رمضان 1445 هـ، 9:00:00 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "28 شعبان 1404 هـ، 4:53:00 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "9 رمضان 1472 هـ، 1:47:00 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "1 جمادى الأولى 1389 هـ، 9:00:00 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "5 ذو القعدة 1389 هـ، 10:46:40 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "20 جمادى الآخرة 1422 هـ، 10:46:40 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "27 شعبان 1445 هـ، 5:00:01 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "27 محرم 1452 هـ، 8:47:00 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 ص غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "5 ذو القعدة 1389 هـ، 6:46:40 م غرينتش-3" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "6 رمضان 1445 هـ، 5:00:00 م غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "11 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "28 شعبان 1404 هـ، 12:53:00 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "9 رمضان 1472 هـ، 9:47:00 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "1 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "5 ذو القعدة 1389 هـ، 5:46:40 ص غرينتش-8" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "20 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "27 شعبان 1445 هـ، 12:00:01 ص غرينتش-8" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "11 ربيع الآخر 1422 هـ، 1:14:15 م غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "28 شعبان 1404 هـ، 7:53:00 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "27 محرم 1452 هـ، 4:47:00 م غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "2 جمادى الأولى 1389 هـ، 12:00:00 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "5 ذو القعدة 1389 هـ، 1:46:40 م غرينتش-8" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص غرينتش-7" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "7 رمضان 1445 هـ، 1:00:00 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "28 شعبان 1404 هـ، 8:53:00 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "9 رمضان 1472 هـ، 5:47:00 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "2 جمادى الأولى 1389 هـ، 1:00:00 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "5 ذو القعدة 1389 هـ، 2:46:40 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "21 جمادى الآخرة 1422 هـ، 2:46:40 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "27 شعبان 1445 هـ، 9:00:01 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "28 شعبان 1404 هـ، 3:53:00 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "28 محرم 1452 هـ، 12:47:00 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "2 جمادى الأولى 1389 هـ، 8:00:00 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص غرينتش+1" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "7 رمضان 1445 هـ، 3:30:00 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "11 ربيع الآخر 1422 هـ، 5:44:15 م غرينتش+4:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "28 شعبان 1404 هـ، 11:23:00 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "9 رمضان 1472 هـ، 8:17:00 م غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "2 جمادى الأولى 1389 هـ، 3:30:00 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "21 جمادى الآخرة 1422 هـ، 6:16:40 ص غرينتش+4:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "27 شعبان 1445 هـ، 11:30:01 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "12 ربيع الآخر 1422 هـ، 12:44:15 ص غرينتش+4:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "28 شعبان 1404 هـ، 6:23:00 م غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "28 محرم 1452 هـ، 3:17:00 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "2 جمادى الأولى 1389 هـ، 10:30:00 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "6 ذو القعدة 1389 هـ، 1:16:40 ص غرينتش+3:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "21 جمادى الآخرة 1422 هـ، 1:16:40 م غرينتش+4:30" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "7 رمضان 1445 هـ، 2:00:00 ص غرينتش+2" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش+4" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "9 رمضان 1472 هـ، 7:47:00 م غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "2 جمادى الأولى 1389 هـ، 3:00:00 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "5 ذو القعدة 1389 هـ، 4:46:40 م غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "21 جمادى الآخرة 1422 هـ، 4:46:40 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "27 شعبان 1445 هـ، 10:00:01 ص غرينتش+2" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "28 شعبان 1404 هـ، 6:53:00 م غرينتش+4" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "28 محرم 1452 هـ، 2:47:00 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "6 ذو القعدة 1389 هـ، 12:46:40 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "7 رمضان 1445 هـ، 10:00:00 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "28 شعبان 1404 هـ، 5:53:00 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "10 رمضان 1472 هـ، 2:47:00 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "27 شعبان 1445 هـ، 6:00:01 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "29 شعبان 1404 هـ، 12:53:00 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "28 محرم 1452 هـ، 9:47:00 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش+10" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "7 رمضان 1445 هـ، 9:00:00 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "28 شعبان 1404 هـ، 4:53:00 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "10 رمضان 1472 هـ، 1:47:00 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "2 جمادى الأولى 1389 هـ، 9:00:00 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "21 جمادى الآخرة 1422 هـ، 10:46:40 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "27 شعبان 1445 هـ، 5:00:01 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "28 شعبان 1404 هـ، 11:53:00 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "28 محرم 1452 هـ، 8:47:00 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "6 ذو القعدة 1389 هـ، 6:46:40 ص غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م غرينتش+9" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "6 رمضان 1445 هـ، 9:00:00 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "28 شعبان 1404 هـ، 4:53:00 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "9 رمضان 1472 هـ، 1:47:00 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "1 جمادى الأولى 1389 هـ، 9:00:00 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "5 ذو القعدة 1389 هـ، 10:46:40 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "20 جمادى الآخرة 1422 هـ، 10:46:40 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "27 شعبان 1445 هـ، 5:00:01 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "27 محرم 1452 هـ، 8:47:00 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 ص غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "5 ذو القعدة 1389 هـ، 6:46:40 م غرينتش-3" + }, + { + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 ص غرينتش-3" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "১৬/৩/২৪ ৫:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "২/৭/০১ ৬:১৪ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "২৯/৫/৮৪ ১২:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "২৯/৫/৫০ ৯:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "১৫/৭/৬৯ ৫:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "১২/১/৭০ ৫:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "৮/৯/০১ ৬:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "৭/৩/২৪ ১২:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "২/৭/০১ ১:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "২৯/৫/৮৪ ৭:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "২৯/৫/৩০ ৪:৪৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "১৬/৭/৬৯ ১২:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "১২/১/৭০ ১:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "৯/৯/০১ ১:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "১৭/৩/২৪ ১:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "২/৭/০১ ২:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "২৯/৫/৮৪ ৮:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "২৯/৫/৫০ ৫:৪৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "১৬/৭/৬৯ ১:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "১২/১/৭০ ২:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "৯/৯/০১ ২:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "৭/৩/২৪ ৯:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "২/৭/০১ ৯:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "২৯/৫/৮৪ ৩:৫৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "৩০/৫/৩০ ১২:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "১৬/৭/৬৯ ৮:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "১২/১/৭০ ১০:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "৯/৯/০১ ৯:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "১৭/৩/২৪ ৩:৩০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "২/৭/০১ ৫:৪৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "২৯/৫/৮৪ ১১:২৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "২৯/৫/৫০ ৮:১৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "১৬/৭/৬৯ ৩:৩০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "১২/১/৭০ ৫:১৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "৯/৯/০১ ৬:১৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "৭/৩/২৪ ১১:৩০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "৩/৭/০১ ১২:৪৪ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "২৯/৫/৮৪ ৬:২৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "৩০/৫/৩০ ৩:১৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "১৬/৭/৬৯ ১০:৩০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "১৩/১/৭০ ১:১৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "৯/৯/০১ ১:১৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "১৭/৩/২৪ ২:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "২/৭/০১ ৪:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "২৯/৫/৮৪ ১১:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "২৯/৫/৫০ ৭:৪৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "১৬/৭/৬৯ ৩:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "১২/১/৭০ ৪:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "৯/৯/০১ ৪:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "৭/৩/২৪ ১০:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "২/৭/০১ ১১:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "২৯/৫/৮৪ ৬:৫৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "৩০/৫/৩০ ২:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "১৬/৭/৬৯ ১০:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "১৩/১/৭০ ১২:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "৯/৯/০১ ১১:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "১৭/৩/২৪ ১০:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "২/৭/০১ ১১:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "২৯/৫/৮৪ ৫:৫৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "৩০/৫/৫০ ২:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "১৬/৭/৬৯ ১০:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "১২/১/৭০ ১১:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "৯/৯/০১ ১১:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "৭/৩/২৪ ৬:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "৩/৭/০১ ৬:১৪ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "৩০/৫/৮৪ ১২:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "৩০/৫/৩০ ৯:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "১৬/৭/৬৯ ৫:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "১৩/১/৭০ ৭:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "৯/৯/০১ ৬:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "১৭/৩/২৪ ৯:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "২/৭/০১ ১০:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "২৯/৫/৮৪ ৪:৫৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "৩০/৫/৫০ ১:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "১৬/৭/৬৯ ৯:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "১২/১/৭০ ১০:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "৯/৯/০১ ১০:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "৭/৩/২৪ ৫:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "৩/৭/০১ ৫:১৪ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "২৯/৫/৮৪ ১১:৫৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "৩০/৫/৩০ ৮:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "১৬/৭/৬৯ ৪:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "১৩/১/৭০ ৬:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "৯/৯/০১ ৫:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "১৬/৩/২৪ ৯:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "২/৭/০১ ১০:১৪ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "২৯/৫/৮৪ ৪:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "২৯/৫/৫০ ১:৪৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "১৫/৭/৬৯ ৯:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "১২/১/৭০ ১০:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "৮/৯/০১ ১০:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "৭/৩/২৪ ৫:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "২/৭/০১ ৫:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "২৯/৫/৮৪ ১১:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "২৯/৫/৩০ ৮:৪৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "১৬/৭/৬৯ ৪:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "১২/১/৭০ ৬:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "৯/৯/০১ ৫:৪৬ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "২ জুল, ২০০১ ৬:১৪:১৫ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "১৫ জুল, ১৯৬৯ ৫:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "১২ জানু, ১৯৭০ ৫:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "৮ সেপ, ২০০১ ৬:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "৭ মার্চ, ২০২৪ ১২:০০:০১ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "২ জুল, ২০০১ ১:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "১৬ জুল, ১৯৬৯ ১২:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "১২ জানু, ১৯৭০ ১:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "৯ সেপ, ২০০১ ১:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "২ জুল, ২০০১ ২:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "১৬ জুল, ১৯৬৯ ১:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "১২ জানু, ১৯৭০ ২:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "৯ সেপ, ২০০১ ২:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "২ জুল, ২০০১ ৯:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "১৬ জুল, ১৯৬৯ ৮:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "৯ সেপ, ২০০১ ৯:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "২ জুল, ২০০১ ৫:৪৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "১৬ জুল, ১৯৬৯ ৩:৩০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "১২ জানু, ১৯৭০ ৫:১৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "৯ সেপ, ২০০১ ৬:১৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "৩ জুল, ২০০১ ১২:৪৪:১৫ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "১৬ জুল, ১৯৬৯ ১০:৩০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "১৩ জানু, ১৯৭০ ১:১৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "৯ সেপ, ২০০১ ১:১৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "২ জুল, ২০০১ ৪:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "২৯ মে, ২০৫০ ৭:৪৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "১৬ জুল, ১৯৬৯ ৩:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "১২ জানু, ১৯৭০ ৪:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "৯ সেপ, ২০০১ ৪:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "২ জুল, ২০০১ ১১:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "১৬ জুল, ১৯৬৯ ১০:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "১৩ জানু, ১৯৭০ ১২:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "৯ সেপ, ২০০১ ১১:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "২ জুল, ২০০১ ১১:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "১৬ জুল, ১৯৬৯ ১০:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "১২ জানু, ১৯৭০ ১১:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "৯ সেপ, ২০০১ ১১:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "৩ জুল, ২০০১ ৬:১৪:১৫ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "১৬ জুল, ১৯৬৯ ৫:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "১৩ জানু, ১৯৭০ ৭:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "৯ সেপ, ২০০১ ৬:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "২ জুল, ২০০১ ১০:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "১৬ জুল, ১৯৬৯ ৯:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "৯ সেপ, ২০০১ ১০:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "৩ জুল, ২০০১ ৫:১৪:১৫ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "১৬ জুল, ১৯৬৯ ৪:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "১৩ জানু, ১৯৭০ ৬:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "৯ সেপ, ২০০১ ৫:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "২ জুল, ২০০১ ১০:১৪:১৫ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "১৫ জুল, ১৯৬৯ ৯:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "৮ সেপ, ২০০১ ১০:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "২ জুল, ২০০১ ৫:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "১৬ জুল, ১৯৬৯ ৪:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "১২ জানু, ১৯৭০ ৬:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "৯ সেপ, ২০০১ ৫:৪৬:৪০ AM" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "২ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "১২ জানুয়ারী, ১৯৭০ ৫:৪৬:৪০ AM GMT -৮" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "৮ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "৭ মার্চ, ২০২৪ ১২:০০:০১ AM GMT -৮" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "২ জুলাই, ২০০১ ১:১৪:১৫ PM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "১২ জানুয়ারী, ১৯৭০ ১:৪৬:৪০ PM GMT -৮" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১:৪৬:৪০ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "২ জুলাই, ২০০১ ২:১৪:১৫ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "২ জুলাই, ২০০১ ৯:১৪:১৫ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "২ জুলাই, ২০০১ ৫:৪৪:১৫ PM GMT +৪:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM GMT +৪:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM GMT +৪:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM GMT +৪:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM GMT +২" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "২ জুলাই, ২০০১ ৪:১৪:১৫ PM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT +৪" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "২৯ মে, ২০৫০ ৭:৪৭:০০ PM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "১৬ জুলাই, ১৯৬৯ ৩:০০:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM GMT +২" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM GMT +৪" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "৩ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "১৬ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "১৩ জানুয়ারী, ১৯৭০ ৭:৪৬:৪০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "৩ জুলাই, ২০০১ ৫:১৪:১৫ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "২ জুলাই, ২০০১ ৫:১৪:১৫ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ AM GMT -৩" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -০৭:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১২:০০:০১ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১:১৪:১৫ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "বুধবার, ২৯ মে, ২০৩০ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -০৭:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +০১:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +০১:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:২৩:০০ AM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৮:১৭:০০ PM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +০৩:৩০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM ইরান দিবালোক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১১:৩০:০১ AM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:২৩:০০ PM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৩:১৭:০০ AM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +০৩:৩০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM ইরান দিবালোক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:০০:০০ AM GMT +০৩:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM মস্কো মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +০৩:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM মস্কো মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "সোমবার, ৩০ মে, ২০৫০ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "বুধবার, ৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT +১০:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৭:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৯:০০:০০ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪:১৫ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "সোমবার, ৩০ মে, ২০৫০ ১:৪৭:০০ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +০৯:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০:০১ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৫:১৪:১৫ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৮:৪৭:০০ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +০৯:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৯:০০:০০ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "রবিবার, ২৯ মে, ২০৫০ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -০৩:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০:০১ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "বুধবার, ২৯ মে, ২০৩০ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -০৩:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৫:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৬:১৪ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১২:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৯:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৫:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ৬:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১২:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৭:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "বুধবার, ২৯ মে, ২০৩০ ৪:৪৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১২:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ২:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৮:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৫:৪৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ২:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ২:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৯:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৯:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৩:৫৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ১২:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৮:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৯:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৩:৩০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:৪৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:২৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৮:১৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:৩০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:১৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:১৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১১:৩০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ১২:৪৪ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:২৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৩:১৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:৩০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১:১৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:১৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ২:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৪:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৭:৪৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৪:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৪:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১০:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:৫৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ২:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১২:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১০:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৫:৫৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "সোমবার, ৩০ মে, ২০৫০ ২:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১১:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৬:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৬:১৪ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "বুধবার, ৩০ মে, ১৯৮৪ ১২:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৯:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৫:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৭:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৯:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "সোমবার, ৩০ মে, ২০৫০ ১:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৯:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১০:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৫:১৪ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৮:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৬:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৯:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "রবিবার, ২৯ মে, ২০৫০ ১:৪৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৯:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ১০:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "বুধবার, ২৯ মে, ২০৩০ ৮:৪৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৬:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬ AM" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "২ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "১২ জানুয়ারী, ১৯৭০ ৫:৪৬:৪০ AM GMT -৮" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "৮ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "৭ মার্চ, ২০২৪ ১২:০০:০১ AM GMT -৮" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "২ জুলাই, ২০০১ ১:১৪:১৫ PM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "১২ জানুয়ারী, ১৯৭০ ১:৪৬:৪০ PM GMT -৮" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১:৪৬:৪০ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "২ জুলাই, ২০০১ ২:১৪:১৫ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "২ জুলাই, ২০০১ ৯:১৪:১৫ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "২ জুলাই, ২০০১ ৫:৪৪:১৫ PM GMT +৪:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM GMT +৪:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM GMT +৪:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM GMT +৪:৩০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM GMT +২" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "২ জুলাই, ২০০১ ৪:১৪:১৫ PM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT +৪" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "২৯ মে, ২০৫০ ৭:৪৭:০০ PM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "১৬ জুলাই, ১৯৬৯ ৩:০০:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM GMT +২" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM GMT +৪" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "৩ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "১৬ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "১৩ জানুয়ারী, ১৯৭০ ৭:৪৬:৪০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "৩ জুলাই, ২০০১ ৫:১৪:১৫ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "২ জুলাই, ২০০১ ৫:১৪:১৫ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ AM GMT -৩" + }, + { + "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]", + "expected": "৬/৯/১৪৪৫ যুগ ৫:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "১১/৪/১৪২২ যুগ ৬:১৪ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "২৮/৮/১৪০৪ যুগ ১২:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "৯/৯/১৪৭২ যুগ ৯:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "১/৫/১৩৮৯ যুগ ৫:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "৫/১১/১৩৮৯ যুগ ৫:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "২০/৬/১৪২২ যুগ ৬:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "২৭/৮/১৪৪৫ যুগ ১২:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "১১/৪/১৪২২ যুগ ১:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "২৮/৮/১৪০৪ যুগ ৭:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "২৭/১/১৪৫২ যুগ ৪:৪৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "২/৫/১৩৮৯ যুগ ১২:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "৫/১১/১৩৮৯ যুগ ১:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "২১/৬/১৪২২ যুগ ১:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "৭/৯/১৪৪৫ যুগ ১:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "১১/৪/১৪২২ যুগ ২:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "২৮/৮/১৪০৪ যুগ ৮:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "৯/৯/১৪৭২ যুগ ৫:৪৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "২/৫/১৩৮৯ যুগ ১:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "৫/১১/১৩৮৯ যুগ ২:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "২১/৬/১৪২২ যুগ ২:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "২৭/৮/১৪৪৫ যুগ ৯:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "১১/৪/১৪২২ যুগ ৯:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "২৮/৮/১৪০৪ যুগ ৩:৫৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "২৮/১/১৪৫২ যুগ ১২:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "২/৫/১৩৮৯ যুগ ৮:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "২১/৬/১৪২২ যুগ ৯:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "৭/৯/১৪৪৫ যুগ ৩:৩০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "১১/৪/১৪২২ যুগ ৫:৪৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "২৮/৮/১৪০৪ যুগ ১১:২৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "৯/৯/১৪৭২ যুগ ৮:১৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "২/৫/১৩৮৯ যুগ ৩:৩০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "৫/১১/১৩৮৯ যুগ ৫:১৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "২১/৬/১৪২২ যুগ ৬:১৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "২৭/৮/১৪৪৫ যুগ ১১:৩০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "১২/৪/১৪২২ যুগ ১২:৪৪ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "২৮/৮/১৪০৪ যুগ ৬:২৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "২৮/১/১৪৫২ যুগ ৩:১৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "২/৫/১৩৮৯ যুগ ১০:৩০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "৬/১১/১৩৮৯ যুগ ১:১৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "২১/৬/১৪২২ যুগ ১:১৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "৭/৯/১৪৪৫ যুগ ২:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "১১/৪/১৪২২ যুগ ৪:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "৯/৯/১৪৭২ যুগ ৭:৪৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "২/৫/১৩৮৯ যুগ ৩:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "৫/১১/১৩৮৯ যুগ ৪:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "২১/৬/১৪২২ যুগ ৪:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "২৭/৮/১৪৪৫ যুগ ১০:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "২৮/৮/১৪০৪ যুগ ৬:৫৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "২৮/১/১৪৫২ যুগ ২:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "৬/১১/১৩৮৯ যুগ ১২:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "৭/৯/১৪৪৫ যুগ ১০:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "২৮/৮/১৪০৪ যুগ ৫:৫৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "১০/৯/১৪৭২ যুগ ২:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "৫/১১/১৩৮৯ যুগ ১১:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "২৭/৮/১৪৪৫ যুগ ৬:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "১২/৪/১৪২২ যুগ ৬:১৪ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "২৯/৮/১৪০৪ যুগ ১২:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "২৮/১/১৪৫২ যুগ ৯:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "২/৫/১৩৮৯ যুগ ৫:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "৬/১১/১৩৮৯ যুগ ৭:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "২১/৬/১৪২২ যুগ ৬:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "৭/৯/১৪৪৫ যুগ ৯:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "১১/৪/১৪২২ যুগ ১০:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "১০/৯/১৪৭২ যুগ ১:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "২/৫/১৩৮৯ যুগ ৯:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "২১/৬/১৪২২ যুগ ১০:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "১২/৪/১৪২২ যুগ ৫:১৪ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "২৮/১/১৪৫২ যুগ ৮:৪৭ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "২/৫/১৩৮৯ যুগ ৪:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "৬/১১/১৩৮৯ যুগ ৬:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "৬/৯/১৪৪৫ যুগ ৯:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "১১/৪/১৪২২ যুগ ১০:১৪ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "৯/৯/১৪৭২ যুগ ১:৪৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "১/৫/১৩৮৯ যুগ ৯:০০ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "২০/৬/১৪২২ যুগ ১০:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "১১/৪/১৪২২ যুগ ৫:১৪ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "২৭/১/১৪৫২ যুগ ৮:৪৭ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "২/৫/১৩৮৯ যুগ ৪:০০ AM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "৫/১১/১৩৮৯ যুগ ৬:৪৬ PM" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM GMT -৮" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM GMT -৮" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM GMT -৮" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM GMT -৭" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM GMT +১" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM GMT +৪:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM GMT +৪:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM GMT +৪:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM GMT +৪:৩০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM GMT +২" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT +৪" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM GMT +২" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM GMT +৪" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT +১০" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM GMT +৯" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM GMT -৩" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM GMT -৩" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -০৭:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -০৭:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +০১:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +০১:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +০৩:৩০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM ইরান দিবালোক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +০৩:৩০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM ইরান মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM ইরান দিবালোক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +০৩:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM মস্কো মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +০৩:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM মস্কো মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +০৯:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +০৯:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM পালাউ সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -০৩:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -০৩:০০" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM উরুগুয়ে মানক সময়" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৫:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৯:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৪:৪৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ২:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৫:৪৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ১২:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৩:৩০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৮:১৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৩:১৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ২:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৭:৪৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ২:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১০:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ২:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৯:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৯:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ১:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৮:৪৭ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৯:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ১:৪৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৮:৪৭ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০ AM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬ PM" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬ AM" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM GMT -৮" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM GMT -৮" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM GMT -৮" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM GMT -৭" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM GMT +১" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM GMT +৪:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM GMT +৪:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM GMT +৪:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM GMT +৩:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM GMT +৪:৩০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM GMT +২" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT +৪" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM GMT +২" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM GMT +৪" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT +১০" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM GMT +৯" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM GMT -৩" + }, + { + "dateLength": "long", + "calendar": "islamic", + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM GMT -৩" + }, + { + "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]", + "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]", + "expected": "7/2/01 06:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "5/29/84 00:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "5/29/50 09:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "expected": "7/2/01 13:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "5/29/84 07:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "5/29/30 16:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "expected": "9/9/01 01:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "3/17/24 01:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "7/2/01 14:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "5/29/84 08:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "5/29/50 17:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "7/16/69 01:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "1/12/70 14:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "9/9/01 02:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "3/7/24 09:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "7/2/01 21:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "5/29/84 15:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "5/30/30 00:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "7/16/69 08:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "1/12/70 22:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "9/9/01 09:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "3/17/24 03:30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "7/2/01 17:44" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "5/29/84 11:23" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "5/29/50 20:17" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "7/16/69 03:30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "1/12/70 17:16" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "9/9/01 06:16" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "3/7/24 11:30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "7/3/01 00:44" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "5/29/84 18:23" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "5/30/30 03:17" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "7/16/69 10:30" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "1/13/70 01:16" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "9/9/01 13:16" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "3/17/24 02:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "7/2/01 16:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "5/29/84 11:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "5/29/50 19:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "7/16/69 03:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "1/12/70 16:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "9/9/01 04:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "3/7/24 10:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "7/2/01 23:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "5/29/84 18:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "5/30/30 02:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "7/16/69 10:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "1/13/70 00:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "9/9/01 11:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "3/17/24 10:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "7/2/01 23:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "5/29/84 17:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "5/30/50 02:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "7/16/69 10:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "1/12/70 23:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "9/9/01 11:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "3/7/24 18:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "7/3/01 06:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "5/30/84 00:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "5/30/30 09:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "7/16/69 17:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "1/13/70 07:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "9/9/01 18:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "3/17/24 09:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "7/2/01 22:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "5/29/84 16:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "5/30/50 01:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "7/16/69 09:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "1/12/70 22:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "9/9/01 10:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "3/7/24 17:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "7/3/01 05:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "5/29/84 23:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "5/30/30 08:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "7/16/69 16:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "1/13/70 06:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "9/9/01 17:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "3/16/24 21:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "7/2/01 10:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "5/29/84 04:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "5/29/50 13:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "7/15/69 21:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "1/12/70 10:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "9/8/01 22:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "3/7/24 05:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "7/2/01 17:14" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "5/29/84 11:53" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "5/29/30 20:47" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "7/16/69 04:00" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "1/12/70 18:46" + }, + { + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "9/9/01 05:46" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "Sep 9, 2001 01:46:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "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]", + "expected": "Jul 2, 2001 14:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "Mey 29, 1984 08:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "Mey 29, 2050 17:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "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]", + "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]", + "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]", + "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]", + "expected": "Jul 2, 2001 21:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "Mey 29, 1984 15:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "Mey 30, 2030 00:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "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]", + "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]", + "expected": "Sep 9, 2001 09:46:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "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]", + "expected": "Jul 2, 2001 17:44:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "Mey 29, 1984 11:23:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "Mey 29, 2050 20:17:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "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]", + "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]", + "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]", + "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]", + "expected": "Jul 3, 2001 00:44:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "Mey 29, 1984 18:23:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "Mey 30, 2030 03:17:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "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]", + "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]", + "expected": "Sep 9, 2001 13:16:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "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]", + "expected": "Jul 2, 2001 16:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "Mey 29, 1984 11:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "Mey 29, 2050 19:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "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]", + "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]", + "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]", + "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]", + "expected": "Jul 2, 2001 23:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "Mey 29, 1984 18:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "Mey 30, 2030 02:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "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]", + "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]", + "expected": "Sep 9, 2001 11:46:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "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]", + "expected": "Jul 2, 2001 23:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "Mey 29, 1984 17:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "Mey 30, 2050 02:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "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]", + "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]", + "expected": "Jul 3, 2001 06:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "Mey 30, 1984 00:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "Mey 30, 2030 09:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "expected": "Sep 9, 2001 18:46:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "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]", + "expected": "Jul 2, 2001 22:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "Mey 29, 1984 16:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "Mey 30, 2050 01:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "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]", + "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]", + "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]", + "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]", + "expected": "Jul 3, 2001 05:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "Mey 29, 1984 23:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "Mey 30, 2030 08:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "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]", + "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]", + "expected": "Sep 9, 2001 17:46:40" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "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]", + "expected": "Jul 2, 2001 10:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "Mey 29, 1984 04:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "Mey 29, 2050 13:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "expected": "Jul 2, 2001 17:14:15" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "Mey 29, 1984 11:53:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "Mey 29, 2030 20:47:00" + }, + { + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "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]", + "expected": "ISonto, Septhemba 9, 2001 01:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "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]", + "expected": "UMsombuluko, Julayi 2, 2001 14:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "ULwesibili, Meyi 29, 1984 08:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "ISonto, Meyi 29, 2050 17:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "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]", + "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]", + "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]", + "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]", + "expected": "UMsombuluko, Julayi 2, 2001 21:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "ULwesibili, Meyi 29, 1984 15:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "ULwesine, Meyi 30, 2030 00:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "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]", + "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]", + "expected": "ISonto, Septhemba 9, 2001 09:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "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]", + "expected": "UMsombuluko, Julayi 2, 2001 17:44" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "ULwesibili, Meyi 29, 1984 11:23" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "ISonto, Meyi 29, 2050 20:17" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "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]", + "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]", + "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]", + "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]", + "expected": "ULwesibili, Julayi 3, 2001 00:44" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "ULwesibili, Meyi 29, 1984 18:23" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "ULwesine, Meyi 30, 2030 03:17" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "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]", + "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]", + "expected": "ISonto, Septhemba 9, 2001 13:16" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "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]", + "expected": "UMsombuluko, Julayi 2, 2001 16:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "ULwesibili, Meyi 29, 1984 11:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "ISonto, Meyi 29, 2050 19:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "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]", + "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]", + "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]", + "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]", + "expected": "UMsombuluko, Julayi 2, 2001 23:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "ULwesibili, Meyi 29, 1984 18:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "ULwesine, Meyi 30, 2030 02:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "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]", + "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]", + "expected": "ISonto, Septhemba 9, 2001 11:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "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]", + "expected": "UMsombuluko, Julayi 2, 2001 23:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "ULwesibili, Meyi 29, 1984 17:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "UMsombuluko, Meyi 30, 2050 02:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "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]", + "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]", + "expected": "ULwesibili, Julayi 3, 2001 06:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "ULwesithathu, Meyi 30, 1984 00:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "ULwesine, Meyi 30, 2030 09:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "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]", + "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]", + "expected": "ISonto, Septhemba 9, 2001 18:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "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]", + "expected": "UMsombuluko, Julayi 2, 2001 22:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "ULwesibili, Meyi 29, 1984 16:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "UMsombuluko, Meyi 30, 2050 01:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "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]", + "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]", + "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]", + "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]", + "expected": "ULwesibili, Julayi 3, 2001 05:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "ULwesibili, Meyi 29, 1984 23:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "ULwesine, Meyi 30, 2030 08:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "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]", + "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]", + "expected": "ISonto, Septhemba 9, 2001 17:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "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]", + "expected": "UMsombuluko, Julayi 2, 2001 10:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "ULwesibili, Meyi 29, 1984 04:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "ISonto, Meyi 29, 2050 13:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "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]", + "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]", + "expected": "UMgqibelo, Septhemba 8, 2001 22:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "ULwesine, Mashi 7, 2024 05:00" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "UMsombuluko, Julayi 2, 2001 17:14" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "ULwesibili, Meyi 29, 1984 11:53" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "ULwesithathu, Meyi 29, 2030 20:47" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "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]", + "expected": "UMsombuluko, Januwari 12, 1970 18:46" + }, + { + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "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 17:00:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "Julayi 2, 2001 06:14:15 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "Meyi 29, 1984 00:53:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "Meyi 29, 2050 09:47:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "Julayi 15, 1969 17:00:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "Januwari 12, 1970 05:46:40 GMT-8" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "Septhemba 8, 2001 18:46:40 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "Mashi 7, 2024 00:00:01 GMT-8" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "Julayi 2, 2001 13:14:15 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "Meyi 29, 1984 07:53:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "Meyi 29, 2030 16:47:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "Julayi 16, 1969 00:00:00 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "Januwari 12, 1970 13:46:40 GMT-8" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "Septhemba 9, 2001 01:46:40 GMT-7" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "Mashi 17, 2024 01:00:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "Julayi 2, 2001 14:14:15 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "Meyi 29, 1984 08:53:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "Meyi 29, 2050 17:47:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "Julayi 16, 1969 01:00:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "Januwari 12, 1970 14:46:40 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "Septhemba 9, 2001 02:46:40 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "Mashi 7, 2024 09:00:01 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "Julayi 2, 2001 21:14:15 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "Meyi 29, 1984 15:53:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "Meyi 30, 2030 00:47:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "Julayi 16, 1969 08:00:00 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "Januwari 12, 1970 22:46:40 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "Septhemba 9, 2001 09:46:40 GMT+1" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "Mashi 17, 2024 03:30:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "Julayi 2, 2001 17:44:15 GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "Meyi 29, 1984 11:23:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "Meyi 29, 2050 20:17:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "Julayi 16, 1969 03:30:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "Januwari 12, 1970 17:16:40 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "Septhemba 9, 2001 06:16:40 GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "Mashi 7, 2024 11:30:01 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "Julayi 3, 2001 00:44:15 GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "Meyi 29, 1984 18:23:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "Meyi 30, 2030 03:17:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "Julayi 16, 1969 10:30:00 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "Januwari 13, 1970 01:16:40 GMT+3:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "Septhemba 9, 2001 13:16:40 GMT+4:30" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "Mashi 17, 2024 02:00:00 GMT+2" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "Julayi 2, 2001 16:14:15 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "Meyi 29, 1984 11:53:00 GMT+4" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "Meyi 29, 2050 19:47:00 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "Julayi 16, 1969 03:00:00 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "Januwari 12, 1970 16:46:40 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "Septhemba 9, 2001 04:46:40 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "Mashi 7, 2024 10:00:01 GMT+2" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "Julayi 2, 2001 23:14:15 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "Meyi 29, 1984 18:53:00 GMT+4" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "Meyi 30, 2030 02:47:00 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "Julayi 16, 1969 10:00:00 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "Januwari 13, 1970 00:46:40 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "Septhemba 9, 2001 11:46:40 GMT+3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "Mashi 17, 2024 10:00:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "Julayi 2, 2001 23:14:15 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "Meyi 29, 1984 17:53:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "Meyi 30, 2050 02:47:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "Julayi 16, 1969 10:00:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "Januwari 12, 1970 23:46:40 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "Septhemba 9, 2001 11:46:40 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "Mashi 7, 2024 18:00:01 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "Julayi 3, 2001 06:14:15 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "Meyi 30, 1984 00:53:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "Meyi 30, 2030 09:47:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "Julayi 16, 1969 17:00:00 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "Januwari 13, 1970 07:46:40 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "Septhemba 9, 2001 18:46:40 GMT+10" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "Mashi 17, 2024 09:00:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "Julayi 2, 2001 22:14:15 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "Meyi 29, 1984 16:53:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "Meyi 30, 2050 01:47:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "Julayi 16, 1969 09:00:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "Januwari 12, 1970 22:46:40 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "Septhemba 9, 2001 10:46:40 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "Mashi 7, 2024 17:00:01 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "Julayi 3, 2001 05:14:15 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "Meyi 29, 1984 23:53:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "Meyi 30, 2030 08:47:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "Julayi 16, 1969 16:00:00 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "Januwari 13, 1970 06:46:40 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "Septhemba 9, 2001 17:46:40 GMT+9" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "Mashi 16, 2024 21:00:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "Julayi 2, 2001 10:14:15 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "Meyi 29, 1984 04:53:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "Meyi 29, 2050 13:47:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "Julayi 15, 1969 21:00:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "Januwari 12, 1970 10:46:40 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "Septhemba 8, 2001 22:46:40 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "Mashi 7, 2024 05:00:01 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "Julayi 2, 2001 17:14:15 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "Meyi 29, 1984 11:53:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "Meyi 29, 2030 20:47:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "Julayi 16, 1969 04:00:00 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "Januwari 12, 1970 18:46:40 GMT-3" + }, + { + "dateLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "Septhemba 9, 2001 05:46:40 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "expected": "Mashi 16, 2024 17:00:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "expected": "Julayi 2, 2001 06:14:15 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "expected": "Meyi 29, 1984 00:53:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "expected": "Meyi 29, 2050 09:47:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "expected": "Julayi 15, 1969 17:00:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "expected": "Januwari 12, 1970 05:46:40 GMT-8" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "expected": "Septhemba 8, 2001 18:46:40 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "expected": "Mashi 7, 2024 00:00:01 GMT-8" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "expected": "Julayi 2, 2001 13:14:15 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "expected": "Meyi 29, 1984 07:53:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "expected": "Meyi 29, 2030 16:47:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "expected": "Julayi 16, 1969 00:00:00 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "expected": "Januwari 12, 1970 13:46:40 GMT-8" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "expected": "Septhemba 9, 2001 01:46:40 GMT-7" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "expected": "Mashi 17, 2024 01:00:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "expected": "Julayi 2, 2001 14:14:15 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "expected": "Meyi 29, 1984 08:53:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "expected": "Meyi 29, 2050 17:47:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "expected": "Julayi 16, 1969 01:00:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "expected": "Januwari 12, 1970 14:46:40 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "expected": "Septhemba 9, 2001 02:46:40 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "expected": "Mashi 7, 2024 09:00:01 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "expected": "Julayi 2, 2001 21:14:15 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "expected": "Meyi 29, 1984 15:53:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "expected": "Meyi 30, 2030 00:47:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "expected": "Julayi 16, 1969 08:00:00 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "expected": "Januwari 12, 1970 22:46:40 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "expected": "Septhemba 9, 2001 09:46:40 GMT+1" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "expected": "Mashi 17, 2024 03:30:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "expected": "Julayi 2, 2001 17:44:15 GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "expected": "Meyi 29, 1984 11:23:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "expected": "Meyi 29, 2050 20:17:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "expected": "Julayi 16, 1969 03:30:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "expected": "Januwari 12, 1970 17:16:40 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "expected": "Septhemba 9, 2001 06:16:40 GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "expected": "Mashi 7, 2024 11:30:01 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "expected": "Julayi 3, 2001 00:44:15 GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "expected": "Meyi 29, 1984 18:23:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "expected": "Meyi 30, 2030 03:17:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "expected": "Julayi 16, 1969 10:30:00 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "expected": "Januwari 13, 1970 01:16:40 GMT+3:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "expected": "Septhemba 9, 2001 13:16:40 GMT+4:30" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "expected": "Mashi 17, 2024 02:00:00 GMT+2" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "expected": "Julayi 2, 2001 16:14:15 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "expected": "Meyi 29, 1984 11:53:00 GMT+4" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "expected": "Meyi 29, 2050 19:47:00 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "expected": "Julayi 16, 1969 03:00:00 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "expected": "Januwari 12, 1970 16:46:40 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "expected": "Septhemba 9, 2001 04:46:40 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "expected": "Mashi 7, 2024 10:00:01 GMT+2" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "expected": "Julayi 2, 2001 23:14:15 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "expected": "Meyi 29, 1984 18:53:00 GMT+4" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "expected": "Meyi 30, 2030 02:47:00 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "expected": "Julayi 16, 1969 10:00:00 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "expected": "Januwari 13, 1970 00:46:40 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "expected": "Septhemba 9, 2001 11:46:40 GMT+3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "expected": "Mashi 17, 2024 10:00:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "expected": "Julayi 2, 2001 23:14:15 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "expected": "Meyi 29, 1984 17:53:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "expected": "Meyi 30, 2050 02:47:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "Julayi 16, 1969 10:00:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "expected": "Januwari 12, 1970 23:46:40 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "expected": "Septhemba 9, 2001 11:46:40 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "expected": "Mashi 7, 2024 18:00:01 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "expected": "Julayi 3, 2001 06:14:15 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "expected": "Meyi 30, 1984 00:53:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "expected": "Meyi 30, 2030 09:47:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "expected": "Julayi 16, 1969 17:00:00 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "expected": "Januwari 13, 1970 07:46:40 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "expected": "Septhemba 9, 2001 18:46:40 GMT+10" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "expected": "Mashi 17, 2024 09:00:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "expected": "Julayi 2, 2001 22:14:15 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "expected": "Meyi 29, 1984 16:53:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "expected": "Meyi 30, 2050 01:47:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "expected": "Julayi 16, 1969 09:00:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "expected": "Januwari 12, 1970 22:46:40 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "expected": "Septhemba 9, 2001 10:46:40 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "expected": "Mashi 7, 2024 17:00:01 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "expected": "Julayi 3, 2001 05:14:15 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "expected": "Meyi 29, 1984 23:53:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "expected": "Meyi 30, 2030 08:47:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "expected": "Julayi 16, 1969 16:00:00 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "expected": "Januwari 13, 1970 06:46:40 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "expected": "Septhemba 9, 2001 17:46:40 GMT+9" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "expected": "Mashi 16, 2024 21:00:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "expected": "Julayi 2, 2001 10:14:15 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "expected": "Meyi 29, 1984 04:53:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "expected": "Meyi 29, 2050 13:47:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "expected": "Julayi 15, 1969 21:00:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "expected": "Januwari 12, 1970 10:46:40 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "expected": "Septhemba 8, 2001 22:46:40 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "expected": "Mashi 7, 2024 05:00:01 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "expected": "Julayi 2, 2001 17:14:15 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "expected": "Meyi 29, 1984 11:53:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "expected": "Meyi 29, 2030 20:47:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "expected": "Julayi 16, 1969 04:00:00 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "expected": "Januwari 12, 1970 18:46:40 GMT-3" + }, + { + "timeLength": "long", + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "expected": "Septhemba 9, 2001 05:46:40 GMT-3" + } +] From efd1fd31248f39533ddda4bdb1ef812144b2b585 Mon Sep 17 00:00:00 2001 From: Craig Date: Mon, 28 Oct 2024 16:45:41 -0700 Subject: [PATCH 4/7] Starting to update datetime generator from CLDR data --- testgen/generators/datetime_fmt.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/testgen/generators/datetime_fmt.py b/testgen/generators/datetime_fmt.py index ed61f497..20707fe1 100644 --- a/testgen/generators/datetime_fmt.py +++ b/testgen/generators/datetime_fmt.py @@ -1,4 +1,7 @@ # -*- coding: utf-8 -*- +from datetime import datetime, timezone +# import pytz + import os import json import re @@ -50,6 +53,17 @@ def generate_datetime_data_from_cldr(self, dt_json_path, run_limit=-1): options = {} # TODO: Generate input string with "Z" and compute tz_offset_secs # TODO: Generate hash of the data without the label + raw_input = test_item['input'] + start_index = raw_input.find('[') + tz_str = raw_input[start_index+1:-1] + #3z_pattern = re.compile(r'(\[\s\\]*\])') + #tz_name = tz_pattern.search(raw_input) + raw_time = datetime.fromisoformat(raw_input[0:start_index]) + + dt = datetime.fromisoformat(test_item['input']) + if dt.tzinfo is None: + tzinfo = tt.tzinfo + dt = dt.replace(tzinfo=timezone.utc) new_test = { "locale": test_item['locale'], "input_string": test_item['input'], From ce625ef6e3f4d2c5dffca3f6f14ac09bc53b4dc6 Mon Sep 17 00:00:00 2001 From: Craig Date: Tue, 12 Nov 2024 08:07:02 -0800 Subject: [PATCH 5/7] Add timeZone to test options --- run_config.json | 1 + testgen/generators/datetime_fmt.py | 63 ++++++++++++++++++++---------- 2 files changed, 44 insertions(+), 20 deletions(-) diff --git a/run_config.json b/run_config.json index 262951fd..fd6c48dc 100644 --- a/run_config.json +++ b/run_config.json @@ -10,6 +10,7 @@ "exec": "cpp", "test_type": [ "collation_short", + "datetime_fmt", "lang_names", "likely_subtags", "message_fmt2", diff --git a/testgen/generators/datetime_fmt.py b/testgen/generators/datetime_fmt.py index f9675081..0a46c5e3 100644 --- a/testgen/generators/datetime_fmt.py +++ b/testgen/generators/datetime_fmt.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from datetime import datetime, timezone +from datetime import datetime, timezone, UTC # import pytz import os @@ -45,40 +45,63 @@ def generate_datetime_data_from_cldr(self, dt_json_path, run_limit=-1): 'cldrVersion': '??' } # Get each entry and assemble the test data and verify data. - label_num = 0 + label_num = -1 desired_width = math.ceil(math.log10(len(json_data))) # Based the size of json_data + + input_index = -1 + input_increment = 1 + if self.run_limit > 0: + input_increment = math.floor(len(json_data) / self.run_limit) + for test_item in json_data: + input_index += 1 + label_num += 1 + + if input_index % input_increment != 0: + continue + label_str = str(label_num).rjust(desired_width, "0") # Construct options options = {} - # TODO: Generate input string with "Z" and compute tz_offset_secs - # TODO: Generate hash of the data without the label + # Generate input string with "Z" and compute tz_offset_secs raw_input = test_item['input'] start_index = raw_input.find('[') - tz_str = raw_input[start_index+1:-1] - #3z_pattern = re.compile(r'(\[\s\\]*\])') - #tz_name = tz_pattern.search(raw_input) + end_index = raw_input.find(']') raw_time = datetime.fromisoformat(raw_input[0:start_index]) - dt = datetime.fromisoformat(test_item['input']) - if dt.tzinfo is None: - tzinfo = tt.tzinfo - dt = dt.replace(tzinfo=timezone.utc) - new_test = { - "locale": test_item['locale'], - "input_string": test_item['input'], - "options": options - } - # TODO: Generate hash of the data without the label - new_test['tz_offset_secs'] = 0 # COMPUTE THIS FOR THE TIMEZONE - new_test['label'] = label_str + if start_index >= 0 and end_index > start_index: + timeZone = raw_input[start_index+1:end_index] + options['timeZone'] = timeZone + + # Set the options + if 'dateLength' in test_item: + options['dateStyle'] = test_item['dateLength'] + else: + options['dateStyle'] = 'short' + if 'timeLength' in test_item: + options['timeStyle'] = test_item['timeLength'] + else: + options['timeStyle'] = 'short' + if 'calendar' in test_item: + options['calendar'] = test_item['calendar'] + if options['calendar'] == 'gregorian': + options['calendar'] = 'gregory' + + # Generate UTC time equivalent and get the offset in seconds + u_time = raw_time.astimezone(UTC) + input_string = u_time.isoformat().replace('+00:00', 'Z') + tz_offset_secs = raw_time.utcoffset().total_seconds() + + new_test = {"locale": test_item['locale'], "input_string": input_string, "options": options, + 'tz_offset_secs': tz_offset_secs, 'label': label_str, + 'original_input': raw_input} new_verify = {"label": label_str, "verify": test_item['expected'] } test_cases.append(new_test) verify_cases.append(new_verify) - label_num += 1 + # Save output as: datetime_fmt_test.json and datetime_fmt_verify.json test_obj['tests'] = test_cases From 7baf8640a9f0be520567f3cbec3f7599ea8ba7b4 Mon Sep 17 00:00:00 2001 From: Craig Date: Wed, 13 Nov 2024 17:03:33 -0800 Subject: [PATCH 6/7] Adding known issue checking --- testgen/generators/datetime_fmt.py | 6 +- testgen/icu76/datetime.json | 114670 +++++++++++++++++++------- verifier/check_known_issues.py | 35 + 3 files changed, 84321 insertions(+), 30390 deletions(-) diff --git a/testgen/generators/datetime_fmt.py b/testgen/generators/datetime_fmt.py index 0a46c5e3..5627ad63 100644 --- a/testgen/generators/datetime_fmt.py +++ b/testgen/generators/datetime_fmt.py @@ -76,12 +76,9 @@ def generate_datetime_data_from_cldr(self, dt_json_path, run_limit=-1): # Set the options if 'dateLength' in test_item: options['dateStyle'] = test_item['dateLength'] - else: - options['dateStyle'] = 'short' if 'timeLength' in test_item: options['timeStyle'] = test_item['timeLength'] - else: - options['timeStyle'] = 'short' + if 'calendar' in test_item: options['calendar'] = test_item['calendar'] if options['calendar'] == 'gregorian': @@ -161,4 +158,3 @@ def process_test_data(self): result = subprocess.run(mv_command, shell=True) return result - diff --git a/testgen/icu76/datetime.json b/testgen/icu76/datetime.json index c2a3fcba..e262deed 100644 --- a/testgen/icu76/datetime.json +++ b/testgen/icu76/datetime.json @@ -5,6 +5,7 @@ "calendar": "gregorian", "locale": "en-US", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", "expected": "3/16/24, 5:00 PM" }, { @@ -12,56824 +13,110722 @@ "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "7/2/01, 6:14 AM" + "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": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "5/29/84, 12:53 AM" + "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": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "5/29/50, 9:47 AM" + "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": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "7/15/69, 5:00 PM" + "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": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1/12/70, 5:46 AM" + "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": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "9/8/01, 6:46 PM" + "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": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "3/7/24, 12:00 AM" + "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": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "7/2/01, 1:14 PM" + "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": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "5/29/84, 7:53 AM" + "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": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "5/29/30, 4:47 PM" + "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": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "7/16/69, 12:00 AM" + "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": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1/12/70, 1:46 PM" + "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-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9/9/01, 1:46 AM" + "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-17T01:00+01:00[Africa/Luanda]", - "expected": "3/17/24, 1:00 AM" + "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": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "7/2/01, 2:14 PM" + "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": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "5/29/84, 8:53 AM" + "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": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "5/29/50, 5:47 PM" + "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": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "7/16/69, 1:00 AM" + "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": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1/12/70, 2:46 PM" + "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": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9/9/01, 2:46 AM" + "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": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "3/7/24, 9:00 AM" + "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": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "7/2/01, 9:14 PM" + "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": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "5/29/84, 3:53 PM" + "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": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "5/30/30, 12:47 AM" + "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": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "7/16/69, 8:00 AM" + "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": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1/12/70, 10:46 PM" + "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-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9/9/01, 9:46 AM" + "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-17T03:30+03:30[Asia/Tehran]", - "expected": "3/17/24, 3:30 AM" + "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": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "7/2/01, 5:44 PM" + "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": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "5/29/84, 11:23 AM" + "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": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "5/29/50, 8:17 PM" + "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": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "7/16/69, 3:30 AM" + "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": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1/12/70, 5:16 PM" + "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": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9/9/01, 6:16 AM" + "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": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "3/7/24, 11:30 AM" + "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": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "7/3/01, 12:44 AM" + "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": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "5/29/84, 6:23 PM" + "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": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "5/30/30, 3:17 AM" + "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": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "7/16/69, 10:30 AM" + "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": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1/13/70, 1:16 AM" + "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-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9/9/01, 1:16 PM" + "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-17T02:00+02:00[Europe/Kiev]", - "expected": "3/17/24, 2:00 AM" + "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": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "7/2/01, 4:14 PM" + "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": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "5/29/84, 11:53 AM" + "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": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "5/29/50, 7:47 PM" + "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": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "7/16/69, 3:00 AM" + "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": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1/12/70, 4:46 PM" + "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": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9/9/01, 4:46 AM" + "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": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "3/7/24, 10:00 AM" + "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": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "7/2/01, 11:14 PM" + "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": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "5/29/84, 6:53 PM" + "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": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "5/30/30, 2:47 AM" + "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": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "7/16/69, 10:00 AM" + "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": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1/13/70, 12:46 AM" + "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-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9/9/01, 11:46 AM" + "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-17T10:00+10:00[Australia/Brisbane]", - "expected": "3/17/24, 10:00 AM" + "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": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "7/2/01, 11:14 PM" + "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": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "5/29/84, 5:53 PM" + "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": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "5/30/50, 2:47 AM" + "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": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "7/16/69, 10:00 AM" + "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": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1/12/70, 11:46 PM" + "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": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9/9/01, 11:46 AM" + "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": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "3/7/24, 6:00 PM" + "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": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "7/3/01, 6:14 AM" + "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": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "5/30/84, 12:53 AM" + "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": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "5/30/30, 9:47 AM" + "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": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "7/16/69, 5:00 PM" + "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": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1/13/70, 7:46 AM" + "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-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9/9/01, 6:46 PM" + "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-17T09:00+09:00[Pacific/Palau]", - "expected": "3/17/24, 9:00 AM" + "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": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "7/2/01, 10:14 PM" + "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": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "5/29/84, 4:53 PM" + "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": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "5/30/50, 1:47 AM" + "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": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "7/16/69, 9:00 AM" + "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": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1/12/70, 10:46 PM" + "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": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9/9/01, 10:46 AM" + "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": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "3/7/24, 5:00 PM" + "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": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "7/3/01, 5:14 AM" + "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": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "5/29/84, 11:53 PM" + "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": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "5/30/30, 8:47 AM" + "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": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "7/16/69, 4:00 PM" + "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": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1/13/70, 6:46 AM" + "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-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9/9/01, 5:46 PM" + "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-16T21:00-03:00[America/Montevideo]", - "expected": "3/16/24, 9:00 PM" + "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": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "7/2/01, 10:14 AM" + "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": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "5/29/84, 4:53 AM" + "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": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "5/29/50, 1:47 PM" + "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": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "7/15/69, 9:00 PM" + "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": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1/12/70, 10:46 AM" + "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": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "9/8/01, 10:46 PM" + "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": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "3/7/24, 5:00 AM" + "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": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "7/2/01, 5:14 PM" + "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": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "5/29/84, 11:53 AM" + "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": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "5/29/30, 8:47 PM" + "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": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "7/16/69, 4:00 AM" + "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": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1/12/70, 6:46 PM" + "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-09T05:46:40-03:00[America/Montevideo]", - "expected": "9/9/01, 5:46 AM" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "9/9/01, 4:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "Mar 16, 2024, 5:00:00 PM" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "3/7/24, 10:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "Jul 2, 2001, 6:14:15 AM" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "3/7/24, 10:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "May 29, 1984, 12:53:00 AM" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "7/2/01, 11:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "May 29, 2050, 9:47:00 AM" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "7/2/01, 11:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "Jul 15, 1969, 5:00:00 PM" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "5/29/84, 6:53 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "Jan 12, 1970, 5:46:40 AM" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "5/29/84, 6:53 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "Sep 8, 2001, 6:46:40 PM" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "5/30/30, 2:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "Mar 7, 2024, 12:00:01 AM" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "5/30/30, 2:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "Jul 2, 2001, 1:14:15 PM" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "7/16/69, 10:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "May 29, 1984, 7:53:00 AM" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "7/16/69, 10:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "May 29, 2030, 4:47:00 PM" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1/13/70, 12:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "Jul 16, 1969, 12:00:00 AM" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1/13/70, 12:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "Jan 12, 1970, 1:46:40 PM" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "9/9/01, 11:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "Sep 9, 2001, 1:46:40 AM" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "9/9/01, 11:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "Mar 17, 2024, 1:00:00 AM" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "3/17/24, 10:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "Jul 2, 2001, 2:14:15 PM" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "3/17/24, 10:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "May 29, 1984, 8:53:00 AM" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "7/2/01, 11:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "May 29, 2050, 5:47:00 PM" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "7/2/01, 11:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "Jul 16, 1969, 1:00:00 AM" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "5/29/84, 5:53 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "Jan 12, 1970, 2:46:40 PM" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "5/29/84, 5:53 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "Sep 9, 2001, 2:46:40 AM" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "5/30/50, 2:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "Mar 7, 2024, 9:00:01 AM" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "5/30/50, 2:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "Jul 2, 2001, 9:14:15 PM" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "7/16/69, 10:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "May 29, 1984, 3:53:00 PM" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "7/16/69, 10:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "May 30, 2030, 12:47:00 AM" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1/12/70, 11:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "Jul 16, 1969, 8:00:00 AM" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1/12/70, 11:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "Jan 12, 1970, 10:46:40 PM" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "9/9/01, 11:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "Sep 9, 2001, 9:46:40 AM" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "9/9/01, 11:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "Mar 17, 2024, 3:30:00 AM" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "3/7/24, 6:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "Jul 2, 2001, 5:44:15 PM" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "3/7/24, 6:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "May 29, 1984, 11:23:00 AM" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "7/3/01, 6:14 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "May 29, 2050, 8:17:00 PM" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "7/3/01, 6:14 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "Jul 16, 1969, 3:30:00 AM" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "5/30/84, 12:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "Jan 12, 1970, 5:16:40 PM" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "5/30/84, 12:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "Sep 9, 2001, 6:16:40 AM" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "5/30/30, 9:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "Mar 7, 2024, 11:30:01 AM" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "5/30/30, 9:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "Jul 3, 2001, 12:44:15 AM" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "7/16/69, 5:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "May 29, 1984, 6:23:00 PM" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "7/16/69, 5:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "May 30, 2030, 3:17:00 AM" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1/13/70, 7:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "Jul 16, 1969, 10:30:00 AM" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1/13/70, 7:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "Jan 13, 1970, 1:16:40 AM" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "9/9/01, 6:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "Sep 9, 2001, 1:16:40 PM" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "9/9/01, 6:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "Mar 17, 2024, 2:00:00 AM" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "3/17/24, 9:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "Jul 2, 2001, 4:14:15 PM" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "3/17/24, 9:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "May 29, 1984, 11:53:00 AM" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "7/2/01, 10:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "May 29, 2050, 7:47:00 PM" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "7/2/01, 10:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "Jul 16, 1969, 3:00:00 AM" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "5/29/84, 4:53 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "Jan 12, 1970, 4:46:40 PM" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "5/29/84, 4:53 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "Sep 9, 2001, 4:46:40 AM" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "5/30/50, 1:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "Mar 7, 2024, 10:00:01 AM" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "5/30/50, 1:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "Jul 2, 2001, 11:14:15 PM" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "7/16/69, 9:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "May 29, 1984, 6:53:00 PM" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "7/16/69, 9:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "May 30, 2030, 2:47:00 AM" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1/12/70, 10:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "Jul 16, 1969, 10:00:00 AM" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1/12/70, 10:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "Jan 13, 1970, 12:46:40 AM" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "9/9/01, 10:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "Sep 9, 2001, 11:46:40 AM" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "9/9/01, 10:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "Mar 17, 2024, 10:00:00 AM" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "3/7/24, 5:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "Jul 2, 2001, 11:14:15 PM" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "3/7/24, 5:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "May 29, 1984, 5:53:00 PM" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "7/3/01, 5:14 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "May 30, 2050, 2:47:00 AM" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "7/3/01, 5:14 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "Jul 16, 1969, 10:00:00 AM" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "5/29/84, 11:53 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "Jan 12, 1970, 11:46:40 PM" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "5/29/84, 11:53 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "Sep 9, 2001, 11:46:40 AM" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "5/30/30, 8:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "Mar 7, 2024, 6:00:01 PM" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "5/30/30, 8:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "Jul 3, 2001, 6:14:15 AM" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "7/16/69, 4:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "May 30, 1984, 12:53:00 AM" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "7/16/69, 4:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "May 30, 2030, 9:47:00 AM" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1/13/70, 6:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "Jul 16, 1969, 5:00:00 PM" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1/13/70, 6:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "Jan 13, 1970, 7:46:40 AM" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "9/9/01, 5:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "Sep 9, 2001, 6:46:40 PM" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "9/9/01, 5:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "Mar 17, 2024, 9:00:00 AM" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "3/16/24, 9:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "Jul 2, 2001, 10:14:15 PM" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "3/16/24, 9:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "May 29, 1984, 4:53:00 PM" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "7/2/01, 10:14 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "May 30, 2050, 1:47:00 AM" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "7/2/01, 10:14 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "Jul 16, 1969, 9:00:00 AM" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "5/29/84, 4:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "Jan 12, 1970, 10:46:40 PM" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "5/29/84, 4:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "Sep 9, 2001, 10:46:40 AM" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "5/29/50, 1:47 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "Mar 7, 2024, 5:00:01 PM" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "5/29/50, 1:47 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "Jul 3, 2001, 5:14:15 AM" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "7/15/69, 9:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "May 29, 1984, 11:53:00 PM" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "7/15/69, 9:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "May 30, 2030, 8:47:00 AM" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1/12/70, 10:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "Jul 16, 1969, 4:00:00 PM" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1/12/70, 10:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "Jan 13, 1970, 6:46:40 AM" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "9/8/01, 10:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "Sep 9, 2001, 5:46:40 PM" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "9/8/01, 10:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "Mar 16, 2024, 9:00:00 PM" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "3/7/24, 5:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "Jul 2, 2001, 10:14:15 AM" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "3/7/24, 5:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "May 29, 1984, 4:53:00 AM" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "7/2/01, 5:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "May 29, 2050, 1:47:00 PM" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "7/2/01, 5:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "Jul 15, 1969, 9:00:00 PM" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "5/29/84, 11:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "Jan 12, 1970, 10:46:40 AM" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "5/29/84, 11:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "Sep 8, 2001, 10:46:40 PM" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "5/29/30, 8:47 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "Mar 7, 2024, 5:00:01 AM" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "5/29/30, 8:47 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "Jul 2, 2001, 5:14:15 PM" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "7/16/69, 4:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "May 29, 1984, 11:53:00 AM" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "7/16/69, 4:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "May 29, 2030, 8:47:00 PM" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1/12/70, 6:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "Jul 16, 1969, 4:00:00 AM" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1/12/70, 6:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "Jan 12, 1970, 6:46:40 PM" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "9/9/01, 5:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-US", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "Sep 9, 2001, 5:46:40 AM" + "dateTimeFormatType": "atTime", + "expected": "9/9/01, 5:46 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "March 16, 2024, 5:00:00 PM PDT" + "dateTimeFormatType": "standard", + "expected": "Mar 16, 2024, 5:00:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "July 2, 2001, 6:14:15 AM PDT" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Mar 16, 2024, 5:00:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "May 29, 1984, 12:53:00 AM PDT" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 6:14:15 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "May 29, 2050, 9:47:00 AM PDT" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 6:14:15 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "July 15, 1969, 5:00:00 PM GMT-7" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 12:53:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "January 12, 1970, 5:46:40 AM PST" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 12:53:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "September 8, 2001, 6:46:40 PM PDT" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2050, 9:47:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "March 7, 2024, 12:00:01 AM PST" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2050, 9:47:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "July 2, 2001, 1:14:15 PM PDT" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Jul 15, 1969, 5:00:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "May 29, 1984, 7:53:00 AM PDT" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Jul 15, 1969, 5:00:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "May 29, 2030, 4:47:00 PM PDT" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970, 5:46:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "July 16, 1969, 12:00:00 AM GMT-7" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Jan 12, 1970, 5:46:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "January 12, 1970, 1:46:40 PM PST" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Sep 8, 2001, 6:46:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "September 9, 2001, 1:46:40 AM PDT" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Sep 8, 2001, 6:46:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "March 17, 2024, 1:00:00 AM GMT+1" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Mar 7, 2024, 12:00:01 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "July 2, 2001, 2:14:15 PM GMT+1" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Mar 7, 2024, 12:00:01 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "May 29, 1984, 8:53:00 AM GMT+1" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 1:14:15 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "May 29, 2050, 5:47:00 PM GMT+1" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 1:14:15 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "July 16, 1969, 1:00:00 AM GMT+1" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 7:53:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "January 12, 1970, 2:46:40 PM GMT+1" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 7:53:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "September 9, 2001, 2:46:40 AM GMT+1" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2030, 4:47:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "March 7, 2024, 9:00:01 AM GMT+1" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2030, 4:47:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "July 2, 2001, 9:14:15 PM GMT+1" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 12:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "May 29, 1984, 3:53:00 PM GMT+1" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 12:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "May 30, 2030, 12:47:00 AM GMT+1" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970, 1:46:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "July 16, 1969, 8:00:00 AM GMT+1" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Jan 12, 1970, 1:46:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "January 12, 1970, 10:46:40 PM GMT+1" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 1:46:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "September 9, 2001, 9:46:40 AM GMT+1" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 1:46:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "March 17, 2024, 3:30:00 AM GMT+3:30" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Mar 17, 2024, 1:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "July 2, 2001, 5:44:15 PM GMT+4:30" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Mar 17, 2024, 1:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "May 29, 1984, 11:23:00 AM GMT+3:30" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 2:14:15 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "May 29, 2050, 8:17:00 PM GMT+3:30" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 2:14:15 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "July 16, 1969, 3:30:00 AM GMT+3:30" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 8:53:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "January 12, 1970, 5:16:40 PM GMT+3:30" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 8:53:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "September 9, 2001, 6:16:40 AM GMT+4:30" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2050, 5:47:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "March 7, 2024, 11:30:01 AM GMT+3:30" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2050, 5:47:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "July 3, 2001, 12:44:15 AM GMT+4:30" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 1:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "May 29, 1984, 6:23:00 PM GMT+3:30" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 1:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "May 30, 2030, 3:17:00 AM GMT+3:30" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970, 2:46:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "July 16, 1969, 10:30:00 AM GMT+3:30" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Jan 12, 1970, 2:46:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "January 13, 1970, 1:16:40 AM GMT+3:30" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 2:46:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "September 9, 2001, 1:16:40 PM GMT+4:30" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 2:46:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "March 17, 2024, 2:00:00 AM GMT+2" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Mar 7, 2024, 9:00:01 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "July 2, 2001, 4:14:15 PM GMT+3" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Mar 7, 2024, 9:00:01 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "May 29, 1984, 11:53:00 AM GMT+4" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 9:14:15 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "May 29, 2050, 7:47:00 PM GMT+3" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 9:14:15 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "July 16, 1969, 3:00:00 AM GMT+3" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 3:53:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "January 12, 1970, 4:46:40 PM GMT+3" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 3:53:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "September 9, 2001, 4:46:40 AM GMT+3" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "May 30, 2030, 12:47:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "March 7, 2024, 10:00:01 AM GMT+2" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "May 30, 2030, 12:47:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "July 2, 2001, 11:14:15 PM GMT+3" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 8:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "May 29, 1984, 6:53:00 PM GMT+4" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 8:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "May 30, 2030, 2:47:00 AM GMT+3" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970, 10:46:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "July 16, 1969, 10:00:00 AM GMT+3" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Jan 12, 1970, 10:46:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "January 13, 1970, 12:46:40 AM GMT+3" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 9:46:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "September 9, 2001, 11:46:40 AM GMT+3" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 9:46:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "March 17, 2024, 10:00:00 AM GMT+10" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Mar 17, 2024, 3:30:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "July 2, 2001, 11:14:15 PM GMT+10" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Mar 17, 2024, 3:30:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "May 29, 1984, 5:53:00 PM GMT+10" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 5:44:15 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "May 30, 2050, 2:47:00 AM GMT+10" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 5:44:15 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "July 16, 1969, 10:00:00 AM GMT+10" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 11:23:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "January 12, 1970, 11:46:40 PM GMT+10" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 11:23:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "September 9, 2001, 11:46:40 AM GMT+10" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2050, 8:17:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "March 7, 2024, 6:00:01 PM GMT+10" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2050, 8:17:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "July 3, 2001, 6:14:15 AM GMT+10" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 3:30:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "May 30, 1984, 12:53:00 AM GMT+10" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 3:30:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "May 30, 2030, 9:47:00 AM GMT+10" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970, 5:16:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "July 16, 1969, 5:00:00 PM GMT+10" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Jan 12, 1970, 5:16:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "January 13, 1970, 7:46:40 AM GMT+10" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 6:16:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "September 9, 2001, 6:46:40 PM GMT+10" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 6:16:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "March 17, 2024, 9:00:00 AM GMT+9" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Mar 7, 2024, 11:30:01 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "July 2, 2001, 10:14:15 PM GMT+9" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Mar 7, 2024, 11:30:01 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "May 29, 1984, 4:53:00 PM GMT+9" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Jul 3, 2001, 12:44:15 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "May 30, 2050, 1:47:00 AM GMT+9" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Jul 3, 2001, 12:44:15 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "July 16, 1969, 9:00:00 AM GMT+9" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 6:23:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "January 12, 1970, 10:46:40 PM GMT+9" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 6:23:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "September 9, 2001, 10:46:40 AM GMT+9" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "May 30, 2030, 3:17:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "March 7, 2024, 5:00:01 PM GMT+9" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "May 30, 2030, 3:17:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "July 3, 2001, 5:14:15 AM GMT+9" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 10:30:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "May 29, 1984, 11:53:00 PM GMT+9" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 10:30:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "May 30, 2030, 8:47:00 AM GMT+9" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Jan 13, 1970, 1:16:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "July 16, 1969, 4:00:00 PM GMT+9" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Jan 13, 1970, 1:16:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "January 13, 1970, 6:46:40 AM GMT+9" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 1:16:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "September 9, 2001, 5:46:40 PM GMT+9" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 1:16:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "March 16, 2024, 9:00:00 PM GMT-3" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Mar 17, 2024, 2:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "July 2, 2001, 10:14:15 AM GMT-3" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Mar 17, 2024, 2:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "May 29, 1984, 4:53:00 AM GMT-3" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 4:14:15 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "May 29, 2050, 1:47:00 PM GMT-3" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 4:14:15 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "July 15, 1969, 9:00:00 PM GMT-3" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 11:53:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "January 12, 1970, 10:46:40 AM GMT-3" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 11:53:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "September 8, 2001, 10:46:40 PM GMT-3" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2050, 7:47:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "March 7, 2024, 5:00:01 AM GMT-3" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2050, 7:47:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "July 2, 2001, 5:14:15 PM GMT-3" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 3:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "May 29, 1984, 11:53:00 AM GMT-3" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 3:00:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "May 29, 2030, 8:47:00 PM GMT-3" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970, 4:46:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "July 16, 1969, 4:00:00 AM GMT-3" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Jan 12, 1970, 4:46:40 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "January 12, 1970, 6:46:40 PM GMT-3" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 4:46:40 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "September 9, 2001, 5:46:40 AM GMT-3" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 4:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "Saturday, March 16, 2024, 5:00:00 PM Pacific Daylight Time" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Mar 7, 2024, 10:00:01 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "Monday, July 2, 2001, 6:14:15 AM Pacific Daylight Time" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Mar 7, 2024, 10:00:01 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "Tuesday, May 29, 1984, 12:53:00 AM Pacific Daylight Time" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 11:14:15 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "Sunday, May 29, 2050, 9:47:00 AM Pacific Daylight Time" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 11:14:15 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "Tuesday, July 15, 1969, 5:00:00 PM GMT-07:00" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 6:53:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "Monday, January 12, 1970, 5:46:40 AM Pacific Standard Time" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 6:53:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "Saturday, September 8, 2001, 6:46:40 PM Pacific Daylight Time" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "May 30, 2030, 2:47:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "Thursday, March 7, 2024, 12:00:01 AM Pacific Standard Time" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "May 30, 2030, 2:47:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "Monday, July 2, 2001, 1:14:15 PM Pacific Daylight Time" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 10:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "Tuesday, May 29, 1984, 7:53:00 AM Pacific Daylight Time" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 10:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "Wednesday, May 29, 2030, 4:47:00 PM Pacific Daylight Time" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Jan 13, 1970, 12:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "Wednesday, July 16, 1969, 12:00:00 AM GMT-07:00" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Jan 13, 1970, 12:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "Monday, January 12, 1970, 1:46:40 PM Pacific Standard Time" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 11:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "Sunday, September 9, 2001, 1:46:40 AM Pacific Daylight Time" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 11:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "Sunday, March 17, 2024, 1:00:00 AM West Africa Standard Time" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Mar 17, 2024, 10:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "Monday, July 2, 2001, 2:14:15 PM West Africa Standard Time" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Mar 17, 2024, 10:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "Tuesday, May 29, 1984, 8:53:00 AM West Africa Standard Time" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 11:14:15 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "Sunday, May 29, 2050, 5:47:00 PM West Africa Standard Time" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 11:14:15 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "Wednesday, July 16, 1969, 1:00:00 AM GMT+01:00" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 5:53:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "Monday, January 12, 1970, 2:46:40 PM West Africa Standard Time" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 5:53:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "Sunday, September 9, 2001, 2:46:40 AM West Africa Standard Time" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "May 30, 2050, 2:47:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "Thursday, March 7, 2024, 9:00:01 AM West Africa Standard Time" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "May 30, 2050, 2:47:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "Monday, July 2, 2001, 9:14:15 PM West Africa Standard Time" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 10:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "Tuesday, May 29, 1984, 3:53:00 PM West Africa Standard Time" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 10:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "Thursday, May 30, 2030, 12:47:00 AM West Africa Standard Time" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970, 11:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "Wednesday, July 16, 1969, 8:00:00 AM GMT+01:00" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Jan 12, 1970, 11:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "Monday, January 12, 1970, 10:46:40 PM West Africa Standard Time" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 11:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "Sunday, September 9, 2001, 9:46:40 AM West Africa Standard Time" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 11:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "Sunday, March 17, 2024, 3:30:00 AM Iran Standard Time" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Mar 7, 2024, 6:00:01 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "Monday, July 2, 2001, 5:44:15 PM Iran Daylight Time" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Mar 7, 2024, 6:00:01 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "Tuesday, May 29, 1984, 11:23:00 AM Iran Standard Time" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Jul 3, 2001, 6:14:15 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "Sunday, May 29, 2050, 8:17:00 PM Iran Standard Time" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Jul 3, 2001, 6:14:15 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "Wednesday, July 16, 1969, 3:30:00 AM GMT+03:30" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "May 30, 1984, 12:53:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "Monday, January 12, 1970, 5:16:40 PM Iran Standard Time" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "May 30, 1984, 12:53:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "Sunday, September 9, 2001, 6:16:40 AM Iran Daylight Time" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "May 30, 2030, 9:47:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "Thursday, March 7, 2024, 11:30:01 AM Iran Standard Time" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "May 30, 2030, 9:47:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "Tuesday, July 3, 2001, 12:44:15 AM Iran Daylight Time" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 5:00:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "Tuesday, May 29, 1984, 6:23:00 PM Iran Standard Time" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 5:00:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "Thursday, May 30, 2030, 3:17:00 AM Iran Standard Time" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Jan 13, 1970, 7:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "Wednesday, July 16, 1969, 10:30:00 AM GMT+03:30" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Jan 13, 1970, 7:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "Tuesday, January 13, 1970, 1:16:40 AM Iran Standard Time" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 6:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "Sunday, September 9, 2001, 1:16:40 PM Iran Daylight Time" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 6:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "Sunday, March 17, 2024, 2:00:00 AM Eastern European Standard Time" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Mar 17, 2024, 9:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "Monday, July 2, 2001, 4:14:15 PM Eastern European Summer Time" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Mar 17, 2024, 9:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "Tuesday, May 29, 1984, 11:53:00 AM Moscow Summer Time" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 10:14:15 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "Sunday, May 29, 2050, 7:47:00 PM Eastern European Summer Time" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 10:14:15 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "Wednesday, July 16, 1969, 3:00:00 AM GMT+03:00" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 4:53:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "Monday, January 12, 1970, 4:46:40 PM Moscow Standard Time" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 4:53:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "Sunday, September 9, 2001, 4:46:40 AM Eastern European Summer Time" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "May 30, 2050, 1:47:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "Thursday, March 7, 2024, 10:00:01 AM Eastern European Standard Time" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "May 30, 2050, 1:47:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "Monday, July 2, 2001, 11:14:15 PM Eastern European Summer Time" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 9:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "Tuesday, May 29, 1984, 6:53:00 PM Moscow Summer Time" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 9:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "Thursday, May 30, 2030, 2:47:00 AM Eastern European Summer Time" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970, 10:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "Wednesday, July 16, 1969, 10:00:00 AM GMT+03:00" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Jan 12, 1970, 10:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "Tuesday, January 13, 1970, 12:46:40 AM Moscow Standard Time" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 10:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "Sunday, September 9, 2001, 11:46:40 AM Eastern European Summer Time" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 10:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "Sunday, March 17, 2024, 10:00:00 AM Australian Eastern Standard Time" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Mar 7, 2024, 5:00:01 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "Monday, July 2, 2001, 11:14:15 PM Australian Eastern Standard Time" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Mar 7, 2024, 5:00:01 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "Tuesday, May 29, 1984, 5:53:00 PM Australian Eastern Standard Time" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Jul 3, 2001, 5:14:15 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "Monday, May 30, 2050, 2:47:00 AM Australian Eastern Standard Time" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Jul 3, 2001, 5:14:15 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "Wednesday, July 16, 1969, 10:00:00 AM GMT+10:00" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 11:53:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "Monday, January 12, 1970, 11:46:40 PM Australian Eastern Standard Time" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 11:53:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "Sunday, September 9, 2001, 11:46:40 AM Australian Eastern Standard Time" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "May 30, 2030, 8:47:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "Thursday, March 7, 2024, 6:00:01 PM Australian Eastern Standard Time" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "May 30, 2030, 8:47:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "Tuesday, July 3, 2001, 6:14:15 AM Australian Eastern Standard Time" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 4:00:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "Wednesday, May 30, 1984, 12:53:00 AM Australian Eastern Standard Time" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 4:00:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "Thursday, May 30, 2030, 9:47:00 AM Australian Eastern Standard Time" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Jan 13, 1970, 6:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "Wednesday, July 16, 1969, 5:00:00 PM GMT+10:00" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Jan 13, 1970, 6:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "Tuesday, January 13, 1970, 7:46:40 AM Australian Eastern Standard Time" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 5:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "Sunday, September 9, 2001, 6:46:40 PM Australian Eastern Standard Time" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 5:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "Sunday, March 17, 2024, 9:00:00 AM Palau Time" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Mar 16, 2024, 9:00:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "Monday, July 2, 2001, 10:14:15 PM Palau Time" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Mar 16, 2024, 9:00:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "Tuesday, May 29, 1984, 4:53:00 PM Palau Time" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 10:14:15 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "Monday, May 30, 2050, 1:47:00 AM Palau Time" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 10:14:15 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "Wednesday, July 16, 1969, 9:00:00 AM GMT+09:00" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 4:53:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "Monday, January 12, 1970, 10:46:40 PM Palau Time" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 4:53:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "Sunday, September 9, 2001, 10:46:40 AM Palau Time" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2050, 1:47:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "Thursday, March 7, 2024, 5:00:01 PM Palau Time" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2050, 1:47:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "Tuesday, July 3, 2001, 5:14:15 AM Palau Time" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Jul 15, 1969, 9:00:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "Tuesday, May 29, 1984, 11:53:00 PM Palau Time" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Jul 15, 1969, 9:00:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "Thursday, May 30, 2030, 8:47:00 AM Palau Time" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970, 10:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "Wednesday, July 16, 1969, 4:00:00 PM GMT+09:00" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Jan 12, 1970, 10:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "Tuesday, January 13, 1970, 6:46:40 AM Palau Time" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Sep 8, 2001, 10:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "Sunday, September 9, 2001, 5:46:40 PM Palau Time" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Sep 8, 2001, 10:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "Saturday, March 16, 2024, 9:00:00 PM Uruguay Standard Time" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Mar 7, 2024, 5:00:01 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "Monday, July 2, 2001, 10:14:15 AM Uruguay Standard Time" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Mar 7, 2024, 5:00:01 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "Tuesday, May 29, 1984, 4:53:00 AM Uruguay Standard Time" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001, 5:14:15 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "Sunday, May 29, 2050, 1:47:00 PM Uruguay Standard Time" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Jul 2, 2001, 5:14:15 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "Tuesday, July 15, 1969, 9:00:00 PM GMT-03:00" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 11:53:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "Monday, January 12, 1970, 10:46:40 AM Uruguay Standard Time" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984, 11:53:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "Saturday, September 8, 2001, 10:46:40 PM Uruguay Standard Time" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2030, 8:47:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "Thursday, March 7, 2024, 5:00:01 AM Uruguay Standard Time" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2030, 8:47:00 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "Monday, July 2, 2001, 5:14:15 PM Uruguay Standard Time" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969, 4:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "Tuesday, May 29, 1984, 11:53:00 AM Uruguay Standard Time" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Jul 16, 1969, 4:00:00 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "Wednesday, May 29, 2030, 8:47:00 PM Uruguay Standard Time" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970, 6:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "Wednesday, July 16, 1969, 4:00:00 AM GMT-03:00" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Jan 12, 1970, 6:46:40 PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "Monday, January 12, 1970, 6:46:40 PM Uruguay Standard Time" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001, 5:46:40 AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", "locale": "en-US", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "Sunday, September 9, 2001, 5:46:40 AM Uruguay Standard Time" + "dateTimeFormatType": "atTime", + "expected": "Sep 9, 2001, 5:46:40 AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "Saturday, March 16, 2024, 5:00 PM" + "dateTimeFormatType": "standard", + "expected": "March 16, 2024, 5:00:00 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "Monday, July 2, 2001, 6:14 AM" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "March 16, 2024 at 5:00:00 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "Tuesday, May 29, 1984, 12:53 AM" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "July 2, 2001, 6:14:15 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "Sunday, May 29, 2050, 9:47 AM" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "July 2, 2001 at 6:14:15 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "Tuesday, July 15, 1969, 5:00 PM" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 12:53:00 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "Monday, January 12, 1970, 5:46 AM" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984 at 12:53:00 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "Saturday, September 8, 2001, 6:46 PM" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2050, 9:47:00 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "Thursday, March 7, 2024, 12:00 AM" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2050 at 9:47:00 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "Monday, July 2, 2001, 1:14 PM" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "July 15, 1969, 5:00:00 PM GMT-7" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "Tuesday, May 29, 1984, 7:53 AM" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "July 15, 1969 at 5:00:00 PM GMT-7" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "Wednesday, May 29, 2030, 4:47 PM" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "January 12, 1970, 5:46:40 AM PST" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "Wednesday, July 16, 1969, 12:00 AM" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "January 12, 1970 at 5:46:40 AM PST" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "Monday, January 12, 1970, 1:46 PM" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "September 8, 2001, 6:46:40 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "Sunday, September 9, 2001, 1:46 AM" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "September 8, 2001 at 6:46:40 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "Sunday, March 17, 2024, 1:00 AM" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "March 7, 2024, 12:00:01 AM PST" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "Monday, July 2, 2001, 2:14 PM" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "March 7, 2024 at 12:00:01 AM PST" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "Tuesday, May 29, 1984, 8:53 AM" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "July 2, 2001, 1:14:15 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "Sunday, May 29, 2050, 5:47 PM" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "July 2, 2001 at 1:14:15 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "Wednesday, July 16, 1969, 1:00 AM" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 7:53:00 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "Monday, January 12, 1970, 2:46 PM" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984 at 7:53:00 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "Sunday, September 9, 2001, 2:46 AM" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2030, 4:47:00 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "Thursday, March 7, 2024, 9:00 AM" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2030 at 4:47:00 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "Monday, July 2, 2001, 9:14 PM" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "July 16, 1969, 12:00:00 AM GMT-7" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "Tuesday, May 29, 1984, 3:53 PM" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "July 16, 1969 at 12:00:00 AM GMT-7" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "Thursday, May 30, 2030, 12:47 AM" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "January 12, 1970, 1:46:40 PM PST" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "Wednesday, July 16, 1969, 8:00 AM" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "January 12, 1970 at 1:46:40 PM PST" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "Monday, January 12, 1970, 10:46 PM" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "September 9, 2001, 1:46:40 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "Sunday, September 9, 2001, 9:46 AM" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "September 9, 2001 at 1:46:40 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "Sunday, March 17, 2024, 3:30 AM" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "March 17, 2024, 1:00:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "Monday, July 2, 2001, 5:44 PM" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "March 17, 2024 at 1:00:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "Tuesday, May 29, 1984, 11:23 AM" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "July 2, 2001, 2:14:15 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "Sunday, May 29, 2050, 8:17 PM" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "July 2, 2001 at 2:14:15 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "Wednesday, July 16, 1969, 3:30 AM" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 8:53:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "Monday, January 12, 1970, 5:16 PM" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984 at 8:53:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "Sunday, September 9, 2001, 6:16 AM" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2050, 5:47:00 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "Thursday, March 7, 2024, 11:30 AM" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2050 at 5:47:00 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "Tuesday, July 3, 2001, 12:44 AM" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "July 16, 1969, 1:00:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "Tuesday, May 29, 1984, 6:23 PM" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "July 16, 1969 at 1:00:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "Thursday, May 30, 2030, 3:17 AM" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "January 12, 1970, 2:46:40 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "Wednesday, July 16, 1969, 10:30 AM" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "January 12, 1970 at 2:46:40 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "Tuesday, January 13, 1970, 1:16 AM" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "September 9, 2001, 2:46:40 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "Sunday, September 9, 2001, 1:16 PM" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "September 9, 2001 at 2:46:40 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "Sunday, March 17, 2024, 2:00 AM" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "March 7, 2024, 9:00:01 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "Monday, July 2, 2001, 4:14 PM" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "March 7, 2024 at 9:00:01 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "Tuesday, May 29, 1984, 11:53 AM" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "July 2, 2001, 9:14:15 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "Sunday, May 29, 2050, 7:47 PM" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "July 2, 2001 at 9:14:15 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "Wednesday, July 16, 1969, 3:00 AM" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 3:53:00 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "Monday, January 12, 1970, 4:46 PM" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984 at 3:53:00 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "Sunday, September 9, 2001, 4:46 AM" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "May 30, 2030, 12:47:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "Thursday, March 7, 2024, 10:00 AM" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "May 30, 2030 at 12:47:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "Monday, July 2, 2001, 11:14 PM" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "July 16, 1969, 8:00:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "Tuesday, May 29, 1984, 6:53 PM" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "July 16, 1969 at 8:00:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "Thursday, May 30, 2030, 2:47 AM" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "January 12, 1970, 10:46:40 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "Wednesday, July 16, 1969, 10:00 AM" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "January 12, 1970 at 10:46:40 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "Tuesday, January 13, 1970, 12:46 AM" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "September 9, 2001, 9:46:40 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "Sunday, September 9, 2001, 11:46 AM" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "September 9, 2001 at 9:46:40 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "Sunday, March 17, 2024, 10:00 AM" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "March 17, 2024, 3:30:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "Monday, July 2, 2001, 11:14 PM" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "March 17, 2024 at 3:30:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "Tuesday, May 29, 1984, 5:53 PM" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "July 2, 2001, 5:44:15 PM GMT+4:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "Monday, May 30, 2050, 2:47 AM" + "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": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "Wednesday, July 16, 1969, 10:00 AM" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 11:23:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "Monday, January 12, 1970, 11:46 PM" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984 at 11:23:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "Sunday, September 9, 2001, 11:46 AM" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2050, 8:17:00 PM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "Thursday, March 7, 2024, 6:00 PM" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2050 at 8:17:00 PM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "Tuesday, July 3, 2001, 6:14 AM" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "July 16, 1969, 3:30:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "Wednesday, May 30, 1984, 12:53 AM" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "July 16, 1969 at 3:30:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "Thursday, May 30, 2030, 9:47 AM" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "January 12, 1970, 5:16:40 PM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "Wednesday, July 16, 1969, 5:00 PM" + "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": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "Tuesday, January 13, 1970, 7:46 AM" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "September 9, 2001, 6:16:40 AM GMT+4:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "Sunday, September 9, 2001, 6:46 PM" + "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": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "Sunday, March 17, 2024, 9:00 AM" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "March 7, 2024, 11:30:01 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "Monday, July 2, 2001, 10:14 PM" + "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": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "Tuesday, May 29, 1984, 4:53 PM" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "July 3, 2001, 12:44:15 AM GMT+4:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "Monday, May 30, 2050, 1:47 AM" + "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": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "Wednesday, July 16, 1969, 9:00 AM" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 6:23:00 PM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "Monday, January 12, 1970, 10:46 PM" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984 at 6:23:00 PM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "Sunday, September 9, 2001, 10:46 AM" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "May 30, 2030, 3:17:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "Thursday, March 7, 2024, 5:00 PM" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "May 30, 2030 at 3:17:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "Tuesday, July 3, 2001, 5:14 AM" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "July 16, 1969, 10:30:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "Tuesday, May 29, 1984, 11:53 PM" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "July 16, 1969 at 10:30:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "Thursday, May 30, 2030, 8:47 AM" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "January 13, 1970, 1:16:40 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "Wednesday, July 16, 1969, 4:00 PM" + "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": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "Tuesday, January 13, 1970, 6:46 AM" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "September 9, 2001, 1:16:40 PM GMT+4:30" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "Sunday, September 9, 2001, 5:46 PM" + "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": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "Saturday, March 16, 2024, 9:00 PM" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "March 17, 2024, 2:00:00 AM GMT+2" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "Monday, July 2, 2001, 10:14 AM" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "March 17, 2024 at 2:00:00 AM GMT+2" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "Tuesday, May 29, 1984, 4:53 AM" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "July 2, 2001, 4:14:15 PM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "Sunday, May 29, 2050, 1:47 PM" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "July 2, 2001 at 4:14:15 PM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "Tuesday, July 15, 1969, 9:00 PM" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "May 29, 1984, 11:53:00 AM GMT+4" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "Monday, January 12, 1970, 10:46 AM" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 1984 at 11:53:00 AM GMT+4" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "Saturday, September 8, 2001, 10:46 PM" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "May 29, 2050, 7:47:00 PM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "Thursday, March 7, 2024, 5:00 AM" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "May 29, 2050 at 7:47:00 PM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "Monday, July 2, 2001, 5:14 PM" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "July 16, 1969, 3:00:00 AM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "Tuesday, May 29, 1984, 11:53 AM" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "July 16, 1969 at 3:00:00 AM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "Wednesday, May 29, 2030, 8:47 PM" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "January 12, 1970, 4:46:40 PM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "Wednesday, July 16, 1969, 4:00 AM" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "January 12, 1970 at 4:46:40 PM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "Monday, January 12, 1970, 6:46 PM" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "September 9, 2001, 4:46:40 AM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "Sunday, September 9, 2001, 5:46 AM" + "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-16T17:00-07:00[America/Los_Angeles]", - "expected": "March 16, 2024, 5:00:00 PM PDT" + "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": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "July 2, 2001, 6:14:15 AM PDT" + "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": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "May 29, 1984, 12:53:00 AM PDT" + "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": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "May 29, 2050, 9:47:00 AM PDT" + "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": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "July 15, 1969, 5:00:00 PM GMT-7" + "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": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "January 12, 1970, 5:46:40 AM PST" + "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": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "September 8, 2001, 6:46:40 PM PDT" + "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": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "March 7, 2024, 12:00:01 AM PST" + "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": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "July 2, 2001, 1:14:15 PM PDT" + "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": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "May 29, 1984, 7:53:00 AM PDT" + "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": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "May 29, 2030, 4:47:00 PM PDT" + "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": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "July 16, 1969, 12:00:00 AM GMT-7" + "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": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "January 12, 1970, 1:46:40 PM PST" + "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-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "September 9, 2001, 1:46:40 AM PDT" + "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-17T01:00+01:00[Africa/Luanda]", - "expected": "March 17, 2024, 1:00:00 AM GMT+1" + "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": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "July 2, 2001, 2:14:15 PM GMT+1" + "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": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "May 29, 1984, 8:53:00 AM GMT+1" + "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": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "May 29, 2050, 5:47:00 PM GMT+1" + "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": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "July 16, 1969, 1:00:00 AM GMT+1" + "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": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "January 12, 1970, 2:46:40 PM GMT+1" + "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": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "September 9, 2001, 2:46:40 AM GMT+1" + "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": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "March 7, 2024, 9:00:01 AM GMT+1" + "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": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "July 2, 2001, 9:14:15 PM GMT+1" + "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": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "May 29, 1984, 3:53:00 PM GMT+1" + "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": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "May 30, 2030, 12:47:00 AM GMT+1" + "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": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "July 16, 1969, 8:00:00 AM GMT+1" + "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": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "January 12, 1970, 10:46:40 PM GMT+1" + "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-09T09:46:40+01:00[Africa/Luanda]", - "expected": "September 9, 2001, 9:46:40 AM GMT+1" + "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-17T03:30+03:30[Asia/Tehran]", - "expected": "March 17, 2024, 3:30:00 AM GMT+3:30" + "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": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "July 2, 2001, 5:44:15 PM GMT+4:30" + "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": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "May 29, 1984, 11:23:00 AM GMT+3:30" + "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": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "May 29, 2050, 8:17:00 PM GMT+3:30" + "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": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "July 16, 1969, 3:30:00 AM GMT+3:30" + "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": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "January 12, 1970, 5:16:40 PM GMT+3:30" + "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": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "September 9, 2001, 6:16:40 AM GMT+4:30" + "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": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "March 7, 2024, 11:30:01 AM GMT+3:30" + "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": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "July 3, 2001, 12:44:15 AM GMT+4:30" + "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": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "May 29, 1984, 6:23:00 PM GMT+3:30" + "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": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "May 30, 2030, 3:17:00 AM GMT+3:30" + "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": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "July 16, 1969, 10:30:00 AM GMT+3:30" + "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": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "January 13, 1970, 1:16:40 AM GMT+3:30" + "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-09T13:16:40+04:30[Asia/Tehran]", - "expected": "September 9, 2001, 1:16:40 PM GMT+4:30" + "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-17T02:00+02:00[Europe/Kiev]", - "expected": "March 17, 2024, 2:00:00 AM GMT+2" + "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": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "July 2, 2001, 4:14:15 PM GMT+3" + "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": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "May 29, 1984, 11:53:00 AM GMT+4" + "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": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "May 29, 2050, 7:47:00 PM GMT+3" + "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": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "July 16, 1969, 3:00:00 AM GMT+3" + "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": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "January 12, 1970, 4:46:40 PM GMT+3" + "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": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "September 9, 2001, 4:46:40 AM GMT+3" + "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": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "March 7, 2024, 10:00:01 AM GMT+2" + "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": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "July 2, 2001, 11:14:15 PM GMT+3" + "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": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "May 29, 1984, 6:53:00 PM GMT+4" + "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": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "May 30, 2030, 2:47:00 AM GMT+3" + "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": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "July 16, 1969, 10:00:00 AM GMT+3" + "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": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "January 13, 1970, 12:46:40 AM GMT+3" + "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-09T11:46:40+03:00[Europe/Kiev]", - "expected": "September 9, 2001, 11:46:40 AM GMT+3" + "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-17T10:00+10:00[Australia/Brisbane]", - "expected": "March 17, 2024, 10:00:00 AM GMT+10" + "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": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "July 2, 2001, 11:14:15 PM GMT+10" + "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": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "May 29, 1984, 5:53:00 PM GMT+10" + "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": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "May 30, 2050, 2:47:00 AM GMT+10" + "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": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "July 16, 1969, 10:00:00 AM GMT+10" + "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": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "January 12, 1970, 11:46:40 PM GMT+10" + "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": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "September 9, 2001, 11:46:40 AM GMT+10" + "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": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "March 7, 2024, 6:00:01 PM GMT+10" + "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": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "July 3, 2001, 6:14:15 AM GMT+10" + "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": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "May 30, 1984, 12:53:00 AM GMT+10" + "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": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "May 30, 2030, 9:47:00 AM GMT+10" + "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": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "July 16, 1969, 5:00:00 PM GMT+10" + "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": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "January 13, 1970, 7:46:40 AM GMT+10" + "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-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "September 9, 2001, 6:46:40 PM GMT+10" + "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-17T09:00+09:00[Pacific/Palau]", - "expected": "March 17, 2024, 9:00:00 AM GMT+9" + "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": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "July 2, 2001, 10:14:15 PM GMT+9" + "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": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "May 29, 1984, 4:53:00 PM GMT+9" + "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": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "May 30, 2050, 1:47:00 AM GMT+9" + "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": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "July 16, 1969, 9:00:00 AM GMT+9" + "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": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "January 12, 1970, 10:46:40 PM GMT+9" + "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": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "September 9, 2001, 10:46:40 AM GMT+9" + "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": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "March 7, 2024, 5:00:01 PM GMT+9" + "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": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "July 3, 2001, 5:14:15 AM GMT+9" + "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": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "May 29, 1984, 11:53:00 PM GMT+9" + "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": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "May 30, 2030, 8:47:00 AM GMT+9" + "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": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "July 16, 1969, 4:00:00 PM GMT+9" + "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": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "January 13, 1970, 6:46:40 AM GMT+9" + "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-09T17:46:40+09:00[Pacific/Palau]", - "expected": "September 9, 2001, 5:46:40 PM GMT+9" + "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-16T21:00-03:00[America/Montevideo]", - "expected": "March 16, 2024, 9:00:00 PM GMT-3" + "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": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "July 2, 2001, 10:14:15 AM GMT-3" + "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": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "May 29, 1984, 4:53:00 AM GMT-3" + "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": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "May 29, 2050, 1:47:00 PM GMT-3" + "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": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "July 15, 1969, 9:00:00 PM GMT-3" + "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": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "January 12, 1970, 10:46:40 AM GMT-3" + "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": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "September 8, 2001, 10:46:40 PM GMT-3" + "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": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "March 7, 2024, 5:00:01 AM GMT-3" + "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": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "July 2, 2001, 5:14:15 PM GMT-3" + "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": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "May 29, 1984, 11:53:00 AM GMT-3" + "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": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "May 29, 2030, 8:47:00 PM GMT-3" + "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": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "July 16, 1969, 4:00:00 AM GMT-3" + "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": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "January 12, 1970, 6:46:40 PM GMT-3" + "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]", - "expected": "September 9, 2001, 5:46:40 AM GMT-3" + "dateTimeFormatType": "atTime", + "expected": "September 9, 2001 at 5:46:40 AM GMT-3" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "March 16, 2024, 5:00:00 PM PDT" + "dateTimeFormatType": "standard", + "expected": "Saturday, March 16, 2024, 5:00:00 PM Pacific Daylight Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "July 2, 2001, 6:14:15 AM PDT" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "May 29, 1984, 12:53:00 AM PDT" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "May 29, 2050, 9:47:00 AM PDT" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "July 15, 1969, 5:00:00 PM GMT-7" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 12:53:00 AM Pacific Daylight Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "January 12, 1970, 5:46:40 AM PST" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "September 8, 2001, 6:46:40 PM PDT" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Sunday, May 29, 2050, 9:47:00 AM Pacific Daylight Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "March 7, 2024, 12:00:01 AM PST" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "July 2, 2001, 1:14:15 PM PDT" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, July 15, 1969, 5:00:00 PM GMT-07:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "May 29, 1984, 7:53:00 AM PDT" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "May 29, 2030, 4:47:00 PM PDT" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "July 16, 1969, 12:00:00 AM GMT-7" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "January 12, 1970, 1:46:40 PM PST" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "September 9, 2001, 1:46:40 AM PDT" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "March 17, 2024, 1:00:00 AM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "July 2, 2001, 2:14:15 PM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "May 29, 1984, 8:53:00 AM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "May 29, 2050, 5:47:00 PM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "July 16, 1969, 1:00:00 AM GMT+1" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 7:53:00 AM Pacific Daylight Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "January 12, 1970, 2:46:40 PM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "September 9, 2001, 2:46:40 AM GMT+1" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, May 29, 2030, 4:47:00 PM Pacific Daylight Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "March 7, 2024, 9:00:01 AM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "July 2, 2001, 9:14:15 PM GMT+1" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 12:00:00 AM GMT-07:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "May 29, 1984, 3:53:00 PM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "May 30, 2030, 12:47:00 AM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "July 16, 1969, 8:00:00 AM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "January 12, 1970, 10:46:40 PM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "September 9, 2001, 9:46:40 AM GMT+1" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "March 17, 2024, 3:30:00 AM GMT+3:30" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sunday, March 17, 2024, 1:00:00 AM West Africa Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "July 2, 2001, 5:44:15 PM GMT+4:30" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "May 29, 1984, 11:23:00 AM GMT+3:30" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "May 29, 2050, 8:17:00 PM GMT+3:30" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "July 16, 1969, 3:30:00 AM GMT+3:30" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 8:53:00 AM West Africa Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "January 12, 1970, 5:16:40 PM GMT+3:30" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "September 9, 2001, 6:16:40 AM GMT+4:30" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sunday, May 29, 2050, 5:47:00 PM West Africa Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "March 7, 2024, 11:30:01 AM GMT+3:30" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "July 3, 2001, 12:44:15 AM GMT+4:30" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 1:00:00 AM GMT+01:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "May 29, 1984, 6:23:00 PM GMT+3:30" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 1:00:00 AM GMT+01:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "May 30, 2030, 3:17:00 AM GMT+3:30" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "July 16, 1969, 10:30:00 AM GMT+3:30" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "January 13, 1970, 1:16:40 AM GMT+3:30" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "September 9, 2001, 1:16:40 PM GMT+4:30" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "March 17, 2024, 2:00:00 AM GMT+2" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "July 2, 2001, 4:14:15 PM GMT+3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "May 29, 1984, 11:53:00 AM GMT+4" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "May 29, 2050, 7:47:00 PM GMT+3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "July 16, 1969, 3:00:00 AM GMT+3" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 3:53:00 PM West Africa Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "January 12, 1970, 4:46:40 PM GMT+3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "September 9, 2001, 4:46:40 AM GMT+3" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Thursday, May 30, 2030, 12:47:00 AM West Africa Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "March 7, 2024, 10:00:01 AM GMT+2" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "July 2, 2001, 11:14:15 PM GMT+3" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 8:00:00 AM GMT+01:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "May 29, 1984, 6:53:00 PM GMT+4" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 8:00:00 AM GMT+01:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "May 30, 2030, 2:47:00 AM GMT+3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "July 16, 1969, 10:00:00 AM GMT+3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "January 13, 1970, 12:46:40 AM GMT+3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "September 9, 2001, 11:46:40 AM GMT+3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "March 17, 2024, 10:00:00 AM GMT+10" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, March 17, 2024, 3:30:00 AM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "July 2, 2001, 11:14:15 PM GMT+10" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, March 17, 2024 at 3:30:00 AM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "May 29, 1984, 5:53:00 PM GMT+10" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Monday, July 2, 2001, 5:44:15 PM Iran Daylight Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "May 30, 2050, 2:47:00 AM GMT+10" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "July 16, 1969, 10:00:00 AM GMT+10" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 11:23:00 AM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "January 12, 1970, 11:46:40 PM GMT+10" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 11:23:00 AM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "September 9, 2001, 11:46:40 AM GMT+10" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, May 29, 2050, 8:17:00 PM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "March 7, 2024, 6:00:01 PM GMT+10" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, May 29, 2050 at 8:17:00 PM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "July 3, 2001, 6:14:15 AM GMT+10" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 3:30:00 AM GMT+03:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "May 30, 1984, 12:53:00 AM GMT+10" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 3:30:00 AM GMT+03:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "May 30, 2030, 9:47:00 AM GMT+10" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Monday, January 12, 1970, 5:16:40 PM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "July 16, 1969, 5:00:00 PM GMT+10" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "January 13, 1970, 7:46:40 AM GMT+10" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 6:16:40 AM Iran Daylight Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "September 9, 2001, 6:46:40 PM GMT+10" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "March 17, 2024, 9:00:00 AM GMT+9" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Thursday, March 7, 2024, 11:30:01 AM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "July 2, 2001, 10:14:15 PM GMT+9" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "May 29, 1984, 4:53:00 PM GMT+9" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, July 3, 2001, 12:44:15 AM Iran Daylight Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "May 30, 2050, 1:47:00 AM GMT+9" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "July 16, 1969, 9:00:00 AM GMT+9" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 6:23:00 PM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "January 12, 1970, 10:46:40 PM GMT+9" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 6:23:00 PM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "September 9, 2001, 10:46:40 AM GMT+9" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Thursday, May 30, 2030, 3:17:00 AM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "March 7, 2024, 5:00:01 PM GMT+9" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, May 30, 2030 at 3:17:00 AM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "July 3, 2001, 5:14:15 AM GMT+9" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 10:30:00 AM GMT+03:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "May 29, 1984, 11:53:00 PM GMT+9" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 10:30:00 AM GMT+03:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "May 30, 2030, 8:47:00 AM GMT+9" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, January 13, 1970, 1:16:40 AM Iran Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "July 16, 1969, 4:00:00 PM GMT+9" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "January 13, 1970, 6:46:40 AM GMT+9" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 1:16:40 PM Iran Daylight Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "September 9, 2001, 5:46:40 PM GMT+9" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "March 16, 2024, 9:00:00 PM GMT-3" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sunday, March 17, 2024, 2:00:00 AM Eastern European Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "July 2, 2001, 10:14:15 AM GMT-3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "May 29, 1984, 4:53:00 AM GMT-3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "May 29, 2050, 1:47:00 PM GMT-3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "July 15, 1969, 9:00:00 PM GMT-3" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 11:53:00 AM Moscow Summer Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "January 12, 1970, 10:46:40 AM GMT-3" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 11:53:00 AM Moscow Summer Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "September 8, 2001, 10:46:40 PM GMT-3" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sunday, May 29, 2050, 7:47:00 PM Eastern European Summer Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "March 7, 2024, 5:00:01 AM GMT-3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "July 2, 2001, 5:14:15 PM GMT-3" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 3:00:00 AM GMT+03:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "May 29, 1984, 11:53:00 AM GMT-3" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 3:00:00 AM GMT+03:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "May 29, 2030, 8:47:00 PM GMT-3" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Monday, January 12, 1970, 4:46:40 PM Moscow Standard Time" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "July 16, 1969, 4:00:00 AM GMT-3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "January 12, 1970, 6:46:40 PM GMT-3" + "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" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "September 9, 2001, 5:46:40 AM GMT-3" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16/03/2024, 17:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "02/07/2001, 06:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29/05/1984, 00:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29/05/2050, 09:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15/07/1969, 17:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12/01/1970, 05:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "08/09/2001, 18:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "07/03/2024, 00:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "02/07/2001, 13:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29/05/1984, 07:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29/05/2030, 16:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16/07/1969, 00:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12/01/1970, 13:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "09/09/2001, 01:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17/03/2024, 01:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "02/07/2001, 14:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29/05/1984, 08:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29/05/2050, 17:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16/07/1969, 01:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12/01/1970, 14:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "09/09/2001, 02:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "07/03/2024, 09:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "02/07/2001, 21:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29/05/1984, 15:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30/05/2030, 00:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16/07/1969, 08:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12/01/1970, 22:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09/09/2001, 09:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17/03/2024, 03:30" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "02/07/2001, 17:44" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29/05/1984, 11:23" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29/05/2050, 20:17" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16/07/1969, 03:30" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12/01/1970, 17:16" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "09/09/2001, 06:16" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "07/03/2024, 11:30" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "03/07/2001, 00:44" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29/05/1984, 18:23" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30/05/2030, 03:17" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16/07/1969, 10:30" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13/01/1970, 01:16" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "09/09/2001, 13:16" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17/03/2024, 02:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "02/07/2001, 16:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29/05/1984, 11:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29/05/2050, 19:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16/07/1969, 03:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12/01/1970, 16:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "09/09/2001, 04:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "07/03/2024, 10:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "02/07/2001, 23:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29/05/1984, 18:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30/05/2030, 02:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16/07/1969, 10:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13/01/1970, 00:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "09/09/2001, 11:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17/03/2024, 10:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "02/07/2001, 23:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29/05/1984, 17:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30/05/2050, 02:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "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]", - "expected": "12/01/1970, 23:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "09/09/2001, 11:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "07/03/2024, 18:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "03/07/2001, 06:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30/05/1984, 00:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30/05/2030, 09:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16/07/1969, 17:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13/01/1970, 07:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "09/09/2001, 18:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17/03/2024, 09:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "02/07/2001, 22:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29/05/1984, 16:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30/05/2050, 01:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16/07/1969, 09:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12/01/1970, 22:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "09/09/2001, 10:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "07/03/2024, 17:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "03/07/2001, 05:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29/05/1984, 23:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30/05/2030, 08:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16/07/1969, 16:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13/01/1970, 06:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "09/09/2001, 17:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16/03/2024, 21:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "02/07/2001, 10:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29/05/1984, 04:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29/05/2050, 13:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15/07/1969, 21:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12/01/1970, 10:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "08/09/2001, 22:46" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "07/03/2024, 05:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "02/07/2001, 17:14" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29/05/1984, 11:53" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29/05/2030, 20:47" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16/07/1969, 04:00" + "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": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12/01/1970, 18:46" + "dateTimeFormatType": "atTime", + "expected": "Monday, January 12, 1970 at 6:46:40 PM Uruguay Standard Time" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "09/09/2001, 05:46" + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 5:46:40 AM Uruguay Standard Time" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16 Mar 2024, 17:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2 Jul 2001, 06:14:15" + "locale": "en-US", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Saturday, March 16, 2024, 5:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29 May 1984, 00:53:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29 May 2050, 09:47:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15 Jul 1969, 17:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12 Jan 1970, 05:46:40" + "locale": "en-US", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 12:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8 Sept 2001, 18:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7 Mar 2024, 00:00:01" + "locale": "en-US", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Sunday, May 29, 2050, 9:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2 Jul 2001, 13:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29 May 1984, 07:53:00" + "locale": "en-US", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, July 15, 1969, 5:00 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29 May 2030, 16:47:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16 Jul 1969, 00:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12 Jan 1970, 13:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9 Sept 2001, 01:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17 Mar 2024, 01:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2 Jul 2001, 14:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29 May 1984, 08:53:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29 May 2050, 17:47:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16 Jul 1969, 01:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12 Jan 1970, 14:46:40" + "locale": "en-US", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 7:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9 Sept 2001, 02:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7 Mar 2024, 09:00:01" + "locale": "en-US", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, May 29, 2030, 4:47 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2 Jul 2001, 21:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29 May 1984, 15:53:00" + "locale": "en-US", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 12:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30 May 2030, 00:47:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16 Jul 1969, 08:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12 Jan 1970, 22:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9 Sept 2001, 09:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17 Mar 2024, 03:30:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2 Jul 2001, 17:44:15" + "locale": "en-US", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sunday, March 17, 2024, 1:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29 May 1984, 11:23:00" + "locale": "en-US", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, March 17, 2024 at 1:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29 May 2050, 20:17:00" + "locale": "en-US", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Monday, July 2, 2001, 2:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16 Jul 1969, 03:30:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12 Jan 1970, 17:16:40" + "locale": "en-US", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 8:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9 Sept 2001, 06:16:40" + "locale": "en-US", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 8:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7 Mar 2024, 11:30:01" + "locale": "en-US", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sunday, May 29, 2050, 5:47 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3 Jul 2001, 00:44:15" + "locale": "en-US", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, May 29, 2050 at 5:47 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29 May 1984, 18:23:00" + "locale": "en-US", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 1:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30 May 2030, 03:17:00" + "locale": "en-US", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 1:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16 Jul 1969, 10:30:00" + "locale": "en-US", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Monday, January 12, 1970, 2:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13 Jan 1970, 01:16:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9 Sept 2001, 13:16:40" + "locale": "en-US", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 2:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17 Mar 2024, 02:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2 Jul 2001, 16:14:15" + "locale": "en-US", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Thursday, March 7, 2024, 9:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29 May 1984, 11:53:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29 May 2050, 19:47:00" + "locale": "en-US", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Monday, July 2, 2001, 9:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16 Jul 1969, 03:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12 Jan 1970, 16:46:40" + "locale": "en-US", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 3:53 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9 Sept 2001, 04:46:40" + "locale": "en-US", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 3:53 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7 Mar 2024, 10:00:01" + "locale": "en-US", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Thursday, May 30, 2030, 12:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2 Jul 2001, 23:14:15" + "locale": "en-US", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, May 30, 2030 at 12:47 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29 May 1984, 18:53:00" + "locale": "en-US", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 8:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30 May 2030, 02:47:00" + "locale": "en-US", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 8:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16 Jul 1969, 10:00:00" + "locale": "en-US", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Monday, January 12, 1970, 10:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13 Jan 1970, 00:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9 Sept 2001, 11:46:40" + "locale": "en-US", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 9:46 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17 Mar 2024, 10:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2 Jul 2001, 23:14:15" + "locale": "en-US", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, March 17, 2024, 3:30 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29 May 1984, 17:53:00" + "locale": "en-US", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, March 17, 2024 at 3:30 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30 May 2050, 02:47:00" + "locale": "en-US", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Monday, July 2, 2001, 5:44 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16 Jul 1969, 10:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12 Jan 1970, 23:46:40" + "locale": "en-US", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 11:23 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9 Sept 2001, 11:46:40" + "locale": "en-US", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 11:23 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7 Mar 2024, 18:00:01" + "locale": "en-US", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, May 29, 2050, 8:17 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3 Jul 2001, 06:14:15" + "locale": "en-US", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, May 29, 2050 at 8:17 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30 May 1984, 00:53:00" + "locale": "en-US", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 3:30 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30 May 2030, 09:47:00" + "locale": "en-US", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 3:30 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16 Jul 1969, 17:00:00" + "locale": "en-US", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Monday, January 12, 1970, 5:16 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13 Jan 1970, 07:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9 Sept 2001, 18:46:40" + "locale": "en-US", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 6:16 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17 Mar 2024, 09:00:00" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2 Jul 2001, 22:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29 May 1984, 16:53:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30 May 2050, 01:47:00" + "locale": "en-US", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, July 3, 2001, 12:44 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16 Jul 1969, 09:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12 Jan 1970, 22:46:40" + "locale": "en-US", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 6:23 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9 Sept 2001, 10:46:40" + "locale": "en-US", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 6:23 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7 Mar 2024, 17:00:01" + "locale": "en-US", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Thursday, May 30, 2030, 3:17 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3 Jul 2001, 05:14:15" + "locale": "en-US", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, May 30, 2030 at 3:17 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29 May 1984, 23:53:00" + "locale": "en-US", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 10:30 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30 May 2030, 08:47:00" + "locale": "en-US", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 10:30 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16 Jul 1969, 16:00:00" + "locale": "en-US", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, January 13, 1970, 1:16 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13 Jan 1970, 06:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9 Sept 2001, 17:46:40" + "locale": "en-US", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 1:16 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16 Mar 2024, 21:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2 Jul 2001, 10:14:15" + "locale": "en-US", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sunday, March 17, 2024, 2:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29 May 1984, 04:53:00" + "locale": "en-US", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, March 17, 2024 at 2:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29 May 2050, 13:47:00" + "locale": "en-US", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Monday, July 2, 2001, 4:14 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15 Jul 1969, 21:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12 Jan 1970, 10:46:40" + "locale": "en-US", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 11:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8 Sept 2001, 22:46:40" + "locale": "en-US", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 11:53 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7 Mar 2024, 05:00:01" + "locale": "en-US", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sunday, May 29, 2050, 7:47 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2 Jul 2001, 17:14:15" + "locale": "en-US", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, May 29, 2050 at 7:47 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29 May 1984, 11:53:00" + "locale": "en-US", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 3:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29 May 2030, 20:47:00" + "locale": "en-US", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 3:00 AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16 Jul 1969, 04:00:00" + "locale": "en-US", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Monday, January 12, 1970, 4:46 PM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12 Jan 1970, 18:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9 Sept 2001, 05:46:40" + "locale": "en-US", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 4:46 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16 March 2024, 17:00:00 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2 July 2001, 06:14:15 GMT-7" + "locale": "en-US", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Thursday, March 7, 2024, 10:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29 May 1984, 00:53:00 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29 May 2050, 09:47:00 GMT-7" + "locale": "en-US", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Monday, July 2, 2001, 11:14 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15 July 1969, 17:00:00 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12 January 1970, 05:46:40 GMT-8" + "locale": "en-US", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 6:53 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8 September 2001, 18:46:40 GMT-7" + "locale": "en-US", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 6:53 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7 March 2024, 00:00:01 GMT-8" + "locale": "en-US", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Thursday, May 30, 2030, 2:47 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2 July 2001, 13:14:15 GMT-7" + "locale": "en-US", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, May 30, 2030 at 2:47 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29 May 1984, 07:53:00 GMT-7" + "locale": "en-US", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 10:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29 May 2030, 16:47:00 GMT-7" + "locale": "en-US", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 10:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16 July 1969, 00:00:00 GMT-7" + "locale": "en-US", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, January 13, 1970, 12:46 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12 January 1970, 13:46:40 GMT-8" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9 September 2001, 01:46:40 GMT-7" + "locale": "en-US", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 11:46 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17 March 2024, 01:00:00 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2 July 2001, 14:14:15 GMT+1" + "locale": "en-US", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Sunday, March 17, 2024, 10:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29 May 1984, 08:53:00 GMT+1" + "locale": "en-US", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, March 17, 2024 at 10:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29 May 2050, 17:47:00 GMT+1" + "locale": "en-US", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Monday, July 2, 2001, 11:14 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16 July 1969, 01:00:00 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12 January 1970, 14:46:40 GMT+1" + "locale": "en-US", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 5:53 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9 September 2001, 02:46:40 GMT+1" + "locale": "en-US", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 5:53 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7 March 2024, 09:00:01 GMT+1" + "locale": "en-US", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Monday, May 30, 2050, 2:47 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2 July 2001, 21:14:15 GMT+1" + "locale": "en-US", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Monday, May 30, 2050 at 2:47 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29 May 1984, 15:53:00 GMT+1" + "locale": "en-US", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 10:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30 May 2030, 00:47:00 GMT+1" + "locale": "en-US", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 10:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16 July 1969, 08:00:00 GMT+1" + "locale": "en-US", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Monday, January 12, 1970, 11:46 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12 January 1970, 22:46:40 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9 September 2001, 09:46:40 GMT+1" + "locale": "en-US", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 11:46 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17 March 2024, 03:30:00 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2 July 2001, 17:44:15 GMT+4:30" + "locale": "en-US", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Thursday, March 7, 2024, 6:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29 May 1984, 11:23:00 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29 May 2050, 20:17:00 GMT+3:30" + "locale": "en-US", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, July 3, 2001, 6:14 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16 July 1969, 03:30:00 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12 January 1970, 17:16:40 GMT+3:30" + "locale": "en-US", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, May 30, 1984, 12:53 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9 September 2001, 06:16:40 GMT+4:30" + "locale": "en-US", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, May 30, 1984 at 12:53 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7 March 2024, 11:30:01 GMT+3:30" + "locale": "en-US", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Thursday, May 30, 2030, 9:47 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3 July 2001, 00:44:15 GMT+4:30" + "locale": "en-US", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, May 30, 2030 at 9:47 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29 May 1984, 18:23:00 GMT+3:30" + "locale": "en-US", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 5:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30 May 2030, 03:17:00 GMT+3:30" + "locale": "en-US", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 5:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16 July 1969, 10:30:00 GMT+3:30" + "locale": "en-US", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, January 13, 1970, 7:46 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13 January 1970, 01:16:40 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9 September 2001, 13:16:40 GMT+4:30" + "locale": "en-US", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 6:46 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17 March 2024, 02:00:00 EET" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2 July 2001, 16:14:15 EEST" + "locale": "en-US", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Sunday, March 17, 2024, 9:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29 May 1984, 11:53:00 GMT+4" + "locale": "en-US", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, March 17, 2024 at 9:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29 May 2050, 19:47:00 EEST" + "locale": "en-US", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Monday, July 2, 2001, 10:14 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16 July 1969, 03:00:00 GMT+3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12 January 1970, 16:46:40 GMT+3" + "locale": "en-US", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 4:53 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9 September 2001, 04:46:40 EEST" + "locale": "en-US", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 4:53 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7 March 2024, 10:00:01 EET" + "locale": "en-US", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Monday, May 30, 2050, 1:47 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2 July 2001, 23:14:15 EEST" + "locale": "en-US", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Monday, May 30, 2050 at 1:47 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29 May 1984, 18:53:00 GMT+4" + "locale": "en-US", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 9:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30 May 2030, 02:47:00 EEST" + "locale": "en-US", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 9:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16 July 1969, 10:00:00 GMT+3" + "locale": "en-US", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Monday, January 12, 1970, 10:46 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13 January 1970, 00:46:40 GMT+3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9 September 2001, 11:46:40 EEST" + "locale": "en-US", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 10:46 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17 March 2024, 10:00:00 GMT+10" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2 July 2001, 23:14:15 GMT+10" + "locale": "en-US", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Thursday, March 7, 2024, 5:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29 May 1984, 17:53:00 GMT+10" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30 May 2050, 02:47:00 GMT+10" + "locale": "en-US", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, July 3, 2001, 5:14 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16 July 1969, 10:00:00 GMT+10" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12 January 1970, 23:46:40 GMT+10" + "locale": "en-US", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 11:53 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9 September 2001, 11:46:40 GMT+10" + "locale": "en-US", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 11:53 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7 March 2024, 18:00:01 GMT+10" + "locale": "en-US", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Thursday, May 30, 2030, 8:47 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3 July 2001, 06:14:15 GMT+10" + "locale": "en-US", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, May 30, 2030 at 8:47 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30 May 1984, 00:53:00 GMT+10" + "locale": "en-US", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 4:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30 May 2030, 09:47:00 GMT+10" + "locale": "en-US", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 4:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16 July 1969, 17:00:00 GMT+10" + "locale": "en-US", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, January 13, 1970, 6:46 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13 January 1970, 07:46:40 GMT+10" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9 September 2001, 18:46:40 GMT+10" + "locale": "en-US", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 5:46 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17 March 2024, 09:00:00 GMT+9" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2 July 2001, 22:14:15 GMT+9" + "locale": "en-US", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Saturday, March 16, 2024, 9:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29 May 1984, 16:53:00 GMT+9" + "locale": "en-US", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Saturday, March 16, 2024 at 9:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30 May 2050, 01:47:00 GMT+9" + "locale": "en-US", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Monday, July 2, 2001, 10:14 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16 July 1969, 09:00:00 GMT+9" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12 January 1970, 22:46:40 GMT+9" + "locale": "en-US", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 4:53 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9 September 2001, 10:46:40 GMT+9" + "locale": "en-US", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 4:53 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7 March 2024, 17:00:01 GMT+9" + "locale": "en-US", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Sunday, May 29, 2050, 1:47 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3 July 2001, 05:14:15 GMT+9" + "locale": "en-US", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, May 29, 2050 at 1:47 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29 May 1984, 23:53:00 GMT+9" + "locale": "en-US", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, July 15, 1969, 9:00 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30 May 2030, 08:47:00 GMT+9" - }, + "locale": "en-US", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, July 15, 1969 at 9:00 PM" + }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16 July 1969, 16:00:00 GMT+9" + "locale": "en-US", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Monday, January 12, 1970, 10:46 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13 January 1970, 06:46:40 GMT+9" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9 September 2001, 17:46:40 GMT+9" + "locale": "en-US", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Saturday, September 8, 2001, 10:46 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16 March 2024, 21:00:00 GMT-3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2 July 2001, 10:14:15 GMT-3" + "locale": "en-US", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Thursday, March 7, 2024, 5:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29 May 1984, 04:53:00 GMT-3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29 May 2050, 13:47:00 GMT-3" + "locale": "en-US", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Monday, July 2, 2001, 5:14 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15 July 1969, 21:00:00 GMT-3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12 January 1970, 10:46:40 GMT-3" + "locale": "en-US", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, May 29, 1984, 11:53 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8 September 2001, 22:46:40 GMT-3" + "locale": "en-US", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, May 29, 1984 at 11:53 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7 March 2024, 05:00:01 GMT-3" + "locale": "en-US", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, May 29, 2030, 8:47 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2 July 2001, 17:14:15 GMT-3" + "locale": "en-US", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, May 29, 2030 at 8:47 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29 May 1984, 11:53:00 GMT-3" + "locale": "en-US", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, July 16, 1969, 4:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29 May 2030, 20:47:00 GMT-3" + "locale": "en-US", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, July 16, 1969 at 4:00 AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16 July 1969, 04:00:00 GMT-3" + "locale": "en-US", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Monday, January 12, 1970, 6:46 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12 January 1970, 18:46:40 GMT-3" + "dateTimeFormatType": "atTime", + "expected": "Monday, January 12, 1970 at 6:46 PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9 September 2001, 05:46:40 GMT-3" + "dateTimeFormatType": "standard", + "expected": "Sunday, September 9, 2001, 5:46 AM" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "en-GB", + "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": "Saturday, 16 March 2024, 17:00:00 Pacific Daylight Time" + "expected": "March 16, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "Monday, 2 July 2001, 06:14:15 Pacific Daylight Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "Tuesday, 29 May 1984, 00:53:00 Pacific Daylight Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "Sunday, 29 May 2050, 09:47:00 Pacific Daylight Time" + "expected": "May 29, 2050" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "Tuesday, 15 July 1969, 17:00:00 GMT-07:00" + "expected": "July 15, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "Monday, 12 January 1970, 05:46:40 Pacific Standard Time" + "expected": "January 12, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "Saturday, 8 September 2001, 18:46:40 Pacific Daylight Time" + "expected": "September 8, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "Thursday, 7 March 2024, 00:00:01 Pacific Standard Time" + "expected": "March 7, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "Monday, 2 July 2001, 13:14:15 Pacific Daylight Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "Tuesday, 29 May 1984, 07:53:00 Pacific Daylight Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "Wednesday, 29 May 2030, 16:47:00 Pacific Daylight Time" + "expected": "May 29, 2030" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "Wednesday, 16 July 1969, 00:00:00 GMT-07:00" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "Monday, 12 January 1970, 13:46:40 Pacific Standard Time" + "expected": "January 12, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "Sunday, 9 September 2001, 01:46:40 Pacific Daylight Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "Sunday, 17 March 2024, 01:00:00 West Africa Standard Time" + "expected": "March 17, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "Monday, 2 July 2001, 14:14:15 West Africa Standard Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "Tuesday, 29 May 1984, 08:53:00 West Africa Standard Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "Sunday, 29 May 2050, 17:47:00 West Africa Standard Time" + "expected": "May 29, 2050" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "Wednesday, 16 July 1969, 01:00:00 GMT+01:00" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "Monday, 12 January 1970, 14:46:40 West Africa Standard Time" + "expected": "January 12, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "Sunday, 9 September 2001, 02:46:40 West Africa Standard Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "Thursday, 7 March 2024, 09:00:01 West Africa Standard Time" + "expected": "March 7, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "Monday, 2 July 2001, 21:14:15 West Africa Standard Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "Tuesday, 29 May 1984, 15:53:00 West Africa Standard Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "Thursday, 30 May 2030, 00:47:00 West Africa Standard Time" + "expected": "May 30, 2030" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "Wednesday, 16 July 1969, 08:00:00 GMT+01:00" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "Monday, 12 January 1970, 22:46:40 West Africa Standard Time" + "expected": "January 12, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "Sunday, 9 September 2001, 09:46:40 West Africa Standard Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "Sunday, 17 March 2024, 03:30:00 Iran Standard Time" + "expected": "March 17, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "Monday, 2 July 2001, 17:44:15 Iran Daylight Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "Tuesday, 29 May 1984, 11:23:00 Iran Standard Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "Sunday, 29 May 2050, 20:17:00 Iran Standard Time" + "expected": "May 29, 2050" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "Wednesday, 16 July 1969, 03:30:00 GMT+03:30" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "Monday, 12 January 1970, 17:16:40 Iran Standard Time" + "expected": "January 12, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "Sunday, 9 September 2001, 06:16:40 Iran Daylight Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "Thursday, 7 March 2024, 11:30:01 Iran Standard Time" + "expected": "March 7, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "Tuesday, 3 July 2001, 00:44:15 Iran Daylight Time" + "expected": "July 3, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "Tuesday, 29 May 1984, 18:23:00 Iran Standard Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "Thursday, 30 May 2030, 03:17:00 Iran Standard Time" + "expected": "May 30, 2030" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "Wednesday, 16 July 1969, 10:30:00 GMT+03:30" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "Tuesday, 13 January 1970, 01:16:40 Iran Standard Time" + "expected": "January 13, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "Sunday, 9 September 2001, 13:16:40 Iran Daylight Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "Sunday, 17 March 2024, 02:00:00 Eastern European Standard Time" + "expected": "March 17, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "Monday, 2 July 2001, 16:14:15 Eastern European Summer Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "Tuesday, 29 May 1984, 11:53:00 Moscow Summer Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "Sunday, 29 May 2050, 19:47:00 Eastern European Summer Time" + "expected": "May 29, 2050" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "Wednesday, 16 July 1969, 03:00:00 GMT+03:00" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "Monday, 12 January 1970, 16:46:40 Moscow Standard Time" + "expected": "January 12, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "Sunday, 9 September 2001, 04:46:40 Eastern European Summer Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "Thursday, 7 March 2024, 10:00:01 Eastern European Standard Time" + "expected": "March 7, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "Monday, 2 July 2001, 23:14:15 Eastern European Summer Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "Tuesday, 29 May 1984, 18:53:00 Moscow Summer Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "Thursday, 30 May 2030, 02:47:00 Eastern European Summer Time" + "expected": "May 30, 2030" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "Wednesday, 16 July 1969, 10:00:00 GMT+03:00" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "Tuesday, 13 January 1970, 00:46:40 Moscow Standard Time" + "expected": "January 13, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "Sunday, 9 September 2001, 11:46:40 Eastern European Summer Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "Sunday, 17 March 2024, 10:00:00 Australian Eastern Standard Time" + "expected": "March 17, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "Monday, 2 July 2001, 23:14:15 Australian Eastern Standard Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "Tuesday, 29 May 1984, 17:53:00 Australian Eastern Standard Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "Monday, 30 May 2050, 02:47:00 Australian Eastern Standard Time" + "expected": "May 30, 2050" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "Wednesday, 16 July 1969, 10:00:00 GMT+10:00" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "Monday, 12 January 1970, 23:46:40 Australian Eastern Standard Time" + "expected": "January 12, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "Sunday, 9 September 2001, 11:46:40 Australian Eastern Standard Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "Thursday, 7 March 2024, 18:00:01 Australian Eastern Standard Time" + "expected": "March 7, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "Tuesday, 3 July 2001, 06:14:15 Australian Eastern Standard Time" + "expected": "July 3, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "Wednesday, 30 May 1984, 00:53:00 Australian Eastern Standard Time" + "expected": "May 30, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "Thursday, 30 May 2030, 09:47:00 Australian Eastern Standard Time" + "expected": "May 30, 2030" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "Wednesday, 16 July 1969, 17:00:00 GMT+10:00" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "Tuesday, 13 January 1970, 07:46:40 Australian Eastern Standard Time" + "expected": "January 13, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "Sunday, 9 September 2001, 18:46:40 Australian Eastern Standard Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "Sunday, 17 March 2024, 09:00:00 Palau Time" + "expected": "March 17, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "Monday, 2 July 2001, 22:14:15 Palau Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "Tuesday, 29 May 1984, 16:53:00 Palau Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "Monday, 30 May 2050, 01:47:00 Palau Time" + "expected": "May 30, 2050" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "Wednesday, 16 July 1969, 09:00:00 GMT+09:00" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "Monday, 12 January 1970, 22:46:40 Palau Time" + "expected": "January 12, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "Sunday, 9 September 2001, 10:46:40 Palau Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "Thursday, 7 March 2024, 17:00:01 Palau Time" + "expected": "March 7, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "Tuesday, 3 July 2001, 05:14:15 Palau Time" + "expected": "July 3, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "Tuesday, 29 May 1984, 23:53:00 Palau Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "Thursday, 30 May 2030, 08:47:00 Palau Time" + "expected": "May 30, 2030" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "Wednesday, 16 July 1969, 16:00:00 GMT+09:00" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "Tuesday, 13 January 1970, 06:46:40 Palau Time" + "expected": "January 13, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "Sunday, 9 September 2001, 17:46:40 Palau Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "Saturday, 16 March 2024, 21:00:00 Uruguay Standard Time" + "expected": "March 16, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "Monday, 2 July 2001, 10:14:15 Uruguay Standard Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "Tuesday, 29 May 1984, 04:53:00 Uruguay Standard Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "Sunday, 29 May 2050, 13:47:00 Uruguay Standard Time" + "expected": "May 29, 2050" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "Tuesday, 15 July 1969, 21:00:00 GMT-03:00" + "expected": "July 15, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "Monday, 12 January 1970, 10:46:40 Uruguay Standard Time" + "expected": "January 12, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "Saturday, 8 September 2001, 22:46:40 Uruguay Standard Time" + "expected": "September 8, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "Thursday, 7 March 2024, 05:00:01 Uruguay Standard Time" + "expected": "March 7, 2024" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "Monday, 2 July 2001, 17:14:15 Uruguay Standard Time" + "expected": "July 2, 2001" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "Tuesday, 29 May 1984, 11:53:00 Uruguay Standard Time" + "expected": "May 29, 1984" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "Wednesday, 29 May 2030, 20:47:00 Uruguay Standard Time" + "expected": "May 29, 2030" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "Wednesday, 16 July 1969, 04:00:00 GMT-03:00" + "expected": "July 16, 1969" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "Monday, 12 January 1970, 18:46:40 Uruguay Standard Time" + "expected": "January 12, 1970" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "Sunday, 9 September 2001, 05:46:40 Uruguay Standard Time" + "expected": "September 9, 2001" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "Saturday, 16 March 2024, 17:00" + "expected": "5:00:00 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "Monday, 2 July 2001, 06:14" + "expected": "6:14:15 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "Tuesday, 29 May 1984, 00:53" + "expected": "12:53:00 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "Sunday, 29 May 2050, 09:47" + "expected": "9:47:00 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "Tuesday, 15 July 1969, 17:00" + "expected": "5:00:00 PM GMT-7" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "Monday, 12 January 1970, 05:46" + "expected": "5:46:40 AM PST" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "Saturday, 8 September 2001, 18:46" + "expected": "6:46:40 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "Thursday, 7 March 2024, 00:00" + "expected": "12:00:01 AM PST" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "Monday, 2 July 2001, 13:14" + "expected": "1:14:15 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "Tuesday, 29 May 1984, 07:53" + "expected": "7:53:00 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "Wednesday, 29 May 2030, 16:47" + "expected": "4:47:00 PM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "Wednesday, 16 July 1969, 00:00" + "expected": "12:00:00 AM GMT-7" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "Monday, 12 January 1970, 13:46" + "expected": "1:46:40 PM PST" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "Sunday, 9 September 2001, 01:46" + "expected": "1:46:40 AM PDT" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "Sunday, 17 March 2024, 01:00" + "expected": "1:00:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "Monday, 2 July 2001, 14:14" + "expected": "2:14:15 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "Tuesday, 29 May 1984, 08:53" + "expected": "8:53:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "Sunday, 29 May 2050, 17:47" + "expected": "5:47:00 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "Wednesday, 16 July 1969, 01:00" + "expected": "1:00:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "Monday, 12 January 1970, 14:46" + "expected": "2:46:40 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "Sunday, 9 September 2001, 02:46" + "expected": "2:46:40 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "Thursday, 7 March 2024, 09:00" + "expected": "9:00:01 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "Monday, 2 July 2001, 21:14" + "expected": "9:14:15 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "Tuesday, 29 May 1984, 15:53" + "expected": "3:53:00 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "Thursday, 30 May 2030, 00:47" + "expected": "12:47:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "Wednesday, 16 July 1969, 08:00" + "expected": "8:00:00 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "Monday, 12 January 1970, 22:46" + "expected": "10:46:40 PM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "Sunday, 9 September 2001, 09:46" + "expected": "9:46:40 AM GMT+1" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "Sunday, 17 March 2024, 03:30" + "expected": "3:30:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "Monday, 2 July 2001, 17:44" + "expected": "5:44:15 PM GMT+4:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "Tuesday, 29 May 1984, 11:23" + "expected": "11:23:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "Sunday, 29 May 2050, 20:17" + "expected": "8:17:00 PM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "Wednesday, 16 July 1969, 03:30" + "expected": "3:30:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "Monday, 12 January 1970, 17:16" + "expected": "5:16:40 PM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "Sunday, 9 September 2001, 06:16" + "expected": "6:16:40 AM GMT+4:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "Thursday, 7 March 2024, 11:30" + "expected": "11:30:01 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "Tuesday, 3 July 2001, 00:44" + "expected": "12:44:15 AM GMT+4:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "Tuesday, 29 May 1984, 18:23" + "expected": "6:23:00 PM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "Thursday, 30 May 2030, 03:17" + "expected": "3:17:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "Wednesday, 16 July 1969, 10:30" + "expected": "10:30:00 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "Tuesday, 13 January 1970, 01:16" + "expected": "1:16:40 AM GMT+3:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "Sunday, 9 September 2001, 13:16" + "expected": "1:16:40 PM GMT+4:30" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "Sunday, 17 March 2024, 02:00" + "expected": "2:00:00 AM GMT+2" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "Monday, 2 July 2001, 16:14" + "expected": "4:14:15 PM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "Tuesday, 29 May 1984, 11:53" + "expected": "11:53:00 AM GMT+4" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "Sunday, 29 May 2050, 19:47" + "expected": "7:47:00 PM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "Wednesday, 16 July 1969, 03:00" + "expected": "3:00:00 AM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "Monday, 12 January 1970, 16:46" + "expected": "4:46:40 PM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "Sunday, 9 September 2001, 04:46" + "expected": "4:46:40 AM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "Thursday, 7 March 2024, 10:00" + "expected": "10:00:01 AM GMT+2" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "Monday, 2 July 2001, 23:14" + "expected": "11:14:15 PM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "Tuesday, 29 May 1984, 18:53" + "expected": "6:53:00 PM GMT+4" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "Thursday, 30 May 2030, 02:47" + "expected": "2:47:00 AM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "Wednesday, 16 July 1969, 10:00" + "expected": "10:00:00 AM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "Tuesday, 13 January 1970, 00:46" + "expected": "12:46:40 AM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "Sunday, 9 September 2001, 11:46" + "expected": "11:46:40 AM GMT+3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "Sunday, 17 March 2024, 10:00" + "expected": "10:00:00 AM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "Monday, 2 July 2001, 23:14" + "expected": "11:14:15 PM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "Tuesday, 29 May 1984, 17:53" + "expected": "5:53:00 PM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "Monday, 30 May 2050, 02:47" + "expected": "2:47:00 AM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "Wednesday, 16 July 1969, 10:00" + "expected": "10:00:00 AM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "Monday, 12 January 1970, 23:46" + "expected": "11:46:40 PM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "Sunday, 9 September 2001, 11:46" + "expected": "11:46:40 AM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "Thursday, 7 March 2024, 18:00" + "expected": "6:00:01 PM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "Tuesday, 3 July 2001, 06:14" + "expected": "6:14:15 AM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "Wednesday, 30 May 1984, 00:53" + "expected": "12:53:00 AM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "Thursday, 30 May 2030, 09:47" + "expected": "9:47:00 AM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "Wednesday, 16 July 1969, 17:00" + "expected": "5:00:00 PM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "Tuesday, 13 January 1970, 07:46" + "expected": "7:46:40 AM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "Sunday, 9 September 2001, 18:46" + "expected": "6:46:40 PM GMT+10" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "Sunday, 17 March 2024, 09:00" + "expected": "9:00:00 AM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "Monday, 2 July 2001, 22:14" + "expected": "10:14:15 PM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "Tuesday, 29 May 1984, 16:53" + "expected": "4:53:00 PM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "Monday, 30 May 2050, 01:47" + "expected": "1:47:00 AM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "Wednesday, 16 July 1969, 09:00" + "expected": "9:00:00 AM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "Monday, 12 January 1970, 22:46" + "expected": "10:46:40 PM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "Sunday, 9 September 2001, 10:46" + "expected": "10:46:40 AM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "Thursday, 7 March 2024, 17:00" + "expected": "5:00:01 PM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "Tuesday, 3 July 2001, 05:14" + "expected": "5:14:15 AM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "Tuesday, 29 May 1984, 23:53" + "expected": "11:53:00 PM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "Thursday, 30 May 2030, 08:47" + "expected": "8:47:00 AM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "Wednesday, 16 July 1969, 16:00" + "expected": "4:00:00 PM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "Tuesday, 13 January 1970, 06:46" + "expected": "6:46:40 AM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "Sunday, 9 September 2001, 17:46" + "expected": "5:46:40 PM GMT+9" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "Saturday, 16 March 2024, 21:00" + "expected": "9:00:00 PM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "Monday, 2 July 2001, 10:14" + "expected": "10:14:15 AM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "Tuesday, 29 May 1984, 04:53" + "expected": "4:53:00 AM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "Sunday, 29 May 2050, 13:47" + "expected": "1:47:00 PM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "Tuesday, 15 July 1969, 21:00" + "expected": "9:00:00 PM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "Monday, 12 January 1970, 10:46" + "expected": "10:46:40 AM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "Saturday, 8 September 2001, 22:46" + "expected": "10:46:40 PM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "Thursday, 7 March 2024, 05:00" + "expected": "5:00:01 AM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "Monday, 2 July 2001, 17:14" + "expected": "5:14:15 PM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "Tuesday, 29 May 1984, 11:53" + "expected": "11:53:00 AM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "Wednesday, 29 May 2030, 20:47" + "expected": "8:47:00 PM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "Wednesday, 16 July 1969, 04:00" + "expected": "4:00:00 AM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "Monday, 12 January 1970, 18:46" + "expected": "6:46:40 PM GMT-3" }, { - "dateLength": "full", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "en-GB", + "locale": "en-US", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "Sunday, 9 September 2001, 05:46" + "expected": "5:46:40 AM GMT-3" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16 March 2024, 17:00:00 GMT-7" + "dateTimeFormatType": "standard", + "expected": "16/03/2024, 17:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2 July 2001, 06:14:15 GMT-7" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "16/03/2024, 17:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29 May 1984, 00:53:00 GMT-7" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 06:14" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29 May 2050, 09:47:00 GMT-7" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 06:14" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15 July 1969, 17:00:00 GMT-7" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 00:53" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12 January 1970, 05:46:40 GMT-8" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 00:53" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8 September 2001, 18:46:40 GMT-7" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "29/05/2050, 09:47" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7 March 2024, 00:00:01 GMT-8" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "29/05/2050, 09:47" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2 July 2001, 13:14:15 GMT-7" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "15/07/1969, 17:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29 May 1984, 07:53:00 GMT-7" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "15/07/1969, 17:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29 May 2030, 16:47:00 GMT-7" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "12/01/1970, 05:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16 July 1969, 00:00:00 GMT-7" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "12/01/1970, 05:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12 January 1970, 13:46:40 GMT-8" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "08/09/2001, 18:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9 September 2001, 01:46:40 GMT-7" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "08/09/2001, 18:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17 March 2024, 01:00:00 GMT+1" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "07/03/2024, 00:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2 July 2001, 14:14:15 GMT+1" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "07/03/2024, 00:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29 May 1984, 08:53:00 GMT+1" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 13:14" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29 May 2050, 17:47:00 GMT+1" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 13:14" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16 July 1969, 01:00:00 GMT+1" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 07:53" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12 January 1970, 14:46:40 GMT+1" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 07:53" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9 September 2001, 02:46:40 GMT+1" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "29/05/2030, 16:47" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7 March 2024, 09:00:01 GMT+1" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "29/05/2030, 16:47" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2 July 2001, 21:14:15 GMT+1" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 00:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29 May 1984, 15:53:00 GMT+1" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 00:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30 May 2030, 00:47:00 GMT+1" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "12/01/1970, 13:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16 July 1969, 08:00:00 GMT+1" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "12/01/1970, 13:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12 January 1970, 22:46:40 GMT+1" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 01:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9 September 2001, 09:46:40 GMT+1" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 01:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17 March 2024, 03:30:00 GMT+3:30" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "17/03/2024, 01:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2 July 2001, 17:44:15 GMT+4:30" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "17/03/2024, 01:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29 May 1984, 11:23:00 GMT+3:30" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 14:14" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29 May 2050, 20:17:00 GMT+3:30" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 14:14" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16 July 1969, 03:30:00 GMT+3:30" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 08:53" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12 January 1970, 17:16:40 GMT+3:30" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 08:53" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9 September 2001, 06:16:40 GMT+4:30" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "29/05/2050, 17:47" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7 March 2024, 11:30:01 GMT+3:30" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "29/05/2050, 17:47" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3 July 2001, 00:44:15 GMT+4:30" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 01:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29 May 1984, 18:23:00 GMT+3:30" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 01:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30 May 2030, 03:17:00 GMT+3:30" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "12/01/1970, 14:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16 July 1969, 10:30:00 GMT+3:30" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "12/01/1970, 14:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13 January 1970, 01:16:40 GMT+3:30" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 02:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9 September 2001, 13:16:40 GMT+4:30" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 02:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17 March 2024, 02:00:00 EET" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "07/03/2024, 09:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2 July 2001, 16:14:15 EEST" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "07/03/2024, 09:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29 May 1984, 11:53:00 GMT+4" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 21:14" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29 May 2050, 19:47:00 EEST" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 21:14" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16 July 1969, 03:00:00 GMT+3" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 15:53" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12 January 1970, 16:46:40 GMT+3" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 15:53" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9 September 2001, 04:46:40 EEST" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "30/05/2030, 00:47" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7 March 2024, 10:00:01 EET" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "30/05/2030, 00:47" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2 July 2001, 23:14:15 EEST" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 08:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29 May 1984, 18:53:00 GMT+4" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 08:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30 May 2030, 02:47:00 EEST" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "12/01/1970, 22:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16 July 1969, 10:00:00 GMT+3" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "12/01/1970, 22:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13 January 1970, 00:46:40 GMT+3" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 09:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9 September 2001, 11:46:40 EEST" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 09:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17 March 2024, 10:00:00 GMT+10" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "17/03/2024, 03:30" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2 July 2001, 23:14:15 GMT+10" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "17/03/2024, 03:30" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29 May 1984, 17:53:00 GMT+10" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 17:44" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30 May 2050, 02:47:00 GMT+10" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 17:44" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16 July 1969, 10:00:00 GMT+10" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 11:23" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12 January 1970, 23:46:40 GMT+10" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 11:23" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9 September 2001, 11:46:40 GMT+10" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "29/05/2050, 20:17" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7 March 2024, 18:00:01 GMT+10" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "29/05/2050, 20:17" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3 July 2001, 06:14:15 GMT+10" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 03:30" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30 May 1984, 00:53:00 GMT+10" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 03:30" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30 May 2030, 09:47:00 GMT+10" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "12/01/1970, 17:16" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16 July 1969, 17:00:00 GMT+10" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "12/01/1970, 17:16" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13 January 1970, 07:46:40 GMT+10" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 06:16" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9 September 2001, 18:46:40 GMT+10" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 06:16" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17 March 2024, 09:00:00 GMT+9" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "07/03/2024, 11:30" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2 July 2001, 22:14:15 GMT+9" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "07/03/2024, 11:30" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29 May 1984, 16:53:00 GMT+9" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "03/07/2001, 00:44" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30 May 2050, 01:47:00 GMT+9" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "03/07/2001, 00:44" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16 July 1969, 09:00:00 GMT+9" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 18:23" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12 January 1970, 22:46:40 GMT+9" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 18:23" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9 September 2001, 10:46:40 GMT+9" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "30/05/2030, 03:17" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7 March 2024, 17:00:01 GMT+9" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "30/05/2030, 03:17" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3 July 2001, 05:14:15 GMT+9" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 10:30" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29 May 1984, 23:53:00 GMT+9" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 10:30" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30 May 2030, 08:47:00 GMT+9" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "13/01/1970, 01:16" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16 July 1969, 16:00:00 GMT+9" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "13/01/1970, 01:16" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13 January 1970, 06:46:40 GMT+9" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 13:16" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9 September 2001, 17:46:40 GMT+9" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 13:16" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16 March 2024, 21:00:00 GMT-3" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "17/03/2024, 02:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2 July 2001, 10:14:15 GMT-3" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "17/03/2024, 02:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29 May 1984, 04:53:00 GMT-3" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 16:14" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29 May 2050, 13:47:00 GMT-3" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 16:14" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15 July 1969, 21:00:00 GMT-3" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 11:53" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12 January 1970, 10:46:40 GMT-3" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 11:53" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8 September 2001, 22:46:40 GMT-3" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "29/05/2050, 19:47" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7 March 2024, 05:00:01 GMT-3" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "29/05/2050, 19:47" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2 July 2001, 17:14:15 GMT-3" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 03:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29 May 1984, 11:53:00 GMT-3" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 03:00" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29 May 2030, 20:47:00 GMT-3" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "12/01/1970, 16:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16 July 1969, 04:00:00 GMT-3" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "12/01/1970, 16:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12 January 1970, 18:46:40 GMT-3" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 04:46" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9 September 2001, 05:46:40 GMT-3" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 04:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16 March 2024, 17:00:00 GMT-7" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "07/03/2024, 10:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2 July 2001, 06:14:15 GMT-7" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "07/03/2024, 10:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29 May 1984, 00:53:00 GMT-7" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 23:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29 May 2050, 09:47:00 GMT-7" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 23:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15 July 1969, 17:00:00 GMT-7" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 18:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12 January 1970, 05:46:40 GMT-8" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 18:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8 September 2001, 18:46:40 GMT-7" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "30/05/2030, 02:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7 March 2024, 00:00:01 GMT-8" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "30/05/2030, 02:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2 July 2001, 13:14:15 GMT-7" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 10:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29 May 1984, 07:53:00 GMT-7" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 10:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29 May 2030, 16:47:00 GMT-7" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "13/01/1970, 00:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16 July 1969, 00:00:00 GMT-7" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "13/01/1970, 00:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12 January 1970, 13:46:40 GMT-8" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 11:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9 September 2001, 01:46:40 GMT-7" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 11:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17 March 2024, 01:00:00 GMT+1" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "17/03/2024, 10:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2 July 2001, 14:14:15 GMT+1" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "17/03/2024, 10:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29 May 1984, 08:53:00 GMT+1" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 23:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29 May 2050, 17:47:00 GMT+1" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 23:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16 July 1969, 01:00:00 GMT+1" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 17:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12 January 1970, 14:46:40 GMT+1" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 17:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9 September 2001, 02:46:40 GMT+1" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "30/05/2050, 02:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7 March 2024, 09:00:01 GMT+1" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "30/05/2050, 02:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2 July 2001, 21:14:15 GMT+1" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 10:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29 May 1984, 15:53:00 GMT+1" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 10:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30 May 2030, 00:47:00 GMT+1" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "12/01/1970, 23:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16 July 1969, 08:00:00 GMT+1" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "12/01/1970, 23:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12 January 1970, 22:46:40 GMT+1" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 11:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9 September 2001, 09:46:40 GMT+1" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 11:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17 March 2024, 03:30:00 GMT+3:30" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "07/03/2024, 18:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2 July 2001, 17:44:15 GMT+4:30" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "07/03/2024, 18:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29 May 1984, 11:23:00 GMT+3:30" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "03/07/2001, 06:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29 May 2050, 20:17:00 GMT+3:30" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "03/07/2001, 06:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16 July 1969, 03:30:00 GMT+3:30" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "30/05/1984, 00:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12 January 1970, 17:16:40 GMT+3:30" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "30/05/1984, 00:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9 September 2001, 06:16:40 GMT+4:30" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "30/05/2030, 09:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7 March 2024, 11:30:01 GMT+3:30" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "30/05/2030, 09:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3 July 2001, 00:44:15 GMT+4:30" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 17:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29 May 1984, 18:23:00 GMT+3:30" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 17:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30 May 2030, 03:17:00 GMT+3:30" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "13/01/1970, 07:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16 July 1969, 10:30:00 GMT+3:30" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "13/01/1970, 07:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13 January 1970, 01:16:40 GMT+3:30" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 18:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9 September 2001, 13:16:40 GMT+4:30" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 18:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17 March 2024, 02:00:00 EET" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "17/03/2024, 09:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2 July 2001, 16:14:15 EEST" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "17/03/2024, 09:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29 May 1984, 11:53:00 GMT+4" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 22:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29 May 2050, 19:47:00 EEST" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 22:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16 July 1969, 03:00:00 GMT+3" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 16:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12 January 1970, 16:46:40 GMT+3" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 16:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9 September 2001, 04:46:40 EEST" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "30/05/2050, 01:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7 March 2024, 10:00:01 EET" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "30/05/2050, 01:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2 July 2001, 23:14:15 EEST" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 09:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29 May 1984, 18:53:00 GMT+4" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 09:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30 May 2030, 02:47:00 EEST" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "12/01/1970, 22:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16 July 1969, 10:00:00 GMT+3" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "12/01/1970, 22:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13 January 1970, 00:46:40 GMT+3" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 10:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9 September 2001, 11:46:40 EEST" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 10:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17 March 2024, 10:00:00 GMT+10" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "07/03/2024, 17:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2 July 2001, 23:14:15 GMT+10" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "07/03/2024, 17:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29 May 1984, 17:53:00 GMT+10" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "03/07/2001, 05:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30 May 2050, 02:47:00 GMT+10" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "03/07/2001, 05:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16 July 1969, 10:00:00 GMT+10" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 23:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12 January 1970, 23:46:40 GMT+10" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 23:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9 September 2001, 11:46:40 GMT+10" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "30/05/2030, 08:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7 March 2024, 18:00:01 GMT+10" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "30/05/2030, 08:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3 July 2001, 06:14:15 GMT+10" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 16:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30 May 1984, 00:53:00 GMT+10" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 16:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30 May 2030, 09:47:00 GMT+10" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "13/01/1970, 06:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16 July 1969, 17:00:00 GMT+10" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "13/01/1970, 06:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13 January 1970, 07:46:40 GMT+10" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "09/09/2001, 17:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9 September 2001, 18:46:40 GMT+10" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 17:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17 March 2024, 09:00:00 GMT+9" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "16/03/2024, 21:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2 July 2001, 22:14:15 GMT+9" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "16/03/2024, 21:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29 May 1984, 16:53:00 GMT+9" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 10:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30 May 2050, 01:47:00 GMT+9" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 10:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16 July 1969, 09:00:00 GMT+9" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 04:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12 January 1970, 22:46:40 GMT+9" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 04:53" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9 September 2001, 10:46:40 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7 March 2024, 17:00:01 GMT+9" - }, - { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3 July 2001, 05:14:15 GMT+9" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "29/05/2050, 13:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29 May 1984, 23:53:00 GMT+9" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "29/05/2050, 13:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30 May 2030, 08:47:00 GMT+9" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "15/07/1969, 21:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16 July 1969, 16:00:00 GMT+9" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "15/07/1969, 21:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13 January 1970, 06:46:40 GMT+9" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "12/01/1970, 10:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9 September 2001, 17:46:40 GMT+9" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "12/01/1970, 10:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16 March 2024, 21:00:00 GMT-3" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "08/09/2001, 22:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2 July 2001, 10:14:15 GMT-3" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "08/09/2001, 22:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29 May 1984, 04:53:00 GMT-3" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "07/03/2024, 05:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29 May 2050, 13:47:00 GMT-3" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "07/03/2024, 05:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15 July 1969, 21:00:00 GMT-3" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "02/07/2001, 17:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12 January 1970, 10:46:40 GMT-3" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "02/07/2001, 17:14" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8 September 2001, 22:46:40 GMT-3" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "29/05/1984, 11:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7 March 2024, 05:00:01 GMT-3" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "29/05/1984, 11:53" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2 July 2001, 17:14:15 GMT-3" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "29/05/2030, 20:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29 May 1984, 11:53:00 GMT-3" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "29/05/2030, 20:47" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29 May 2030, 20:47:00 GMT-3" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "16/07/1969, 04:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16 July 1969, 04:00:00 GMT-3" + "dateTimeFormatType": "atTime", + "expected": "16/07/1969, 04:00" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12 January 1970, 18:46:40 GMT-3" + "dateTimeFormatType": "standard", + "expected": "12/01/1970, 18:46" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9 September 2001, 05:46:40 GMT-3" + "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": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024/3/16 下午5:00" + "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": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001/7/2 清晨6:14" + "locale": "en-GB", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "09/09/2001, 05:46" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984/5/29 凌晨12:53" + "locale": "en-GB", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "16 Mar 2024, 17:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050/5/29 上午9:47" + "locale": "en-GB", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "16 Mar 2024, 17:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969/7/15 下午5:00" + "locale": "en-GB", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2 Jul 2001, 06:14:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1970/1/12 清晨5:46" + "locale": "en-GB", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2 Jul 2001, 06:14:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001/9/8 下午6:46" + "locale": "en-GB", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 00:53:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024/3/7 凌晨12:00" + "locale": "en-GB", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "29 May 1984, 00:53:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001/7/2 下午1:14" + "locale": "en-GB", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "29 May 2050, 09:47:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984/5/29 清晨7:53" + "locale": "en-GB", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "29 May 2050, 09:47:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030/5/29 下午4:47" + "locale": "en-GB", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "15 Jul 1969, 17:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969/7/16 凌晨12:00" + "locale": "en-GB", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "15 Jul 1969, 17:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1970/1/12 下午1:46" + "locale": "en-GB", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "12 Jan 1970, 05:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001/9/9 凌晨1:46" + "locale": "en-GB", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "12 Jan 1970, 05:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024/3/17 凌晨1:00" + "locale": "en-GB", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "8 Sept 2001, 18:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001/7/2 下午2:14" + "locale": "en-GB", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "8 Sept 2001, 18:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984/5/29 上午8:53" + "locale": "en-GB", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "7 Mar 2024, 00:00:01" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050/5/29 下午5:47" + "locale": "en-GB", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "7 Mar 2024, 00:00:01" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969/7/16 凌晨1:00" + "locale": "en-GB", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2 Jul 2001, 13:14:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1970/1/12 下午2:46" + "locale": "en-GB", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2 Jul 2001, 13:14:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001/9/9 凌晨2:46" + "locale": "en-GB", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 07:53:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024/3/7 上午9:00" + "locale": "en-GB", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "29 May 1984, 07:53:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001/7/2 晚上9:14" + "locale": "en-GB", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "29 May 2030, 16:47:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984/5/29 下午3:53" + "locale": "en-GB", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "29 May 2030, 16:47:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030/5/30 凌晨12:47" + "locale": "en-GB", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "16 Jul 1969, 00:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969/7/16 上午8:00" + "locale": "en-GB", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "16 Jul 1969, 00:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1970/1/12 晚上10:46" + "locale": "en-GB", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "12 Jan 1970, 13:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001/9/9 上午9:46" + "locale": "en-GB", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "12 Jan 1970, 13:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024/3/17 凌晨3:30" + "locale": "en-GB", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "9 Sept 2001, 01:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001/7/2 下午5:44" + "locale": "en-GB", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "9 Sept 2001, 01:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984/5/29 上午11:23" + "locale": "en-GB", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "17 Mar 2024, 01:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050/5/29 晚上8:17" + "locale": "en-GB", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "17 Mar 2024, 01:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969/7/16 凌晨3:30" + "locale": "en-GB", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2 Jul 2001, 14:14:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1970/1/12 下午5:16" + "locale": "en-GB", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2 Jul 2001, 14:14:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001/9/9 清晨6:16" + "locale": "en-GB", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 08:53:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024/3/7 上午11:30" + "locale": "en-GB", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "29 May 1984, 08:53:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001/7/3 凌晨12:44" + "locale": "en-GB", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "29 May 2050, 17:47:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984/5/29 下午6:23" + "locale": "en-GB", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "29 May 2050, 17:47:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030/5/30 凌晨3:17" + "locale": "en-GB", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "16 Jul 1969, 01:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969/7/16 上午10:30" + "locale": "en-GB", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "16 Jul 1969, 01:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1970/1/13 凌晨1:16" + "locale": "en-GB", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "12 Jan 1970, 14:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001/9/9 下午1:16" + "locale": "en-GB", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "12 Jan 1970, 14:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024/3/17 凌晨2:00" + "locale": "en-GB", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "9 Sept 2001, 02:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001/7/2 下午4:14" + "locale": "en-GB", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "9 Sept 2001, 02:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984/5/29 上午11:53" + "locale": "en-GB", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "7 Mar 2024, 09:00:01" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050/5/29 晚上7:47" + "locale": "en-GB", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "7 Mar 2024, 09:00:01" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969/7/16 凌晨3:00" + "locale": "en-GB", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2 Jul 2001, 21:14:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1970/1/12 下午4:46" + "locale": "en-GB", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2 Jul 2001, 21:14:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001/9/9 凌晨4:46" + "locale": "en-GB", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 15:53:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024/3/7 上午10:00" + "locale": "en-GB", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "29 May 1984, 15:53:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001/7/2 晚上11:14" + "locale": "en-GB", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "30 May 2030, 00:47:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984/5/29 下午6:53" + "locale": "en-GB", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "30 May 2030, 00:47:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030/5/30 凌晨2:47" + "locale": "en-GB", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "16 Jul 1969, 08:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969/7/16 上午10:00" + "locale": "en-GB", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "16 Jul 1969, 08:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1970/1/13 凌晨12:46" + "locale": "en-GB", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "12 Jan 1970, 22:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001/9/9 上午11:46" + "locale": "en-GB", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "12 Jan 1970, 22:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024/3/17 上午10:00" + "locale": "en-GB", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "9 Sept 2001, 09:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001/7/2 晚上11:14" + "locale": "en-GB", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "9 Sept 2001, 09:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984/5/29 下午5:53" + "locale": "en-GB", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "17 Mar 2024, 03:30:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050/5/30 凌晨2:47" + "locale": "en-GB", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "17 Mar 2024, 03:30:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969/7/16 上午10:00" + "locale": "en-GB", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2 Jul 2001, 17:44:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1970/1/12 晚上11:46" + "locale": "en-GB", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2 Jul 2001, 17:44:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001/9/9 上午11:46" + "locale": "en-GB", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 11:23:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024/3/7 下午6:00" + "locale": "en-GB", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "29 May 1984, 11:23:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001/7/3 清晨6:14" + "locale": "en-GB", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "29 May 2050, 20:17:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984/5/30 凌晨12:53" + "locale": "en-GB", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "29 May 2050, 20:17:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030/5/30 上午9:47" + "locale": "en-GB", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "16 Jul 1969, 03:30:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969/7/16 下午5:00" + "locale": "en-GB", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "16 Jul 1969, 03:30:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1970/1/13 清晨7:46" + "locale": "en-GB", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "12 Jan 1970, 17:16:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001/9/9 下午6:46" + "locale": "en-GB", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "12 Jan 1970, 17:16:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024/3/17 上午9:00" + "locale": "en-GB", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "9 Sept 2001, 06:16:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001/7/2 晚上10:14" + "locale": "en-GB", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "9 Sept 2001, 06:16:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984/5/29 下午4:53" + "locale": "en-GB", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "7 Mar 2024, 11:30:01" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050/5/30 凌晨1:47" + "locale": "en-GB", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "7 Mar 2024, 11:30:01" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969/7/16 上午9:00" + "locale": "en-GB", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "3 Jul 2001, 00:44:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1970/1/12 晚上10:46" + "locale": "en-GB", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "3 Jul 2001, 00:44:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001/9/9 上午10:46" + "locale": "en-GB", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 18:23:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024/3/7 下午5:00" + "locale": "en-GB", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "29 May 1984, 18:23:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001/7/3 清晨5:14" + "locale": "en-GB", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "30 May 2030, 03:17:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984/5/29 晚上11:53" + "locale": "en-GB", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "30 May 2030, 03:17:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030/5/30 上午8:47" + "locale": "en-GB", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "16 Jul 1969, 10:30:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969/7/16 下午4:00" + "locale": "en-GB", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "16 Jul 1969, 10:30:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1970/1/13 清晨6:46" + "locale": "en-GB", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "13 Jan 1970, 01:16:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001/9/9 下午5:46" + "locale": "en-GB", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "13 Jan 1970, 01:16:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024/3/16 晚上9:00" + "locale": "en-GB", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "9 Sept 2001, 13:16:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001/7/2 上午10:14" + "locale": "en-GB", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "9 Sept 2001, 13:16:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984/5/29 凌晨4:53" + "locale": "en-GB", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "17 Mar 2024, 02:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050/5/29 下午1:47" + "locale": "en-GB", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "17 Mar 2024, 02:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969/7/15 晚上9:00" + "locale": "en-GB", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2 Jul 2001, 16:14:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1970/1/12 上午10:46" + "locale": "en-GB", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2 Jul 2001, 16:14:15" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001/9/8 晚上10:46" + "locale": "en-GB", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 11:53:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024/3/7 清晨5:00" + "locale": "en-GB", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "29 May 1984, 11:53:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001/7/2 下午5:14" + "locale": "en-GB", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "29 May 2050, 19:47:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984/5/29 上午11:53" + "locale": "en-GB", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "29 May 2050, 19:47:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030/5/29 晚上8:47" + "locale": "en-GB", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "16 Jul 1969, 03:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969/7/16 凌晨4:00" + "locale": "en-GB", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "16 Jul 1969, 03:00:00" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1970/1/12 下午6:46" + "locale": "en-GB", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "12 Jan 1970, 16:46:40" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001/9/9 清晨5:46" + "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": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024年3月16日 下午5:00:00" + "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": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 清晨6:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 凌晨12:53:00" + "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": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050年5月29日 上午9:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969年7月15日 下午5:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 清晨5:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月8日 下午6:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024年3月7日 凌晨12:00:01" + "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": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 下午1:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 清晨7:53:00" + "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": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030年5月29日 下午4:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969年7月16日 凌晨12:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 下午1:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月9日 凌晨1:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024年3月17日 凌晨1:00:00" + "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": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 下午2:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 上午8:53:00" + "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": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050年5月29日 下午5:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 凌晨1:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 下午2:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 凌晨2:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024年3月7日 上午9:00:01" + "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": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 晚上9:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 下午3:53:00" + "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": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030年5月30日 凌晨12:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 上午8:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 晚上10:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 上午9:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024年3月17日 凌晨3:30:00" + "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": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月2日 下午5:44:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 上午11:23:00" + "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": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050年5月29日 晚上8:17:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 凌晨3:30:00" + "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": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月12日 下午5:16:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 清晨6:16:40" + "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": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024年3月7日 上午11:30:01" + "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": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月3日 凌晨12:44:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 下午6:23:00" + "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": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030年5月30日 凌晨3:17:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 上午10:30:00" + "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": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月13日 凌晨1:16:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 下午1:16:40" + "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": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024年3月17日 凌晨2:00:00" + "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": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 下午4:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 上午11:53:00" + "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": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050年5月29日 晚上7:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 凌晨3:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月12日 下午4:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 凌晨4:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024年3月7日 上午10:00:01" + "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": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 晚上11:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 下午6:53:00" + "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": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030年5月30日 凌晨2:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 上午10:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月13日 凌晨12:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 上午11:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024年3月17日 上午10:00:00" + "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": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月2日 晚上11:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984年5月29日 下午5:53:00" + "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": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050年5月30日 凌晨2:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 上午10:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月12日 晚上11:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 上午11:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024年3月7日 下午6:00:01" + "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": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月3日 清晨6:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984年5月30日 凌晨12:53:00" + "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": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030年5月30日 上午9:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 下午5:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月13日 清晨7:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 下午6:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024年3月17日 上午9:00:00" + "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": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月2日 晚上10:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 下午4:53:00" + "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": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050年5月30日 凌晨1:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 上午9:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月12日 晚上10:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 上午10:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024年3月7日 下午5:00:01" + "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": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月3日 清晨5:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 晚上11:53:00" + "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": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030年5月30日 上午8:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 下午4:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月13日 清晨6:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 下午5:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024年3月16日 晚上9:00:00" + "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": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 上午10:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 凌晨4:53:00" + "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": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050年5月29日 下午1:47:00" + "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": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969年7月15日 晚上9:00:00" + "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": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 上午10:46:40" + "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": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001年9月8日 晚上10:46:40" + "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": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024年3月7日 清晨5:00:01" + "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": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 下午5:14:15" + "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": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 上午11:53:00" + "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": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030年5月29日 晚上8:47:00" + "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": "zh-Hant-TW", + "locale": "en-GB", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969年7月16日 凌晨4:00:00" + "dateTimeFormatType": "atTime", + "expected": "16 Jul 1969, 04:00:00" }, { "dateLength": "medium", "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", + "locale": "en-GB", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 下午6:46:40" + "dateTimeFormatType": "standard", + "expected": "12 Jan 1970, 18:46:40" }, { "dateLength": "medium", "timeLength": "medium", "calendar": "gregorian", - "locale": "zh-Hant-TW", + "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]", - "expected": "2001年9月9日 清晨5:46:40" + "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": "zh-Hant-TW", + "locale": "en-GB", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024年3月16日 下午5:00:00 [PDT]" + "dateTimeFormatType": "standard", + "expected": "16 March 2024, 17:00:00 GMT-7" }, { "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 清晨6:14:15 [PDT]" + "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": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 凌晨12:53:00 [PDT]" + "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": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050年5月29日 上午9:47:00 [PDT]" + "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": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969年7月15日 下午5:00:00 [GMT-7]" + "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": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 清晨5:46:40 [PST]" + "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": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月8日 下午6:46:40 [PDT]" + "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": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024年3月7日 凌晨12:00:01 [PST]" + "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": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 下午1:14:15 [PDT]" + "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": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 清晨7:53:00 [PDT]" + "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": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030年5月29日 下午4:47:00 [PDT]" + "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": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969年7月16日 凌晨12:00:00 [GMT-7]" + "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": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 下午1:46:40 [PST]" + "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": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月9日 凌晨1:46:40 [PDT]" + "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": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024年3月17日 凌晨1:00:00 [GMT+1]" + "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": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 下午2:14:15 [GMT+1]" + "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": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 上午8:53:00 [GMT+1]" + "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": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050年5月29日 下午5:47:00 [GMT+1]" + "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": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 凌晨1:00:00 [GMT+1]" + "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": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 下午2:46:40 [GMT+1]" + "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": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 凌晨2:46:40 [GMT+1]" + "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": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024年3月7日 上午9:00:01 [GMT+1]" + "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": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 晚上9:14:15 [GMT+1]" + "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": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 下午3:53:00 [GMT+1]" + "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": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030年5月30日 凌晨12:47:00 [GMT+1]" + "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": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 上午8:00:00 [GMT+1]" + "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": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 晚上10:46:40 [GMT+1]" + "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": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 上午9:46:40 [GMT+1]" + "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": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024年3月17日 凌晨3:30:00 [GMT+3:30]" + "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": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月2日 下午5:44:15 [GMT+4:30]" + "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": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 上午11:23:00 [GMT+3:30]" + "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": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050年5月29日 晚上8:17:00 [GMT+3:30]" + "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": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 凌晨3:30:00 [GMT+3:30]" + "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": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月12日 下午5:16:40 [GMT+3:30]" + "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": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 清晨6:16:40 [GMT+4:30]" + "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": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024年3月7日 上午11:30:01 [GMT+3:30]" + "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": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月3日 凌晨12:44:15 [GMT+4:30]" + "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": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 下午6:23:00 [GMT+3:30]" + "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": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030年5月30日 凌晨3:17:00 [GMT+3:30]" + "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": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 上午10:30:00 [GMT+3:30]" + "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": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月13日 凌晨1:16:40 [GMT+3:30]" + "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": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 下午1:16:40 [GMT+4:30]" + "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": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024年3月17日 凌晨2:00:00 [GMT+2]" + "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": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 下午4:14:15 [GMT+3]" + "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": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 上午11:53:00 [GMT+4]" + "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": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050年5月29日 晚上7:47:00 [GMT+3]" + "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": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 凌晨3:00:00 [GMT+3]" + "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": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月12日 下午4:46:40 [GMT+3]" + "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": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 凌晨4:46:40 [GMT+3]" + "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": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024年3月7日 上午10:00:01 [GMT+2]" + "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": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 晚上11:14:15 [GMT+3]" + "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": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 下午6:53:00 [GMT+4]" + "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": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030年5月30日 凌晨2:47:00 [GMT+3]" + "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": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 上午10:00:00 [GMT+3]" + "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": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月13日 凌晨12:46:40 [GMT+3]" + "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": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 上午11:46:40 [GMT+3]" + "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": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024年3月17日 上午10:00:00 [GMT+10]" + "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": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月2日 晚上11:14:15 [GMT+10]" + "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": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984年5月29日 下午5:53:00 [GMT+10]" + "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": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050年5月30日 凌晨2:47:00 [GMT+10]" + "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": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 上午10:00:00 [GMT+10]" + "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": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月12日 晚上11:46:40 [GMT+10]" + "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": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 上午11:46:40 [GMT+10]" + "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": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024年3月7日 下午6:00:01 [GMT+10]" + "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": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月3日 清晨6:14:15 [GMT+10]" + "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": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984年5月30日 凌晨12:53:00 [GMT+10]" + "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": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030年5月30日 上午9:47:00 [GMT+10]" + "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": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 下午5:00:00 [GMT+10]" + "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": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月13日 清晨7:46:40 [GMT+10]" + "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": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 下午6:46:40 [GMT+10]" + "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": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024年3月17日 上午9:00:00 [GMT+9]" + "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": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月2日 晚上10:14:15 [GMT+9]" + "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": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 下午4:53:00 [GMT+9]" + "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": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050年5月30日 凌晨1:47:00 [GMT+9]" + "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": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 上午9:00:00 [GMT+9]" + "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": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月12日 晚上10:46:40 [GMT+9]" + "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": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 上午10:46:40 [GMT+9]" + "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": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024年3月7日 下午5:00:01 [GMT+9]" + "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": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月3日 清晨5:14:15 [GMT+9]" + "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": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 晚上11:53:00 [GMT+9]" + "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": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030年5月30日 上午8:47:00 [GMT+9]" + "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": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 下午4:00:00 [GMT+9]" + "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": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月13日 清晨6:46:40 [GMT+9]" + "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": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 下午5:46:40 [GMT+9]" + "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": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024年3月16日 晚上9:00:00 [GMT-3]" + "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": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 上午10:14:15 [GMT-3]" + "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": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 凌晨4:53:00 [GMT-3]" + "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": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050年5月29日 下午1:47:00 [GMT-3]" + "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": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969年7月15日 晚上9:00:00 [GMT-3]" + "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": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 上午10:46:40 [GMT-3]" + "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": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001年9月8日 晚上10:46:40 [GMT-3]" + "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": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024年3月7日 清晨5:00:01 [GMT-3]" + "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": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 下午5:14:15 [GMT-3]" + "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": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 上午11:53:00 [GMT-3]" + "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": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030年5月29日 晚上8:47:00 [GMT-3]" + "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": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969年7月16日 凌晨4:00:00 [GMT-3]" + "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": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 下午6:46:40 [GMT-3]" + "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": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001年9月9日 清晨5:46:40 [GMT-3]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024年3月16日 星期六 下午5:00:00 [太平洋夏令時間]" + "locale": "en-GB", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "7 March 2024, 10:00:01 EET" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 星期一 清晨6:14:15 [太平洋夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 星期二 凌晨12:53:00 [太平洋夏令時間]" + "locale": "en-GB", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2 July 2001, 23:14:15 EEST" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050年5月29日 星期日 上午9:47:00 [太平洋夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969年7月15日 星期二 下午5:00:00 [GMT-07:00]" + "locale": "en-GB", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 18:53:00 GMT+4" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 星期一 清晨5:46:40 [太平洋標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月8日 星期六 下午6:46:40 [太平洋夏令時間]" + "locale": "en-GB", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "30 May 2030, 02:47:00 EEST" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024年3月7日 星期四 凌晨12:00:01 [太平洋標準時間]" + "locale": "en-GB", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "30 May 2030 at 02:47:00 EEST" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 星期一 下午1:14:15 [太平洋夏令時間]" + "locale": "en-GB", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "16 July 1969, 10:00:00 GMT+3" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 星期二 清晨7:53:00 [太平洋夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030年5月29日 星期三 下午4:47:00 [太平洋夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969年7月16日 星期三 凌晨12:00:00 [GMT-07:00]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 星期一 下午1:46:40 [太平洋標準時間]" + "locale": "en-GB", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "9 September 2001, 11:46:40 EEST" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月9日 星期日 凌晨1:46:40 [太平洋夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024年3月17日 星期日 凌晨1:00:00 [西非標準時間]" + "locale": "en-GB", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "17 March 2024, 10:00:00 GMT+10" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 星期一 下午2:14:15 [西非標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 星期二 上午8:53:00 [西非標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050年5月29日 星期日 下午5:47:00 [西非標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 星期三 凌晨1:00:00 [GMT+01:00]" + "locale": "en-GB", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 17:53:00 GMT+10" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 星期一 下午2:46:40 [西非標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 星期日 凌晨2:46:40 [西非標準時間]" + "locale": "en-GB", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "30 May 2050, 02:47:00 GMT+10" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024年3月7日 星期四 上午9:00:01 [西非標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 星期一 晚上9:14:15 [西非標準時間]" + "locale": "en-GB", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "16 July 1969, 10:00:00 GMT+10" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 星期二 下午3:53:00 [西非標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030年5月30日 星期四 凌晨12:47:00 [西非標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 星期三 上午8:00:00 [GMT+01:00]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 星期一 晚上10:46:40 [西非標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 星期日 上午9:46:40 [西非標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024年3月17日 星期日 凌晨3:30:00 [伊朗標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月2日 星期一 下午5:44:15 [伊朗夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 星期二 上午11:23:00 [伊朗標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050年5月29日 星期日 晚上8:17:00 [伊朗標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 星期三 凌晨3:30:00 [GMT+03:30]" + "locale": "en-GB", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "30 May 1984, 00:53:00 GMT+10" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月12日 星期一 下午5:16:40 [伊朗標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 星期日 清晨6:16:40 [伊朗夏令時間]" + "locale": "en-GB", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "30 May 2030, 09:47:00 GMT+10" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024年3月7日 星期四 上午11:30:01 [伊朗標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月3日 星期二 凌晨12:44:15 [伊朗夏令時間]" + "locale": "en-GB", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "16 July 1969, 17:00:00 GMT+10" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 星期二 下午6:23:00 [伊朗標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030年5月30日 星期四 凌晨3:17:00 [伊朗標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 星期三 上午10:30:00 [GMT+03:30]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月13日 星期二 凌晨1:16:40 [伊朗標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 星期日 下午1:16:40 [伊朗夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024年3月17日 星期日 凌晨2:00:00 [東歐標準時間]" + "locale": "en-GB", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "17 March 2024, 09:00:00 GMT+9" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 星期一 下午4:14:15 [東歐夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 星期二 上午11:53:00 [莫斯科夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050年5月29日 星期日 晚上7:47:00 [東歐夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 星期三 凌晨3:00:00 [GMT+03:00]" + "locale": "en-GB", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 16:53:00 GMT+9" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月12日 星期一 下午4:46:40 [莫斯科標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 星期日 凌晨4:46:40 [東歐夏令時間]" + "locale": "en-GB", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "30 May 2050, 01:47:00 GMT+9" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024年3月7日 星期四 上午10:00:01 [東歐標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 星期一 晚上11:14:15 [東歐夏令時間]" + "locale": "en-GB", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "16 July 1969, 09:00:00 GMT+9" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 星期二 下午6:53:00 [莫斯科夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030年5月30日 星期四 凌晨2:47:00 [東歐夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 星期三 上午10:00:00 [GMT+03:00]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月13日 星期二 凌晨12:46:40 [莫斯科標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 星期日 上午11:46:40 [東歐夏令時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024年3月17日 星期日 上午10:00:00 [澳洲東部標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月2日 星期一 晚上11:14:15 [澳洲東部標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984年5月29日 星期二 下午5:53:00 [澳洲東部標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050年5月30日 星期一 凌晨2:47:00 [澳洲東部標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 星期三 上午10:00:00 [GMT+10:00]" + "locale": "en-GB", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 23:53:00 GMT+9" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月12日 星期一 晚上11:46:40 [澳洲東部標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 星期日 上午11:46:40 [澳洲東部標準時間]" + "locale": "en-GB", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "30 May 2030, 08:47:00 GMT+9" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024年3月7日 星期四 下午6:00:01 [澳洲東部標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月3日 星期二 清晨6:14:15 [澳洲東部標準時間]" + "locale": "en-GB", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "16 July 1969, 16:00:00 GMT+9" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984年5月30日 星期三 凌晨12:53:00 [澳洲東部標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030年5月30日 星期四 上午9:47:00 [澳洲東部標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 星期三 下午5:00:00 [GMT+10:00]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月13日 星期二 清晨7:46:40 [澳洲東部標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 星期日 下午6:46:40 [澳洲東部標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024年3月17日 星期日 上午9:00:00 [帛琉時間]" + "locale": "en-GB", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "16 March 2024, 21:00:00 GMT-3" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月2日 星期一 晚上10:14:15 [帛琉時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 星期二 下午4:53:00 [帛琉時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050年5月30日 星期一 凌晨1:47:00 [帛琉時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 星期三 上午9:00:00 [GMT+09:00]" + "locale": "en-GB", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "29 May 1984, 04:53:00 GMT-3" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月12日 星期一 晚上10:46:40 [帛琉時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 星期日 上午10:46:40 [帛琉時間]" + "locale": "en-GB", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "29 May 2050, 13:47:00 GMT-3" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024年3月7日 星期四 下午5:00:01 [帛琉時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月3日 星期二 清晨5:14:15 [帛琉時間]" + "locale": "en-GB", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "15 July 1969, 21:00:00 GMT-3" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 星期二 晚上11:53:00 [帛琉時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030年5月30日 星期四 上午8:47:00 [帛琉時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 星期三 下午4:00:00 [GMT+09:00]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月13日 星期二 清晨6:46:40 [帛琉時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 星期日 下午5:46:40 [帛琉時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024年3月16日 星期六 晚上9:00:00 [烏拉圭標準時間]" + "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": "full", - "timeLength": "full", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 星期一 上午10:14:15 [烏拉圭標準時間]" + "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": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 星期二 凌晨4:53:00 [烏拉圭標準時間]" + "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": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050年5月29日 星期日 下午1:47:00 [烏拉圭標準時間]" + "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": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969年7月15日 星期二 晚上9:00:00 [GMT-03:00]" + "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": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 星期一 上午10:46:40 [烏拉圭標準時間]" + "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": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001年9月8日 星期六 晚上10:46:40 [烏拉圭標準時間]" + "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": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024年3月7日 星期四 清晨5:00:01 [烏拉圭標準時間]" + "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": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 星期一 下午5:14:15 [烏拉圭標準時間]" + "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": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 星期二 上午11:53:00 [烏拉圭標準時間]" + "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": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030年5月29日 星期三 晚上8:47:00 [烏拉圭標準時間]" + "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": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969年7月16日 星期三 凌晨4:00:00 [GMT-03:00]" + "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": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 星期一 下午6:46:40 [烏拉圭標準時間]" + "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": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001年9月9日 星期日 清晨5:46:40 [烏拉圭標準時間]" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024年3月16日 星期六 下午5:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 星期一 清晨6:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 星期二 凌晨12:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050年5月29日 星期日 上午9:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969年7月15日 星期二 下午5:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 星期一 清晨5:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月8日 星期六 下午6:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024年3月7日 星期四 凌晨12:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 星期一 下午1:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 星期二 清晨7:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030年5月29日 星期三 下午4:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", + "locale": "en-GB", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969年7月16日 星期三 凌晨12:00" + "dateTimeFormatType": "atTime", + "expected": "Wednesday, 16 July 1969 at 00:00:00 GMT-07:00" }, { "dateLength": "full", - "timeLength": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", + "locale": "en-GB", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 星期一 下午1:46" + "dateTimeFormatType": "standard", + "expected": "Monday, 12 January 1970, 13:46:40 Pacific Standard Time" }, { "dateLength": "full", - "timeLength": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月9日 星期日 凌晨1:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024年3月17日 星期日 凌晨1:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 星期一 下午2:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 星期二 上午8:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050年5月29日 星期日 下午5:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 星期三 凌晨1:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 星期一 下午2:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 星期日 凌晨2:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024年3月7日 星期四 上午9:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 星期一 晚上9:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 星期二 下午3:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030年5月30日 星期四 凌晨12:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 星期三 上午8:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 星期一 晚上10:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 星期日 上午9:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024年3月17日 星期日 凌晨3:30" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月2日 星期一 下午5:44" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 星期二 上午11:23" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050年5月29日 星期日 晚上8:17" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 星期三 凌晨3:30" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月12日 星期一 下午5:16" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 星期日 清晨6:16" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024年3月7日 星期四 上午11:30" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月3日 星期二 凌晨12:44" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 星期二 下午6:23" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030年5月30日 星期四 凌晨3:17" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 星期三 上午10:30" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月13日 星期二 凌晨1:16" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 星期日 下午1:16" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024年3月17日 星期日 凌晨2:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 星期一 下午4:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 星期二 上午11:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050年5月29日 星期日 晚上7:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 星期三 凌晨3:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月12日 星期一 下午4:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 星期日 凌晨4:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024年3月7日 星期四 上午10:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 星期一 晚上11:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 星期二 下午6:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030年5月30日 星期四 凌晨2:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 星期三 上午10:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月13日 星期二 凌晨12:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 星期日 上午11:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024年3月17日 星期日 上午10:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月2日 星期一 晚上11:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984年5月29日 星期二 下午5:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050年5月30日 星期一 凌晨2:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 星期三 上午10:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月12日 星期一 晚上11:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 星期日 上午11:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024年3月7日 星期四 下午6:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月3日 星期二 清晨6:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984年5月30日 星期三 凌晨12:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030年5月30日 星期四 上午9:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 星期三 下午5:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月13日 星期二 清晨7:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 星期日 下午6:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024年3月17日 星期日 上午9:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月2日 星期一 晚上10:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 星期二 下午4:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050年5月30日 星期一 凌晨1:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 星期三 上午9:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月12日 星期一 晚上10:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 星期日 上午10:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024年3月7日 星期四 下午5:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月3日 星期二 清晨5:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 星期二 晚上11:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030年5月30日 星期四 上午8:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 星期三 下午4:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月13日 星期二 清晨6:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 星期日 下午5:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024年3月16日 星期六 晚上9:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 星期一 上午10:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 星期二 凌晨4:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050年5月29日 星期日 下午1:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969年7月15日 星期二 晚上9:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 星期一 上午10:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001年9月8日 星期六 晚上10:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024年3月7日 星期四 清晨5:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 星期一 下午5:14" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 星期二 上午11:53" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030年5月29日 星期三 晚上8:47" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969年7月16日 星期三 凌晨4:00" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 星期一 下午6:46" + "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": "short", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001年9月9日 星期日 清晨5:46" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024年3月16日 下午5:00:00 [PDT]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 清晨6:14:15 [PDT]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 凌晨12:53:00 [PDT]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050年5月29日 上午9:47:00 [PDT]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969年7月15日 下午5:00:00 [GMT-7]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 清晨5:46:40 [PST]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月8日 下午6:46:40 [PDT]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024年3月7日 凌晨12:00:01 [PST]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 下午1:14:15 [PDT]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 清晨7:53:00 [PDT]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030年5月29日 下午4:47:00 [PDT]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969年7月16日 凌晨12:00:00 [GMT-7]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 下午1:46:40 [PST]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月9日 凌晨1:46:40 [PDT]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024年3月17日 凌晨1:00:00 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 下午2:14:15 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 上午8:53:00 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050年5月29日 下午5:47:00 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 凌晨1:00:00 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 下午2:46:40 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 凌晨2:46:40 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024年3月7日 上午9:00:01 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 晚上9:14:15 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 下午3:53:00 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030年5月30日 凌晨12:47:00 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 上午8:00:00 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 晚上10:46:40 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 上午9:46:40 [GMT+1]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024年3月17日 凌晨3:30:00 [GMT+3:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月2日 下午5:44:15 [GMT+4:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 上午11:23:00 [GMT+3:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050年5月29日 晚上8:17:00 [GMT+3:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 凌晨3:30:00 [GMT+3:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月12日 下午5:16:40 [GMT+3:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 清晨6:16:40 [GMT+4:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024年3月7日 上午11:30:01 [GMT+3:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月3日 凌晨12:44:15 [GMT+4:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 下午6:23:00 [GMT+3:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030年5月30日 凌晨3:17:00 [GMT+3:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 上午10:30:00 [GMT+3:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月13日 凌晨1:16:40 [GMT+3:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 下午1:16:40 [GMT+4:30]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024年3月17日 凌晨2:00:00 [GMT+2]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 下午4:14:15 [GMT+3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 上午11:53:00 [GMT+4]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050年5月29日 晚上7:47:00 [GMT+3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 凌晨3:00:00 [GMT+3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月12日 下午4:46:40 [GMT+3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 凌晨4:46:40 [GMT+3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024年3月7日 上午10:00:01 [GMT+2]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 晚上11:14:15 [GMT+3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 下午6:53:00 [GMT+4]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030年5月30日 凌晨2:47:00 [GMT+3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 上午10:00:00 [GMT+3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月13日 凌晨12:46:40 [GMT+3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 上午11:46:40 [GMT+3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024年3月17日 上午10:00:00 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月2日 晚上11:14:15 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984年5月29日 下午5:53:00 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050年5月30日 凌晨2:47:00 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 上午10:00:00 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月12日 晚上11:46:40 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 上午11:46:40 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024年3月7日 下午6:00:01 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月3日 清晨6:14:15 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984年5月30日 凌晨12:53:00 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030年5月30日 上午9:47:00 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 下午5:00:00 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月13日 清晨7:46:40 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 下午6:46:40 [GMT+10]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024年3月17日 上午9:00:00 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月2日 晚上10:14:15 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 下午4:53:00 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050年5月30日 凌晨1:47:00 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 上午9:00:00 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月12日 晚上10:46:40 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 上午10:46:40 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024年3月7日 下午5:00:01 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月3日 清晨5:14:15 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 晚上11:53:00 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030年5月30日 上午8:47:00 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 下午4:00:00 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月13日 清晨6:46:40 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 下午5:46:40 [GMT+9]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024年3月16日 晚上9:00:00 [GMT-3]" + "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": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 上午10:14:15 [GMT-3]" + "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": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 凌晨4:53:00 [GMT-3]" + "locale": "en-GB", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Saturday, 16 March 2024, 17:00" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050年5月29日 下午1:47:00 [GMT-3]" + "locale": "en-GB", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Saturday, 16 March 2024 at 17:00" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969年7月15日 晚上9:00:00 [GMT-3]" + "locale": "en-GB", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Monday, 2 July 2001, 06:14" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 上午10:46:40 [GMT-3]" + "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": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001年9月8日 晚上10:46:40 [GMT-3]" + "locale": "en-GB", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 00:53" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024年3月7日 清晨5:00:01 [GMT-3]" + "locale": "en-GB", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 29 May 1984 at 00:53" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 下午5:14:15 [GMT-3]" + "locale": "en-GB", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 29 May 2050, 09:47" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 上午11:53:00 [GMT-3]" + "locale": "en-GB", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 29 May 2050 at 09:47" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030年5月29日 晚上8:47:00 [GMT-3]" + "locale": "en-GB", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 15 July 1969, 17:00" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969年7月16日 凌晨4:00:00 [GMT-3]" + "locale": "en-GB", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 15 July 1969 at 17:00" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 下午6:46:40 [GMT-3]" + "locale": "en-GB", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Monday, 12 January 1970, 05:46" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001年9月9日 清晨5:46:40 [GMT-3]" + "locale": "en-GB", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 12 January 1970 at 05:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024年3月16日 下午5:00:00 [PDT]" + "locale": "en-GB", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Saturday, 8 September 2001, 18:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 清晨6:14:15 [PDT]" + "locale": "en-GB", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Saturday, 8 September 2001 at 18:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 凌晨12:53:00 [PDT]" + "locale": "en-GB", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Thursday, 7 March 2024, 00:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050年5月29日 上午9:47:00 [PDT]" + "locale": "en-GB", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, 7 March 2024 at 00:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969年7月15日 下午5:00:00 [GMT-7]" + "locale": "en-GB", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Monday, 2 July 2001, 13:14" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 清晨5:46:40 [PST]" + "locale": "en-GB", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 2 July 2001 at 13:14" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月8日 下午6:46:40 [PDT]" + "locale": "en-GB", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 07:53" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024年3月7日 凌晨12:00:01 [PST]" + "locale": "en-GB", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 29 May 1984 at 07:53" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日 下午1:14:15 [PDT]" + "locale": "en-GB", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 29 May 2030, 16:47" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日 清晨7:53:00 [PDT]" + "locale": "en-GB", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, 29 May 2030 at 16:47" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030年5月29日 下午4:47:00 [PDT]" + "locale": "en-GB", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 00:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", + "locale": "en-GB", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969年7月16日 凌晨12:00:00 [GMT-7]" + "dateTimeFormatType": "atTime", + "expected": "Wednesday, 16 July 1969 at 00:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", + "locale": "en-GB", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日 下午1:46:40 [PST]" + "dateTimeFormatType": "standard", + "expected": "Monday, 12 January 1970, 13:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月9日 凌晨1:46:40 [PDT]" + "locale": "en-GB", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 12 January 1970 at 13:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024年3月17日 凌晨1:00:00 [GMT+1]" + "locale": "en-GB", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 9 September 2001, 01:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 下午2:14:15 [GMT+1]" + "locale": "en-GB", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 9 September 2001 at 01:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 上午8:53:00 [GMT+1]" + "locale": "en-GB", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 17 March 2024, 01:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050年5月29日 下午5:47:00 [GMT+1]" + "locale": "en-GB", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 17 March 2024 at 01:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 凌晨1:00:00 [GMT+1]" + "locale": "en-GB", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Monday, 2 July 2001, 14:14" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 下午2:46:40 [GMT+1]" + "locale": "en-GB", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 2 July 2001 at 14:14" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 凌晨2:46:40 [GMT+1]" + "locale": "en-GB", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 08:53" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024年3月7日 上午9:00:01 [GMT+1]" + "locale": "en-GB", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 29 May 1984 at 08:53" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日 晚上9:14:15 [GMT+1]" + "locale": "en-GB", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 29 May 2050, 17:47" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日 下午3:53:00 [GMT+1]" + "locale": "en-GB", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 29 May 2050 at 17:47" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030年5月30日 凌晨12:47:00 [GMT+1]" + "locale": "en-GB", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 01:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日 上午8:00:00 [GMT+1]" + "locale": "en-GB", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, 16 July 1969 at 01:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日 晚上10:46:40 [GMT+1]" + "locale": "en-GB", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Monday, 12 January 1970, 14:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日 上午9:46:40 [GMT+1]" + "locale": "en-GB", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 12 January 1970 at 14:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024年3月17日 凌晨3:30:00 [GMT+3:30]" + "locale": "en-GB", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 9 September 2001, 02:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月2日 下午5:44:15 [GMT+4:30]" + "locale": "en-GB", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 9 September 2001 at 02:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 上午11:23:00 [GMT+3:30]" + "locale": "en-GB", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Thursday, 7 March 2024, 09:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050年5月29日 晚上8:17:00 [GMT+3:30]" + "locale": "en-GB", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, 7 March 2024 at 09:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 凌晨3:30:00 [GMT+3:30]" + "locale": "en-GB", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Monday, 2 July 2001, 21:14" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月12日 下午5:16:40 [GMT+3:30]" + "locale": "en-GB", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 2 July 2001 at 21:14" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 清晨6:16:40 [GMT+4:30]" + "locale": "en-GB", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 15:53" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024年3月7日 上午11:30:01 [GMT+3:30]" + "locale": "en-GB", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 29 May 1984 at 15:53" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月3日 凌晨12:44:15 [GMT+4:30]" + "locale": "en-GB", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Thursday, 30 May 2030, 00:47" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日 下午6:23:00 [GMT+3:30]" + "locale": "en-GB", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, 30 May 2030 at 00:47" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030年5月30日 凌晨3:17:00 [GMT+3:30]" + "locale": "en-GB", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 08:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日 上午10:30:00 [GMT+3:30]" + "locale": "en-GB", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, 16 July 1969 at 08:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月13日 凌晨1:16:40 [GMT+3:30]" + "locale": "en-GB", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Monday, 12 January 1970, 22:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日 下午1:16:40 [GMT+4:30]" + "locale": "en-GB", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 12 January 1970 at 22:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024年3月17日 凌晨2:00:00 [GMT+2]" + "locale": "en-GB", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 9 September 2001, 09:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 下午4:14:15 [GMT+3]" + "locale": "en-GB", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 9 September 2001 at 09:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 上午11:53:00 [GMT+4]" + "locale": "en-GB", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 17 March 2024, 03:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050年5月29日 晚上7:47:00 [GMT+3]" + "locale": "en-GB", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 17 March 2024 at 03:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 凌晨3:00:00 [GMT+3]" + "locale": "en-GB", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Monday, 2 July 2001, 17:44" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月12日 下午4:46:40 [GMT+3]" + "locale": "en-GB", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 2 July 2001 at 17:44" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 凌晨4:46:40 [GMT+3]" + "locale": "en-GB", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 11:23" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024年3月7日 上午10:00:01 [GMT+2]" + "locale": "en-GB", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 29 May 1984 at 11:23" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日 晚上11:14:15 [GMT+3]" + "locale": "en-GB", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 29 May 2050, 20:17" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日 下午6:53:00 [GMT+4]" + "locale": "en-GB", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 29 May 2050 at 20:17" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030年5月30日 凌晨2:47:00 [GMT+3]" + "locale": "en-GB", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 03:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日 上午10:00:00 [GMT+3]" + "locale": "en-GB", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, 16 July 1969 at 03:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月13日 凌晨12:46:40 [GMT+3]" + "locale": "en-GB", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Monday, 12 January 1970, 17:16" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日 上午11:46:40 [GMT+3]" + "locale": "en-GB", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 12 January 1970 at 17:16" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024年3月17日 上午10:00:00 [GMT+10]" + "locale": "en-GB", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 9 September 2001, 06:16" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月2日 晚上11:14:15 [GMT+10]" + "locale": "en-GB", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 9 September 2001 at 06:16" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984年5月29日 下午5:53:00 [GMT+10]" + "locale": "en-GB", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Thursday, 7 March 2024, 11:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050年5月30日 凌晨2:47:00 [GMT+10]" + "locale": "en-GB", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, 7 March 2024 at 11:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 上午10:00:00 [GMT+10]" + "locale": "en-GB", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 3 July 2001, 00:44" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月12日 晚上11:46:40 [GMT+10]" + "locale": "en-GB", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 3 July 2001 at 00:44" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 上午11:46:40 [GMT+10]" + "locale": "en-GB", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 18:23" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024年3月7日 下午6:00:01 [GMT+10]" + "locale": "en-GB", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 29 May 1984 at 18:23" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月3日 清晨6:14:15 [GMT+10]" + "locale": "en-GB", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Thursday, 30 May 2030, 03:17" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984年5月30日 凌晨12:53:00 [GMT+10]" + "locale": "en-GB", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, 30 May 2030 at 03:17" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030年5月30日 上午9:47:00 [GMT+10]" + "locale": "en-GB", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 10:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日 下午5:00:00 [GMT+10]" + "locale": "en-GB", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, 16 July 1969 at 10:30" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月13日 清晨7:46:40 [GMT+10]" + "locale": "en-GB", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 13 January 1970, 01:16" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日 下午6:46:40 [GMT+10]" + "locale": "en-GB", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 13 January 1970 at 01:16" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024年3月17日 上午9:00:00 [GMT+9]" + "locale": "en-GB", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 9 September 2001, 13:16" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月2日 晚上10:14:15 [GMT+9]" + "locale": "en-GB", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 9 September 2001 at 13:16" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 下午4:53:00 [GMT+9]" + "locale": "en-GB", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 17 March 2024, 02:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050年5月30日 凌晨1:47:00 [GMT+9]" + "locale": "en-GB", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 17 March 2024 at 02:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 上午9:00:00 [GMT+9]" + "locale": "en-GB", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Monday, 2 July 2001, 16:14" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月12日 晚上10:46:40 [GMT+9]" + "locale": "en-GB", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 2 July 2001 at 16:14" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 上午10:46:40 [GMT+9]" + "locale": "en-GB", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 11:53" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024年3月7日 下午5:00:01 [GMT+9]" + "locale": "en-GB", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 29 May 1984 at 11:53" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月3日 清晨5:14:15 [GMT+9]" + "locale": "en-GB", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 29 May 2050, 19:47" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日 晚上11:53:00 [GMT+9]" + "locale": "en-GB", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 29 May 2050 at 19:47" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030年5月30日 上午8:47:00 [GMT+9]" + "locale": "en-GB", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 03:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日 下午4:00:00 [GMT+9]" + "locale": "en-GB", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, 16 July 1969 at 03:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月13日 清晨6:46:40 [GMT+9]" + "locale": "en-GB", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Monday, 12 January 1970, 16:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日 下午5:46:40 [GMT+9]" + "locale": "en-GB", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 12 January 1970 at 16:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024年3月16日 晚上9:00:00 [GMT-3]" + "locale": "en-GB", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 9 September 2001, 04:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 上午10:14:15 [GMT-3]" + "locale": "en-GB", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Sunday, 9 September 2001 at 04:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 凌晨4:53:00 [GMT-3]" + "locale": "en-GB", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Thursday, 7 March 2024, 10:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050年5月29日 下午1:47:00 [GMT-3]" + "locale": "en-GB", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, 7 March 2024 at 10:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969年7月15日 晚上9:00:00 [GMT-3]" + "locale": "en-GB", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Monday, 2 July 2001, 23:14" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 上午10:46:40 [GMT-3]" + "locale": "en-GB", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Monday, 2 July 2001 at 23:14" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001年9月8日 晚上10:46:40 [GMT-3]" + "locale": "en-GB", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 18:53" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024年3月7日 清晨5:00:01 [GMT-3]" + "locale": "en-GB", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 29 May 1984 at 18:53" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日 下午5:14:15 [GMT-3]" + "locale": "en-GB", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Thursday, 30 May 2030, 02:47" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984年5月29日 上午11:53:00 [GMT-3]" + "locale": "en-GB", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Thursday, 30 May 2030 at 02:47" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030年5月29日 晚上8:47:00 [GMT-3]" + "locale": "en-GB", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 10:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969年7月16日 凌晨4:00:00 [GMT-3]" + "locale": "en-GB", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Wednesday, 16 July 1969 at 10:00" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日 下午6:46:40 [GMT-3]" + "locale": "en-GB", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 13 January 1970, 00:46" }, { - "timeLength": "long", + "dateLength": "full", + "timeLength": "short", "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001年9月9日 清晨5:46:40 [GMT-3]" + "locale": "en-GB", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Tuesday, 13 January 1970 at 00:46" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024/2/7 下午5:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001/5/12 清晨6:14" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984/4/29 凌晨12:53" + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 17 March 2024, 10:00" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050/4/9 上午9:47" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969/6/2 下午5:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1969/12/5 清晨5:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001/7/21 下午6:46" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 17:53" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024/1/27 凌晨12:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001/5/12 下午1:14" + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Monday, 30 May 2050, 02:47" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984/4/29 清晨7:53" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030/4/28 下午4:47" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 10:00" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969/6/3 凌晨12:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1969/12/5 下午1:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001/7/22 凌晨1:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024/2/8 凌晨1:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001/5/12 下午2:14" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984/4/29 上午8:53" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050/4/9 下午5:47" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969/6/3 凌晨1:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1969/12/5 下午2:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001/7/22 凌晨2:46" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 30 May 1984, 00:53" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024/1/27 上午9:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001/5/12 晚上9:14" + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Thursday, 30 May 2030, 09:47" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984/4/29 下午3:53" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030/4/29 凌晨12:47" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 17:00" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969/6/3 上午8:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1969/12/5 晚上10:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001/7/22 上午9:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024/2/8 凌晨3:30" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001/5/12 下午5:44" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984/4/29 上午11:23" + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 17 March 2024, 09:00" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050/4/9 晚上8:17" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969/6/3 凌晨3:30" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1969/12/5 下午5:16" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001/7/22 清晨6:16" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 16:53" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024/1/27 上午11:30" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001/5/13 凌晨12:44" + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Monday, 30 May 2050, 01:47" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984/4/29 下午6:23" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030/4/29 凌晨3:17" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 09:00" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969/6/3 上午10:30" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1969/12/6 凌晨1:16" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001/7/22 下午1:16" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024/2/8 凌晨2:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001/5/12 下午4:14" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984/4/29 上午11:53" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050/4/9 晚上7:47" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969/6/3 凌晨3:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1969/12/5 下午4:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001/7/22 凌晨4:46" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 23:53" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024/1/27 上午10:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001/5/12 晚上11:14" + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Thursday, 30 May 2030, 08:47" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984/4/29 下午6:53" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030/4/29 凌晨2:47" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 16:00" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969/6/3 上午10:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1969/12/6 凌晨12:46" + "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": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "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]", - "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]", - "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]", - "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]", - "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]", - "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]", - "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]", - "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]", - "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]", - "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]", - "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]", - "expected": "2030/4/29 上午9:47" - }, - { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969/6/3 下午5:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1969/12/6 清晨7:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001/7/22 下午6:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024/2/8 上午9:00" + "calendar": "gregorian", + "locale": "en-GB", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Saturday, 16 March 2024, 21:00" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001/5/12 晚上10:14" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984/4/29 下午4:53" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050/4/10 凌晨1:47" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969/6/3 上午9:00" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 04:53" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1969/12/5 晚上10:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001/7/22 上午10:46" + "calendar": "gregorian", + "locale": "en-GB", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Sunday, 29 May 2050, 13:47" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024/1/27 下午5:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001/5/13 清晨5:14" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 15 July 1969, 21:00" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984/4/29 晚上11:53" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030/4/29 上午8:47" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969/6/3 下午4:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1969/12/6 清晨6:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001/7/22 下午5:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024/2/7 晚上9:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001/5/12 上午10:14" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984/4/29 凌晨4:53" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050/4/9 下午1:47" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969/6/2 晚上9:00" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Tuesday, 29 May 1984, 11:53" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1969/12/5 上午10:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001/7/21 晚上10:46" + "calendar": "gregorian", + "locale": "en-GB", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 29 May 2030, 20:47" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024/1/27 清晨5:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001/5/12 下午5:14" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Wednesday, 16 July 1969, 04:00" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984/4/29 上午11:53" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030/4/28 晚上8:47" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969/6/3 凌晨4:00" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1969/12/5 下午6:46" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001/7/22 清晨5:46" + "dateTimeFormatType": "atTime", + "expected": "Sunday, 9 September 2001 at 05:46" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024年二月初七 下午5:00:00" + "expected": "16 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001年五月十二 清晨6:14:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984年四月廿九 凌晨12:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050年四月初九 上午9:47:00" + "expected": "29 May 2050" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969年六月初二 下午5:00:00" + "expected": "15 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1969年臘月初五 清晨5:46:40" + "expected": "12 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001年七月廿一 下午6:46:40" + "expected": "8 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024年正月廿七 凌晨12:00:01" + "expected": "7 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001年五月十二 下午1:14:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984年四月廿九 清晨7:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030年四月廿八 下午4:47:00" + "expected": "29 May 2030" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969年六月初三 凌晨12:00:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1969年臘月初五 下午1:46:40" + "expected": "12 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001年七月廿二 凌晨1:46:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024年二月初八 凌晨1:00:00" + "expected": "17 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001年五月十二 下午2:14:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984年四月廿九 上午8:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050年四月初九 下午5:47:00" + "expected": "29 May 2050" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969年六月初三 凌晨1:00:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1969年臘月初五 下午2:46:40" + "expected": "12 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001年七月廿二 凌晨2:46:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024年正月廿七 上午9:00:01" + "expected": "7 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001年五月十二 晚上9:14:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984年四月廿九 下午3:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030年四月廿九 凌晨12:47:00" + "expected": "30 May 2030" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969年六月初三 上午8:00:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1969年臘月初五 晚上10:46:40" + "expected": "12 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001年七月廿二 上午9:46:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024年二月初八 凌晨3:30:00" + "expected": "17 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001年五月十二 下午5:44:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984年四月廿九 上午11:23:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050年四月初九 晚上8:17:00" + "expected": "29 May 2050" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969年六月初三 凌晨3:30:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1969年臘月初五 下午5:16:40" + "expected": "12 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001年七月廿二 清晨6:16:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024年正月廿七 上午11:30:01" + "expected": "7 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001年五月十三 凌晨12:44:15" + "expected": "3 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984年四月廿九 下午6:23:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030年四月廿九 凌晨3:17:00" + "expected": "30 May 2030" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969年六月初三 上午10:30:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1969年臘月初六 凌晨1:16:40" + "expected": "13 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001年七月廿二 下午1:16:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024年二月初八 凌晨2:00:00" + "expected": "17 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001年五月十二 下午4:14:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984年四月廿九 上午11:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050年四月初九 晚上7:47:00" + "expected": "29 May 2050" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969年六月初三 凌晨3:00:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1969年臘月初五 下午4:46:40" + "expected": "12 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001年七月廿二 凌晨4:46:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024年正月廿七 上午10:00:01" + "expected": "7 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001年五月十二 晚上11:14:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984年四月廿九 下午6:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030年四月廿九 凌晨2:47:00" + "expected": "30 May 2030" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969年六月初三 上午10:00:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1969年臘月初六 凌晨12:46:40" + "expected": "13 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001年七月廿二 上午11:46:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024年二月初八 上午10:00:00" + "expected": "17 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001年五月十二 晚上11:14:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984年四月廿九 下午5:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050年四月初十 凌晨2:47:00" + "expected": "30 May 2050" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969年六月初三 上午10:00:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1969年臘月初五 晚上11:46:40" + "expected": "12 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001年七月廿二 上午11:46:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024年正月廿七 下午6:00:01" + "expected": "7 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001年五月十三 清晨6:14:15" + "expected": "3 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984年四月三十 凌晨12:53:00" + "expected": "30 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030年四月廿九 上午9:47:00" + "expected": "30 May 2030" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969年六月初三 下午5:00:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1969年臘月初六 清晨7:46:40" + "expected": "13 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001年七月廿二 下午6:46:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024年二月初八 上午9:00:00" + "expected": "17 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001年五月十二 晚上10:14:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984年四月廿九 下午4:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050年四月初十 凌晨1:47:00" + "expected": "30 May 2050" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969年六月初三 上午9:00:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1969年臘月初五 晚上10:46:40" + "expected": "12 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001年七月廿二 上午10:46:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024年正月廿七 下午5:00:01" + "expected": "7 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001年五月十三 清晨5:14:15" + "expected": "3 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984年四月廿九 晚上11:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030年四月廿九 上午8:47:00" + "expected": "30 May 2030" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969年六月初三 下午4:00:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1969年臘月初六 清晨6:46:40" + "expected": "13 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001年七月廿二 下午5:46:40" + "expected": "9 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024年二月初七 晚上9:00:00" + "expected": "16 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001年五月十二 上午10:14:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984年四月廿九 凌晨4:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050年四月初九 下午1:47:00" + "expected": "29 May 2050" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969年六月初二 晚上9:00:00" + "expected": "15 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1969年臘月初五 上午10:46:40" + "expected": "12 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001年七月廿一 晚上10:46:40" + "expected": "8 September 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024年正月廿七 清晨5:00:01" + "expected": "7 March 2024" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001年五月十二 下午5:14:15" + "expected": "2 July 2001" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984年四月廿九 上午11:53:00" + "expected": "29 May 1984" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030年四月廿八 晚上8:47:00" + "expected": "29 May 2030" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969年六月初三 凌晨4:00:00" + "expected": "16 July 1969" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1969年臘月初五 下午6:46:40" + "expected": "12 January 1970" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "dateLength": "long", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001年七月廿二 清晨5:46:40" + "expected": "9 September 2001" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024甲辰年二月初七 下午5:00:00 [PDT]" + "expected": "17:00:00 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二 清晨6:14:15 [PDT]" + "expected": "06:14:15 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九 凌晨12:53:00 [PDT]" + "expected": "00:53:00 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050庚午年四月初九 上午9:47:00 [PDT]" + "expected": "09:47:00 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初二 下午5:00:00 [GMT-7]" + "expected": "17:00:00 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五 清晨5:46:40 [PST]" + "expected": "05:46:40 GMT-8" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿一 下午6:46:40 [PDT]" + "expected": "18:46:40 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024甲辰年正月廿七 凌晨12:00:01 [PST]" + "expected": "00:00:01 GMT-8" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二 下午1:14:15 [PDT]" + "expected": "13:14:15 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九 清晨7:53:00 [PDT]" + "expected": "07:53:00 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030庚戌年四月廿八 下午4:47:00 [PDT]" + "expected": "16:47:00 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初三 凌晨12:00:00 [GMT-7]" + "expected": "00:00:00 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五 下午1:46:40 [PST]" + "expected": "13:46:40 GMT-8" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿二 凌晨1:46:40 [PDT]" + "expected": "01:46:40 GMT-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024甲辰年二月初八 凌晨1:00:00 [GMT+1]" + "expected": "01:00:00 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二 下午2:14:15 [GMT+1]" + "expected": "14:14:15 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九 上午8:53:00 [GMT+1]" + "expected": "08:53:00 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050庚午年四月初九 下午5:47:00 [GMT+1]" + "expected": "17:47:00 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三 凌晨1:00:00 [GMT+1]" + "expected": "01:00:00 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五 下午2:46:40 [GMT+1]" + "expected": "14:46:40 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二 凌晨2:46:40 [GMT+1]" + "expected": "02:46:40 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024甲辰年正月廿七 上午9:00:01 [GMT+1]" + "expected": "09:00:01 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二 晚上9:14:15 [GMT+1]" + "expected": "21:14:15 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九 下午3:53:00 [GMT+1]" + "expected": "15:53:00 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030庚戌年四月廿九 凌晨12:47:00 [GMT+1]" + "expected": "00:47:00 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三 上午8:00:00 [GMT+1]" + "expected": "08:00:00 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+1]" + "expected": "22:46:40 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二 上午9:46:40 [GMT+1]" + "expected": "09:46:40 GMT+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024甲辰年二月初八 凌晨3:30:00 [GMT+3:30]" + "expected": "03:30:00 GMT+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十二 下午5:44:15 [GMT+4:30]" + "expected": "17:44:15 GMT+4:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九 上午11:23:00 [GMT+3:30]" + "expected": "11:23:00 GMT+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050庚午年四月初九 晚上8:17:00 [GMT+3:30]" + "expected": "20:17:00 GMT+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三 凌晨3:30:00 [GMT+3:30]" + "expected": "03:30:00 GMT+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初五 下午5:16:40 [GMT+3:30]" + "expected": "17:16:40 GMT+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二 清晨6:16:40 [GMT+4:30]" + "expected": "06:16:40 GMT+4:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024甲辰年正月廿七 上午11:30:01 [GMT+3:30]" + "expected": "11:30:01 GMT+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十三 凌晨12:44:15 [GMT+4:30]" + "expected": "00:44:15 GMT+4:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九 下午6:23:00 [GMT+3:30]" + "expected": "18:23:00 GMT+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030庚戌年四月廿九 凌晨3:17:00 [GMT+3:30]" + "expected": "03:17:00 GMT+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三 上午10:30:00 [GMT+3:30]" + "expected": "10:30:00 GMT+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初六 凌晨1:16:40 [GMT+3:30]" + "expected": "01:16:40 GMT+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二 下午1:16:40 [GMT+4:30]" + "expected": "13:16:40 GMT+4:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024甲辰年二月初八 凌晨2:00:00 [GMT+2]" + "expected": "02:00:00 EET" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二 下午4:14:15 [GMT+3]" + "expected": "16:14:15 EEST" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九 上午11:53:00 [GMT+4]" + "expected": "11:53:00 GMT+4" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050庚午年四月初九 晚上7:47:00 [GMT+3]" + "expected": "19:47:00 EEST" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三 凌晨3:00:00 [GMT+3]" + "expected": "03:00:00 GMT+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初五 下午4:46:40 [GMT+3]" + "expected": "16:46:40 GMT+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二 凌晨4:46:40 [GMT+3]" + "expected": "04:46:40 EEST" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024甲辰年正月廿七 上午10:00:01 [GMT+2]" + "expected": "10:00:01 EET" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+3]" + "expected": "23:14:15 EEST" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九 下午6:53:00 [GMT+4]" + "expected": "18:53:00 GMT+4" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030庚戌年四月廿九 凌晨2:47:00 [GMT+3]" + "expected": "02:47:00 EEST" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三 上午10:00:00 [GMT+3]" + "expected": "10:00:00 GMT+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初六 凌晨12:46:40 [GMT+3]" + "expected": "00:46:40 GMT+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+3]" + "expected": "11:46:40 EEST" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024甲辰年二月初八 上午10:00:00 [GMT+10]" + "expected": "10:00:00 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+10]" + "expected": "23:14:15 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月廿九 下午5:53:00 [GMT+10]" + "expected": "17:53:00 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050庚午年四月初十 凌晨2:47:00 [GMT+10]" + "expected": "02:47:00 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三 上午10:00:00 [GMT+10]" + "calendar": "gregorian", + "locale": "en-GB", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "expected": "10:00:00 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初五 晚上11:46:40 [GMT+10]" + "expected": "23:46:40 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+10]" + "expected": "11:46:40 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024甲辰年正月廿七 下午6:00:01 [GMT+10]" + "expected": "18:00:01 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十三 清晨6:14:15 [GMT+10]" + "expected": "06:14:15 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月三十 凌晨12:53:00 [GMT+10]" + "expected": "00:53:00 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030庚戌年四月廿九 上午9:47:00 [GMT+10]" + "expected": "09:47:00 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三 下午5:00:00 [GMT+10]" + "expected": "17:00:00 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初六 清晨7:46:40 [GMT+10]" + "expected": "07:46:40 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二 下午6:46:40 [GMT+10]" + "expected": "18:46:40 GMT+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024甲辰年二月初八 上午9:00:00 [GMT+9]" + "expected": "09:00:00 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十二 晚上10:14:15 [GMT+9]" + "expected": "22:14:15 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九 下午4:53:00 [GMT+9]" + "expected": "16:53:00 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050庚午年四月初十 凌晨1:47:00 [GMT+9]" + "expected": "01:47:00 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三 上午9:00:00 [GMT+9]" + "expected": "09:00:00 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+9]" + "expected": "22:46:40 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二 上午10:46:40 [GMT+9]" + "expected": "10:46:40 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024甲辰年正月廿七 下午5:00:01 [GMT+9]" + "expected": "17:00:01 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十三 清晨5:14:15 [GMT+9]" + "expected": "05:14:15 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九 晚上11:53:00 [GMT+9]" + "expected": "23:53:00 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030庚戌年四月廿九 上午8:47:00 [GMT+9]" + "expected": "08:47:00 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三 下午4:00:00 [GMT+9]" + "expected": "16:00:00 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初六 清晨6:46:40 [GMT+9]" + "expected": "06:46:40 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二 下午5:46:40 [GMT+9]" + "expected": "17:46:40 GMT+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024甲辰年二月初七 晚上9:00:00 [GMT-3]" + "expected": "21:00:00 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二 上午10:14:15 [GMT-3]" + "expected": "10:14:15 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九 凌晨4:53:00 [GMT-3]" + "expected": "04:53:00 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050庚午年四月初九 下午1:47:00 [GMT-3]" + "expected": "13:47:00 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初二 晚上9:00:00 [GMT-3]" + "expected": "21:00:00 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五 上午10:46:40 [GMT-3]" + "expected": "10:46:40 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿一 晚上10:46:40 [GMT-3]" + "expected": "22:46:40 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024甲辰年正月廿七 清晨5:00:01 [GMT-3]" + "expected": "05:00:01 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二 下午5:14:15 [GMT-3]" + "expected": "17:14:15 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九 上午11:53:00 [GMT-3]" + "expected": "11:53:00 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030庚戌年四月廿八 晚上8:47:00 [GMT-3]" + "expected": "20:47:00 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初三 凌晨4:00:00 [GMT-3]" + "expected": "04:00:00 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五 下午6:46:40 [GMT-3]" + "expected": "18:46:40 GMT-3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", + "calendar": "gregorian", + "locale": "en-GB", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿二 清晨5:46:40 [GMT-3]" + "expected": "05:46:40 GMT-3" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024甲辰年二月初七 星期六 下午5:00:00 [太平洋夏令時間]" + "dateTimeFormatType": "standard", + "expected": "2024/3/16 下午5:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二 星期一 清晨6:14:15 [太平洋夏令時間]" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/16 下午5:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九 星期二 凌晨12:53:00 [太平洋夏令時間]" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 清晨6:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050庚午年四月初九 星期日 上午9:47:00 [太平洋夏令時間]" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 清晨6:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初二 星期二 下午5:00:00 [GMT-07:00]" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 凌晨12:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五 星期一 清晨5:46:40 [太平洋標準時間]" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 凌晨12:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿一 星期六 下午6:46:40 [太平洋夏令時間]" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2050/5/29 上午9:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024甲辰年正月廿七 星期四 凌晨12:00:01 [太平洋標準時間]" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2050/5/29 上午9:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二 星期一 下午1:14:15 [太平洋夏令時間]" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1969/7/15 下午5:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九 星期二 清晨7:53:00 [太平洋夏令時間]" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/15 下午5:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030庚戌年四月廿八 星期三 下午4:47:00 [太平洋夏令時間]" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1970/1/12 清晨5:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初三 星期三 凌晨12:00:00 [GMT-07:00]" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/12 清晨5:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五 星期一 下午1:46:40 [太平洋標準時間]" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001/9/8 下午6:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿二 星期日 凌晨1:46:40 [太平洋夏令時間]" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/8 下午6:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024甲辰年二月初八 星期日 凌晨1:00:00 [西非標準時間]" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2024/3/7 凌晨12:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二 星期一 下午2:14:15 [西非標準時間]" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/7 凌晨12:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九 星期二 上午8:53:00 [西非標準時間]" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 下午1:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050庚午年四月初九 星期日 下午5:47:00 [西非標準時間]" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 下午1:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三 星期三 凌晨1:00:00 [GMT+01:00]" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 清晨7:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五 星期一 下午2:46:40 [西非標準時間]" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 清晨7:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二 星期日 凌晨2:46:40 [西非標準時間]" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2030/5/29 下午4:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024甲辰年正月廿七 星期四 上午9:00:01 [西非標準時間]" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2030/5/29 下午4:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二 星期一 晚上9:14:15 [西非標準時間]" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 凌晨12:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九 星期二 下午3:53:00 [西非標準時間]" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 凌晨12:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030庚戌年四月廿九 星期四 凌晨12:47:00 [西非標準時間]" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1970/1/12 下午1:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三 星期三 上午8:00:00 [GMT+01:00]" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/12 下午1:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五 星期一 晚上10:46:40 [西非標準時間]" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 凌晨1:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二 星期日 上午9:46:40 [西非標準時間]" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 凌晨1:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024甲辰年二月初八 星期日 凌晨3:30:00 [伊朗標準時間]" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2024/3/17 凌晨1:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十二 星期一 下午5:44:15 [伊朗夏令時間]" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/17 凌晨1:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九 星期二 上午11:23:00 [伊朗標準時間]" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 下午2:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050庚午年四月初九 星期日 晚上8:17:00 [伊朗標準時間]" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 下午2:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三 星期三 凌晨3:30:00 [GMT+03:30]" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 上午8:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初五 星期一 下午5:16:40 [伊朗標準時間]" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 上午8:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二 星期日 清晨6:16:40 [伊朗夏令時間]" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2050/5/29 下午5:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024甲辰年正月廿七 星期四 上午11:30:01 [伊朗標準時間]" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2050/5/29 下午5:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十三 星期二 凌晨12:44:15 [伊朗夏令時間]" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 凌晨1:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九 星期二 下午6:23:00 [伊朗標準時間]" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 凌晨1:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030庚戌年四月廿九 星期四 凌晨3:17:00 [伊朗標準時間]" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1970/1/12 下午2:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三 星期三 上午10:30:00 [GMT+03:30]" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/12 下午2:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初六 星期二 凌晨1:16:40 [伊朗標準時間]" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 凌晨2:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二 星期日 下午1:16:40 [伊朗夏令時間]" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 凌晨2:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024甲辰年二月初八 星期日 凌晨2:00:00 [東歐標準時間]" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2024/3/7 上午9:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二 星期一 下午4:14:15 [東歐夏令時間]" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/7 上午9:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九 星期二 上午11:53:00 [莫斯科夏令時間]" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 晚上9:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050庚午年四月初九 星期日 晚上7:47:00 [東歐夏令時間]" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 晚上9:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三 星期三 凌晨3:00:00 [GMT+03:00]" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 下午3:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初五 星期一 下午4:46:40 [莫斯科標準時間]" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 下午3:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二 星期日 凌晨4:46:40 [東歐夏令時間]" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2030/5/30 凌晨12:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024甲辰年正月廿七 星期四 上午10:00:01 [東歐標準時間]" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2030/5/30 凌晨12:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二 星期一 晚上11:14:15 [東歐夏令時間]" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 上午8:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九 星期二 下午6:53:00 [莫斯科夏令時間]" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 上午8:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030庚戌年四月廿九 星期四 凌晨2:47:00 [東歐夏令時間]" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1970/1/12 晚上10:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三 星期三 上午10:00:00 [GMT+03:00]" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/12 晚上10:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初六 星期二 凌晨12:46:40 [莫斯科標準時間]" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 上午9:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二 星期日 上午11:46:40 [東歐夏令時間]" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 上午9:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024甲辰年二月初八 星期日 上午10:00:00 [澳洲東部標準時間]" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2024/3/17 凌晨3:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十二 星期一 晚上11:14:15 [澳洲東部標準時間]" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/17 凌晨3:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月廿九 星期二 下午5:53:00 [澳洲東部標準時間]" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 下午5:44" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050庚午年四月初十 星期一 凌晨2:47:00 [澳洲東部標準時間]" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 下午5:44" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三 星期三 上午10:00:00 [GMT+10:00]" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 上午11:23" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初五 星期一 晚上11:46:40 [澳洲東部標準時間]" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 上午11:23" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二 星期日 上午11:46:40 [澳洲東部標準時間]" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2050/5/29 晚上8:17" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024甲辰年正月廿七 星期四 下午6:00:01 [澳洲東部標準時間]" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2050/5/29 晚上8:17" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十三 星期二 清晨6:14:15 [澳洲東部標準時間]" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 凌晨3:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月三十 星期三 凌晨12:53:00 [澳洲東部標準時間]" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 凌晨3:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030庚戌年四月廿九 星期四 上午9:47:00 [澳洲東部標準時間]" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1970/1/12 下午5:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三 星期三 下午5:00:00 [GMT+10:00]" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/12 下午5:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初六 星期二 清晨7:46:40 [澳洲東部標準時間]" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 清晨6:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二 星期日 下午6:46:40 [澳洲東部標準時間]" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 清晨6:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024甲辰年二月初八 星期日 上午9:00:00 [帛琉時間]" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2024/3/7 上午11:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十二 星期一 晚上10:14:15 [帛琉時間]" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/7 上午11:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九 星期二 下午4:53:00 [帛琉時間]" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001/7/3 凌晨12:44" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050庚午年四月初十 星期一 凌晨1:47:00 [帛琉時間]" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/3 凌晨12:44" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三 星期三 上午9:00:00 [GMT+09:00]" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 下午6:23" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初五 星期一 晚上10:46:40 [帛琉時間]" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 下午6:23" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二 星期日 上午10:46:40 [帛琉時間]" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2030/5/30 凌晨3:17" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024甲辰年正月廿七 星期四 下午5:00:01 [帛琉時間]" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2030/5/30 凌晨3:17" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十三 星期二 清晨5:14:15 [帛琉時間]" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 上午10:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九 星期二 晚上11:53:00 [帛琉時間]" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 上午10:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030庚戌年四月廿九 星期四 上午8:47:00 [帛琉時間]" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1970/1/13 凌晨1:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三 星期三 下午4:00:00 [GMT+09:00]" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/13 凌晨1:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初六 星期二 清晨6:46:40 [帛琉時間]" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 下午1:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二 星期日 下午5:46:40 [帛琉時間]" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 下午1:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024甲辰年二月初七 星期六 晚上9:00:00 [烏拉圭標準時間]" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2024/3/17 凌晨2:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二 星期一 上午10:14:15 [烏拉圭標準時間]" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/17 凌晨2:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九 星期二 凌晨4:53:00 [烏拉圭標準時間]" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 下午4:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050庚午年四月初九 星期日 下午1:47:00 [烏拉圭標準時間]" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 下午4:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初二 星期二 晚上9:00:00 [GMT-03:00]" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 上午11:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五 星期一 上午10:46:40 [烏拉圭標準時間]" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 上午11:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿一 星期六 晚上10:46:40 [烏拉圭標準時間]" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2050/5/29 晚上7:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024甲辰年正月廿七 星期四 清晨5:00:01 [烏拉圭標準時間]" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2050/5/29 晚上7:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二 星期一 下午5:14:15 [烏拉圭標準時間]" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 凌晨3:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九 星期二 上午11:53:00 [烏拉圭標準時間]" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 凌晨3:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030庚戌年四月廿八 星期三 晚上8:47:00 [烏拉圭標準時間]" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1970/1/12 下午4:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初三 星期三 凌晨4:00:00 [GMT-03:00]" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/12 下午4:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五 星期一 下午6:46:40 [烏拉圭標準時間]" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 凌晨4:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿二 星期日 清晨5:46:40 [烏拉圭標準時間]" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 凌晨4:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024甲辰年二月初七 星期六 下午5:00" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2024/3/7 上午10:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二 星期一 清晨6:14" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/7 上午10:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九 星期二 凌晨12:53" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 晚上11:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050庚午年四月初九 星期日 上午9:47" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 晚上11:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初二 星期二 下午5:00" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 下午6:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五 星期一 清晨5:46" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 下午6:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿一 星期六 下午6:46" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2030/5/30 凌晨2:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024甲辰年正月廿七 星期四 凌晨12:00" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2030/5/30 凌晨2:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二 星期一 下午1:14" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 上午10:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九 星期二 清晨7:53" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 上午10:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030庚戌年四月廿八 星期三 下午4:47" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1970/1/13 凌晨12:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初三 星期三 凌晨12:00" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/13 凌晨12:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五 星期一 下午1:46" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 上午11:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿二 星期日 凌晨1:46" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 上午11:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024甲辰年二月初八 星期日 凌晨1:00" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2024/3/17 上午10:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二 星期一 下午2:14" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/17 上午10:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九 星期二 上午8:53" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 晚上11:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050庚午年四月初九 星期日 下午5:47" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 晚上11:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三 星期三 凌晨1:00" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 下午5:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五 星期一 下午2:46" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 下午5:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二 星期日 凌晨2:46" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2050/5/30 凌晨2:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024甲辰年正月廿七 星期四 上午9:00" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2050/5/30 凌晨2:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二 星期一 晚上9:14" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 上午10:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九 星期二 下午3:53" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 上午10:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030庚戌年四月廿九 星期四 凌晨12:47" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1970/1/12 晚上11:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三 星期三 上午8:00" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/12 晚上11:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五 星期一 晚上10:46" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 上午11:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二 星期日 上午9:46" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 上午11:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024甲辰年二月初八 星期日 凌晨3:30" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2024/3/7 下午6:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十二 星期一 下午5:44" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/7 下午6:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九 星期二 上午11:23" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001/7/3 清晨6:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050庚午年四月初九 星期日 晚上8:17" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/3 清晨6:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三 星期三 凌晨3:30" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1984/5/30 凌晨12:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初五 星期一 下午5:16" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/30 凌晨12:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二 星期日 清晨6:16" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2030/5/30 上午9:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024甲辰年正月廿七 星期四 上午11:30" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2030/5/30 上午9:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十三 星期二 凌晨12:44" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 下午5:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九 星期二 下午6:23" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 下午5:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030庚戌年四月廿九 星期四 凌晨3:17" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1970/1/13 清晨7:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三 星期三 上午10:30" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/13 清晨7:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初六 星期二 凌晨1:16" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 下午6:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二 星期日 下午1:16" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 下午6:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024甲辰年二月初八 星期日 凌晨2:00" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2024/3/17 上午9:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二 星期一 下午4:14" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/17 上午9:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九 星期二 上午11:53" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 晚上10:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050庚午年四月初九 星期日 晚上7:47" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 晚上10:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三 星期三 凌晨3:00" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 下午4:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初五 星期一 下午4:46" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 下午4:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二 星期日 凌晨4:46" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2050/5/30 凌晨1:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024甲辰年正月廿七 星期四 上午10:00" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2050/5/30 凌晨1:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二 星期一 晚上11:14" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 上午9:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九 星期二 下午6:53" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 上午9:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030庚戌年四月廿九 星期四 凌晨2:47" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1970/1/12 晚上10:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三 星期三 上午10:00" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/12 晚上10:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初六 星期二 凌晨12:46" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 上午10:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二 星期日 上午11:46" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 上午10:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024甲辰年二月初八 星期日 上午10:00" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2024/3/7 下午5:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十二 星期一 晚上11:14" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/7 下午5:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月廿九 星期二 下午5:53" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001/7/3 清晨5:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050庚午年四月初十 星期一 凌晨2:47" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/3 清晨5:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三 星期三 上午10:00" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 晚上11:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初五 星期一 晚上11:46" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 晚上11:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二 星期日 上午11:46" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2030/5/30 上午8:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024甲辰年正月廿七 星期四 下午6:00" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2030/5/30 上午8:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十三 星期二 清晨6:14" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 下午4:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月三十 星期三 凌晨12:53" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 下午4:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030庚戌年四月廿九 星期四 上午9:47" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1970/1/13 清晨6:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三 星期三 下午5:00" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/13 清晨6:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初六 星期二 清晨7:46" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 下午5:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二 星期日 下午6:46" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 下午5:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024甲辰年二月初八 星期日 上午9:00" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2024/3/16 晚上9:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十二 星期一 晚上10:14" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/16 晚上9:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九 星期二 下午4:53" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 上午10:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050庚午年四月初十 星期一 凌晨1:47" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 上午10:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三 星期三 上午9:00" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 凌晨4:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初五 星期一 晚上10:46" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 凌晨4:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二 星期日 上午10:46" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2050/5/29 下午1:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024甲辰年正月廿七 星期四 下午5:00" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2050/5/29 下午1:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十三 星期二 清晨5:14" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1969/7/15 晚上9:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九 星期二 晚上11:53" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/15 晚上9:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030庚戌年四月廿九 星期四 上午8:47" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1970/1/12 上午10:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三 星期三 下午4:00" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/12 上午10:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初六 星期二 清晨6:46" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001/9/8 晚上10:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二 星期日 下午5:46" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001/9/8 晚上10:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024甲辰年二月初七 星期六 晚上9:00" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2024/3/7 清晨5:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二 星期一 上午10:14" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2024/3/7 清晨5:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九 星期二 凌晨4:53" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001/7/2 下午5:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050庚午年四月初九 星期日 下午1:47" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001/7/2 下午5:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初二 星期二 晚上9:00" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1984/5/29 上午11:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五 星期一 上午10:46" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1984/5/29 上午11:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿一 星期六 晚上10:46" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2030/5/29 晚上8:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024甲辰年正月廿七 星期四 清晨5:00" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2030/5/29 晚上8:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二 星期一 下午5:14" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1969/7/16 凌晨4:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九 星期二 上午11:53" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1969/7/16 凌晨4:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030庚戌年四月廿八 星期三 晚上8:47" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1970/1/12 下午6:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初三 星期三 凌晨4:00" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1970/1/12 下午6:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五 星期一 下午6:46" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001/9/9 清晨5:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "chinese", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿二 星期日 清晨5:46" + "dateTimeFormatType": "atTime", + "expected": "2001/9/9 清晨5:46" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024甲辰年二月初七 下午5:00:00 [PDT]" + "dateTimeFormatType": "standard", + "expected": "2024年3月16日 下午5:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二 清晨6:14:15 [PDT]" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月16日 下午5:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九 凌晨12:53:00 [PDT]" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 清晨6:14:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050庚午年四月初九 上午9:47:00 [PDT]" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 清晨6:14:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初二 下午5:00:00 [GMT-7]" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 凌晨12:53:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五 清晨5:46:40 [PST]" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 凌晨12:53:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿一 下午6:46:40 [PDT]" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 上午9:47:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024甲辰年正月廿七 凌晨12:00:01 [PST]" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 上午9:47:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二 下午1:14:15 [PDT]" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1969年7月15日 下午5:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九 清晨7:53:00 [PDT]" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月15日 下午5:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030庚戌年四月廿八 下午4:47:00 [PDT]" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 清晨5:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初三 凌晨12:00:00 [GMT-7]" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 清晨5:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五 下午1:46:40 [PST]" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年9月8日 下午6:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿二 凌晨1:46:40 [PDT]" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月8日 下午6:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024甲辰年二月初八 凌晨1:00:00 [GMT+1]" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 凌晨12:00:01" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二 下午2:14:15 [GMT+1]" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 凌晨12:00:01" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九 上午8:53:00 [GMT+1]" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 下午1:14:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050庚午年四月初九 下午5:47:00 [GMT+1]" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 下午1:14:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三 凌晨1:00:00 [GMT+1]" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 清晨7:53:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五 下午2:46:40 [GMT+1]" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 清晨7:53:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二 凌晨2:46:40 [GMT+1]" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2030年5月29日 下午4:47:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024甲辰年正月廿七 上午9:00:01 [GMT+1]" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月29日 下午4:47:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二 晚上9:14:15 [GMT+1]" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 凌晨12:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九 下午3:53:00 [GMT+1]" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 凌晨12:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030庚戌年四月廿九 凌晨12:47:00 [GMT+1]" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 下午1:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三 上午8:00:00 [GMT+1]" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 下午1:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+1]" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 凌晨1:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二 上午9:46:40 [GMT+1]" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 凌晨1:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024甲辰年二月初八 凌晨3:30:00 [GMT+3:30]" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 凌晨1:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十二 下午5:44:15 [GMT+4:30]" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 凌晨1:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九 上午11:23:00 [GMT+3:30]" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 下午2:14:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050庚午年四月初九 晚上8:17:00 [GMT+3:30]" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 下午2:14:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三 凌晨3:30:00 [GMT+3:30]" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 上午8:53:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初五 下午5:16:40 [GMT+3:30]" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 上午8:53:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二 清晨6:16:40 [GMT+4:30]" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 下午5:47:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024甲辰年正月廿七 上午11:30:01 [GMT+3:30]" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 下午5:47:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十三 凌晨12:44:15 [GMT+4:30]" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 凌晨1:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九 下午6:23:00 [GMT+3:30]" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 凌晨1:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030庚戌年四月廿九 凌晨3:17:00 [GMT+3:30]" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 下午2:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三 上午10:30:00 [GMT+3:30]" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 下午2:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初六 凌晨1:16:40 [GMT+3:30]" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 凌晨2:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二 下午1:16:40 [GMT+4:30]" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 凌晨2:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024甲辰年二月初八 凌晨2:00:00 [GMT+2]" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 上午9:00:01" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二 下午4:14:15 [GMT+3]" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 上午9:00:01" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九 上午11:53:00 [GMT+4]" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 晚上9:14:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050庚午年四月初九 晚上7:47:00 [GMT+3]" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 晚上9:14:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三 凌晨3:00:00 [GMT+3]" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 下午3:53:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初五 下午4:46:40 [GMT+3]" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 下午3:53:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二 凌晨4:46:40 [GMT+3]" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 凌晨12:47:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024甲辰年正月廿七 上午10:00:01 [GMT+2]" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 凌晨12:47:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+3]" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 上午8:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九 下午6:53:00 [GMT+4]" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 上午8:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030庚戌年四月廿九 凌晨2:47:00 [GMT+3]" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 晚上10:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三 上午10:00:00 [GMT+3]" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 晚上10:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初六 凌晨12:46:40 [GMT+3]" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 上午9:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+3]" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 上午9:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024甲辰年二月初八 上午10:00:00 [GMT+10]" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 凌晨3:30:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+10]" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 凌晨3:30:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月廿九 下午5:53:00 [GMT+10]" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 下午5:44:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050庚午年四月初十 凌晨2:47:00 [GMT+10]" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 下午5:44:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三 上午10:00:00 [GMT+10]" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 上午11:23:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初五 晚上11:46:40 [GMT+10]" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 上午11:23:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+10]" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 晚上8:17:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024甲辰年正月廿七 下午6:00:01 [GMT+10]" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 晚上8:17:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十三 清晨6:14:15 [GMT+10]" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 凌晨3:30:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月三十 凌晨12:53:00 [GMT+10]" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 凌晨3:30:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030庚戌年四月廿九 上午9:47:00 [GMT+10]" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 下午5:16:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三 下午5:00:00 [GMT+10]" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 下午5:16:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初六 清晨7:46:40 [GMT+10]" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 清晨6:16:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二 下午6:46:40 [GMT+10]" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 清晨6:16:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024甲辰年二月初八 上午9:00:00 [GMT+9]" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 上午11:30:01" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十二 晚上10:14:15 [GMT+9]" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 上午11:30:01" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九 下午4:53:00 [GMT+9]" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 凌晨12:44:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050庚午年四月初十 凌晨1:47:00 [GMT+9]" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 凌晨12:44:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三 上午9:00:00 [GMT+9]" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 下午6:23:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+9]" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 下午6:23:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二 上午10:46:40 [GMT+9]" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 凌晨3:17:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024甲辰年正月廿七 下午5:00:01 [GMT+9]" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 凌晨3:17:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十三 清晨5:14:15 [GMT+9]" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 上午10:30:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九 晚上11:53:00 [GMT+9]" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 上午10:30:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030庚戌年四月廿九 上午8:47:00 [GMT+9]" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 凌晨1:16:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三 下午4:00:00 [GMT+9]" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 凌晨1:16:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初六 清晨6:46:40 [GMT+9]" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 下午1:16:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二 下午5:46:40 [GMT+9]" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 下午1:16:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024甲辰年二月初七 晚上9:00:00 [GMT-3]" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 凌晨2:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二 上午10:14:15 [GMT-3]" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 凌晨2:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九 凌晨4:53:00 [GMT-3]" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 下午4:14:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050庚午年四月初九 下午1:47:00 [GMT-3]" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 下午4:14:15" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初二 晚上9:00:00 [GMT-3]" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 上午11:53:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五 上午10:46:40 [GMT-3]" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 上午11:53:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿一 晚上10:46:40 [GMT-3]" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 晚上7:47:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024甲辰年正月廿七 清晨5:00:01 [GMT-3]" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 晚上7:47:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二 下午5:14:15 [GMT-3]" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 凌晨3:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九 上午11:53:00 [GMT-3]" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 凌晨3:00:00" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030庚戌年四月廿八 晚上8:47:00 [GMT-3]" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 下午4:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初三 凌晨4:00:00 [GMT-3]" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 下午4:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五 下午6:46:40 [GMT-3]" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 凌晨4:46:40" }, { - "dateLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿二 清晨5:46:40 [GMT-3]" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 凌晨4:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024甲辰年二月初七 下午5:00:00 [PDT]" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 上午10:00:01" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二 清晨6:14:15 [PDT]" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 上午10:00:01" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九 凌晨12:53:00 [PDT]" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 晚上11:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050庚午年四月初九 上午9:47:00 [PDT]" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 晚上11:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初二 下午5:00:00 [GMT-7]" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 下午6:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五 清晨5:46:40 [PST]" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 下午6:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿一 下午6:46:40 [PDT]" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 凌晨2:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024甲辰年正月廿七 凌晨12:00:01 [PST]" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 凌晨2:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二 下午1:14:15 [PDT]" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 上午10:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九 清晨7:53:00 [PDT]" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 上午10:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030庚戌年四月廿八 下午4:47:00 [PDT]" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 凌晨12:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初三 凌晨12:00:00 [GMT-7]" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 凌晨12:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五 下午1:46:40 [PST]" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 上午11:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿二 凌晨1:46:40 [PDT]" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 上午11:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024甲辰年二月初八 凌晨1:00:00 [GMT+1]" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 上午10:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二 下午2:14:15 [GMT+1]" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 上午10:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九 上午8:53:00 [GMT+1]" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 晚上11:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050庚午年四月初九 下午5:47:00 [GMT+1]" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 晚上11:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三 凌晨1:00:00 [GMT+1]" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 下午5:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五 下午2:46:40 [GMT+1]" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 下午5:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二 凌晨2:46:40 [GMT+1]" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2050年5月30日 凌晨2:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024甲辰年正月廿七 上午9:00:01 [GMT+1]" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月30日 凌晨2:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二 晚上9:14:15 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九 下午3:53:00 [GMT+1]" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 上午10:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030庚戌年四月廿九 凌晨12:47:00 [GMT+1]" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 上午10:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三 上午8:00:00 [GMT+1]" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 晚上11:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+1]" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 晚上11:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二 上午9:46:40 [GMT+1]" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 上午11:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024甲辰年二月初八 凌晨3:30:00 [GMT+3:30]" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 上午11:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十二 下午5:44:15 [GMT+4:30]" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 下午6:00:01" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九 上午11:23:00 [GMT+3:30]" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 下午6:00:01" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050庚午年四月初九 晚上8:17:00 [GMT+3:30]" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 清晨6:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三 凌晨3:30:00 [GMT+3:30]" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 清晨6:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初五 下午5:16:40 [GMT+3:30]" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1984年5月30日 凌晨12:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二 清晨6:16:40 [GMT+4:30]" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月30日 凌晨12:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024甲辰年正月廿七 上午11:30:01 [GMT+3:30]" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 上午9:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十三 凌晨12:44:15 [GMT+4:30]" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 上午9:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九 下午6:23:00 [GMT+3:30]" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 下午5:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030庚戌年四月廿九 凌晨3:17:00 [GMT+3:30]" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 下午5:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三 上午10:30:00 [GMT+3:30]" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 清晨7:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初六 凌晨1:16:40 [GMT+3:30]" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 清晨7:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二 下午1:16:40 [GMT+4:30]" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 下午6:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024甲辰年二月初八 凌晨2:00:00 [GMT+2]" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 下午6:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二 下午4:14:15 [GMT+3]" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 上午9:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九 上午11:53:00 [GMT+4]" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 上午9:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050庚午年四月初九 晚上7:47:00 [GMT+3]" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 晚上10:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三 凌晨3:00:00 [GMT+3]" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 晚上10:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初五 下午4:46:40 [GMT+3]" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 下午4:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二 凌晨4:46:40 [GMT+3]" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 下午4:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024甲辰年正月廿七 上午10:00:01 [GMT+2]" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2050年5月30日 凌晨1:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+3]" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月30日 凌晨1:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九 下午6:53:00 [GMT+4]" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 上午9:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030庚戌年四月廿九 凌晨2:47:00 [GMT+3]" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 上午9:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三 上午10:00:00 [GMT+3]" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 晚上10:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初六 凌晨12:46:40 [GMT+3]" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 晚上10:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+3]" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 上午10:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024甲辰年二月初八 上午10:00:00 [GMT+10]" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 上午10:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+10]" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 下午5:00:01" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月廿九 下午5:53:00 [GMT+10]" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 下午5:00:01" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050庚午年四月初十 凌晨2:47:00 [GMT+10]" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 清晨5:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三 上午10:00:00 [GMT+10]" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 清晨5:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初五 晚上11:46:40 [GMT+10]" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 晚上11:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+10]" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 晚上11:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024甲辰年正月廿七 下午6:00:01 [GMT+10]" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 上午8:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十三 清晨6:14:15 [GMT+10]" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 上午8:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月三十 凌晨12:53:00 [GMT+10]" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 下午4:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030庚戌年四月廿九 上午9:47:00 [GMT+10]" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 下午4:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三 下午5:00:00 [GMT+10]" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 清晨6:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初六 清晨7:46:40 [GMT+10]" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 清晨6:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二 下午6:46:40 [GMT+10]" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 下午5:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024甲辰年二月初八 上午9:00:00 [GMT+9]" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 下午5:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十二 晚上10:14:15 [GMT+9]" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2024年3月16日 晚上9:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九 下午4:53:00 [GMT+9]" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月16日 晚上9:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050庚午年四月初十 凌晨1:47:00 [GMT+9]" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 上午10:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三 上午9:00:00 [GMT+9]" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 上午10:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+9]" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 凌晨4:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二 上午10:46:40 [GMT+9]" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 凌晨4:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024甲辰年正月廿七 下午5:00:01 [GMT+9]" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 下午1:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十三 清晨5:14:15 [GMT+9]" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 下午1:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九 晚上11:53:00 [GMT+9]" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1969年7月15日 晚上9:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030庚戌年四月廿九 上午8:47:00 [GMT+9]" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月15日 晚上9:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三 下午4:00:00 [GMT+9]" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 上午10:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初六 清晨6:46:40 [GMT+9]" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 上午10:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二 下午5:46:40 [GMT+9]" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年9月8日 晚上10:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024甲辰年二月初七 晚上9:00:00 [GMT-3]" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月8日 晚上10:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二 上午10:14:15 [GMT-3]" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 清晨5:00:01" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九 凌晨4:53:00 [GMT-3]" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 清晨5:00:01" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050庚午年四月初九 下午1:47:00 [GMT-3]" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 下午5:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初二 晚上9:00:00 [GMT-3]" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 下午5:14:15" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五 上午10:46:40 [GMT-3]" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 上午11:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿一 晚上10:46:40 [GMT-3]" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 上午11:53:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024甲辰年正月廿七 清晨5:00:01 [GMT-3]" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2030年5月29日 晚上8:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二 下午5:14:15 [GMT-3]" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月29日 晚上8:47:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九 上午11:53:00 [GMT-3]" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 凌晨4:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030庚戌年四月廿八 晚上8:47:00 [GMT-3]" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 凌晨4:00:00" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初三 凌晨4:00:00 [GMT-3]" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 下午6:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五 下午6:46:40 [GMT-3]" + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 下午6:46:40" }, { - "timeLength": "long", - "calendar": "chinese", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿二 清晨5:46:40 [GMT-3]" + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 清晨5:46:40" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "民國113/3/16 下午5:00" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 清晨5:46:40" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "民國90/7/2 清晨6:14" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2024年3月16日 下午5:00:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "民國73/5/29 凌晨12:53" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月16日 下午5:00:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "民國139/5/29 上午9:47" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 清晨6:14:15 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "民國58/7/15 下午5:00" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 清晨6:14:15 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "民國59/1/12 清晨5:46" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 凌晨12:53:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "民國90/9/8 下午6:46" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 凌晨12:53:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "民國113/3/7 凌晨12:00" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 上午9:47:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "民國90/7/2 下午1:14" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 上午9:47:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "民國73/5/29 清晨7:53" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1969年7月15日 下午5:00:00 [GMT-7]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "民國119/5/29 下午4:47" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月15日 下午5:00:00 [GMT-7]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "民國58/7/16 凌晨12:00" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 清晨5:46:40 [PST]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "民國59/1/12 下午1:46" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 清晨5:46:40 [PST]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "民國90/9/9 凌晨1:46" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年9月8日 下午6:46:40 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "民國113/3/17 凌晨1:00" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月8日 下午6:46:40 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "民國90/7/2 下午2:14" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 凌晨12:00:01 [PST]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "民國73/5/29 上午8:53" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 凌晨12:00:01 [PST]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "民國139/5/29 下午5:47" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 下午1:14:15 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "民國58/7/16 凌晨1:00" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 下午1:14:15 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "民國59/1/12 下午2:46" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 清晨7:53:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "民國90/9/9 凌晨2:46" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 清晨7:53:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "民國113/3/7 上午9:00" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2030年5月29日 下午4:47:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "民國90/7/2 晚上9:14" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月29日 下午4:47:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "民國73/5/29 下午3:53" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 凌晨12:00:00 [GMT-7]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "民國119/5/30 凌晨12:47" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 凌晨12:00:00 [GMT-7]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "民國58/7/16 上午8:00" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 下午1:46:40 [PST]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "民國59/1/12 晚上10:46" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 下午1:46:40 [PST]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "民國90/9/9 上午9:46" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 凌晨1:46:40 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "民國113/3/17 凌晨3:30" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 凌晨1:46:40 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "民國90/7/2 下午5:44" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 凌晨1:00:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "民國73/5/29 上午11:23" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 凌晨1:00:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "民國139/5/29 晚上8:17" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 下午2:14:15 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "民國58/7/16 凌晨3:30" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 下午2:14:15 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "民國59/1/12 下午5:16" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 上午8:53:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "民國90/9/9 清晨6:16" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 上午8:53:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "民國113/3/7 上午11:30" + "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": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "民國90/7/3 凌晨12:44" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 下午5:47:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "民國73/5/29 下午6:23" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 凌晨1:00:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "民國119/5/30 凌晨3:17" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 凌晨1:00:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "民國58/7/16 上午10:30" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 下午2:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "民國59/1/13 凌晨1:16" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 下午2:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "民國90/9/9 下午1:16" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 凌晨2:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "民國113/3/17 凌晨2:00" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 凌晨2:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "民國90/7/2 下午4:14" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 上午9:00:01 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "民國73/5/29 上午11:53" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 上午9:00:01 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "民國139/5/29 晚上7:47" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 晚上9:14:15 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "民國58/7/16 凌晨3:00" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 晚上9:14:15 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "民國59/1/12 下午4:46" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 下午3:53:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "民國90/9/9 凌晨4:46" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 下午3:53:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "民國113/3/7 上午10:00" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 凌晨12:47:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "民國90/7/2 晚上11:14" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 凌晨12:47:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "民國73/5/29 下午6:53" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 上午8:00:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "民國119/5/30 凌晨2:47" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 上午8:00:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "民國58/7/16 上午10:00" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 晚上10:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "民國59/1/13 凌晨12:46" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 晚上10:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "民國90/9/9 上午11:46" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 上午9:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "民國113/3/17 上午10:00" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 上午9:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "民國90/7/2 晚上11:14" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 凌晨3:30:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "民國73/5/29 下午5:53" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 凌晨3:30:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "民國139/5/30 凌晨2:47" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 下午5:44:15 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "民國58/7/16 上午10:00" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 下午5:44:15 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "民國59/1/12 晚上11:46" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 上午11:23:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "民國90/9/9 上午11:46" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 上午11:23:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "民國113/3/7 下午6:00" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 晚上8:17:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "民國90/7/3 清晨6:14" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 晚上8:17:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "民國73/5/30 凌晨12:53" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 凌晨3:30:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "民國119/5/30 上午9:47" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 凌晨3:30:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "民國58/7/16 下午5:00" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 下午5:16:40 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "民國59/1/13 清晨7:46" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 下午5:16:40 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "民國90/9/9 下午6:46" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 清晨6:16:40 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "民國113/3/17 上午9:00" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 清晨6:16:40 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "民國90/7/2 晚上10:14" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 上午11:30:01 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "民國73/5/29 下午4:53" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 上午11:30:01 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "民國139/5/30 凌晨1:47" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 凌晨12:44:15 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "民國58/7/16 上午9:00" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 凌晨12:44:15 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "民國59/1/12 晚上10:46" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 下午6:23:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "民國90/9/9 上午10:46" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 下午6:23:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "民國113/3/7 下午5:00" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 凌晨3:17:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "民國90/7/3 清晨5:14" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 凌晨3:17:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "民國73/5/29 晚上11:53" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 上午10:30:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "民國119/5/30 上午8:47" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 上午10:30:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "民國58/7/16 下午4:00" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 凌晨1:16:40 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "民國59/1/13 清晨6:46" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 凌晨1:16:40 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "民國90/9/9 下午5:46" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 下午1:16:40 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "民國113/3/16 晚上9:00" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 下午1:16:40 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "民國90/7/2 上午10:14" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 凌晨2:00:00 [GMT+2]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "民國73/5/29 凌晨4:53" + "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": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "民國139/5/29 下午1:47" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 下午4:14:15 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "民國58/7/15 晚上9:00" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 下午4:14:15 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "民國59/1/12 上午10:46" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 上午11:53:00 [GMT+4]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "民國90/9/8 晚上10:46" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 上午11:53:00 [GMT+4]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "民國113/3/7 清晨5:00" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 晚上7:47:00 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "民國90/7/2 下午5:14" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 晚上7:47:00 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "民國73/5/29 上午11:53" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 凌晨3:00:00 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "民國119/5/29 晚上8:47" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 凌晨3:00:00 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "民國58/7/16 凌晨4:00" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 下午4:46:40 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "民國59/1/12 下午6:46" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 下午4:46:40 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "民國90/9/9 清晨5:46" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 凌晨4:46:40 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "民國113年3月16日 下午5:00:00" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 凌晨4:46:40 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 清晨6:14:15" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 上午10:00:01 [GMT+2]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 凌晨12:53:00" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 上午10:00:01 [GMT+2]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "民國139年5月29日 上午9:47:00" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 晚上11:14:15 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月15日 下午5:00:00" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 晚上11:14:15 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 清晨5:46:40" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 下午6:53:00 [GMT+4]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月8日 下午6:46:40" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 下午6:53:00 [GMT+4]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "民國113年3月7日 凌晨12:00:01" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 凌晨2:47:00 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 下午1:14:15" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 凌晨2:47:00 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 清晨7:53:00" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 上午10:00:00 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "民國119年5月29日 下午4:47:00" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 上午10:00:00 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月16日 凌晨12:00:00" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 凌晨12:46:40 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 下午1:46:40" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 凌晨12:46:40 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月9日 凌晨1:46:40" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 上午11:46:40 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "民國113年3月17日 凌晨1:00:00" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 上午11:46:40 [GMT+3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 下午2:14:15" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 上午10:00:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 上午8:53:00" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 上午10:00:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "民國139年5月29日 下午5:47:00" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 晚上11:14:15 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 凌晨1:00:00" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 晚上11:14:15 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 下午2:46:40" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 下午5:53:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 凌晨2:46:40" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 下午5:53:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "民國113年3月7日 上午9:00:01" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2050年5月30日 凌晨2:47:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 晚上9:14:15" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月30日 凌晨2:47:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 下午3:53:00" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 上午10:00:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "民國119年5月30日 凌晨12:47:00" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 上午10:00:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 上午8:00:00" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 晚上11:46:40 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 晚上10:46:40" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 晚上11:46:40 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 上午9:46:40" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 上午11:46:40 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "民國113年3月17日 凌晨3:30:00" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 上午11:46:40 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月2日 下午5:44:15" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 下午6:00:01 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 上午11:23:00" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 下午6:00:01 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "民國139年5月29日 晚上8:17:00" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 清晨6:14:15 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 凌晨3:30:00" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 清晨6:14:15 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月12日 下午5:16:40" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1984年5月30日 凌晨12:53:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 清晨6:16:40" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月30日 凌晨12:53:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "民國113年3月7日 上午11:30:01" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 上午9:47:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月3日 凌晨12:44:15" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 上午9:47:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 下午6:23:00" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 下午5:00:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "民國119年5月30日 凌晨3:17:00" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 下午5:00:00 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 上午10:30:00" + "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": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月13日 凌晨1:16:40" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 清晨7:46:40 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 下午1:16:40" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 下午6:46:40 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "民國113年3月17日 凌晨2:00:00" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 下午6:46:40 [GMT+10]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 下午4:14:15" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 上午9:00:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 上午11:53:00" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 上午9:00:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "民國139年5月29日 晚上7:47:00" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 晚上10:14:15 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 凌晨3:00:00" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 晚上10:14:15 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月12日 下午4:46:40" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 下午4:53:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 凌晨4:46:40" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 下午4:53:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "民國113年3月7日 上午10:00:01" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2050年5月30日 凌晨1:47:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 晚上11:14:15" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月30日 凌晨1:47:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 下午6:53:00" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 上午9:00:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "民國119年5月30日 凌晨2:47:00" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 上午9:00:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 上午10:00:00" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 晚上10:46:40 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月13日 凌晨12:46:40" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 晚上10:46:40 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 上午11:46:40" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 上午10:46:40 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "民國113年3月17日 上午10:00:00" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 上午10:46:40 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月2日 晚上11:14:15" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 下午5:00:01 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月29日 下午5:53:00" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 下午5:00:01 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "民國139年5月30日 凌晨2:47:00" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 清晨5:14:15 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 上午10:00:00" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 清晨5:14:15 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月12日 晚上11:46:40" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 晚上11:53:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 上午11:46:40" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 晚上11:53:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "民國113年3月7日 下午6:00:01" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 上午8:47:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月3日 清晨6:14:15" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 上午8:47:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月30日 凌晨12:53:00" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 下午4:00:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "民國119年5月30日 上午9:47:00" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 下午4:00:00 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 下午5:00:00" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 清晨6:46:40 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月13日 清晨7:46:40" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 清晨6:46:40 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 下午6:46:40" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 下午5:46:40 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "民國113年3月17日 上午9:00:00" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 下午5:46:40 [GMT+9]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月2日 晚上10:14:15" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2024年3月16日 晚上9:00:00 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 下午4:53:00" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月16日 晚上9:00:00 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "民國139年5月30日 凌晨1:47:00" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 上午10:14:15 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 上午9:00:00" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 上午10:14:15 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月12日 晚上10:46:40" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 凌晨4:53:00 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 上午10:46:40" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 凌晨4:53:00 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "民國113年3月7日 下午5:00:01" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 下午1:47:00 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月3日 清晨5:14:15" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 下午1:47:00 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 晚上11:53:00" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1969年7月15日 晚上9:00:00 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "民國119年5月30日 上午8:47:00" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月15日 晚上9:00:00 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 下午4:00:00" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 上午10:46:40 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月13日 清晨6:46:40" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 上午10:46:40 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 下午5:46:40" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年9月8日 晚上10:46:40 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "民國113年3月16日 晚上9:00:00" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月8日 晚上10:46:40 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 上午10:14:15" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 清晨5:00:01 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 凌晨4:53:00" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 清晨5:00:01 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "民國139年5月29日 下午1:47:00" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 下午5:14:15 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "民國58年7月15日 晚上9:00:00" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 下午5:14:15 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 上午10:46:40" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 上午11:53:00 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "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]", - "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]", - "expected": "民國90年7月2日 下午5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 上午11:53:00" + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 上午11:53:00 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "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]", - "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]", - "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]", - "expected": "民國90年9月9日 清晨5:46:40" + "dateTimeFormatType": "standard", + "expected": "2030年5月29日 晚上8:47:00 [GMT-3]" }, { "dateLength": "long", "timeLength": "long", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "民國113年3月16日 下午5:00:00 [PDT]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 清晨6:14:15 [PDT]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 凌晨12:53:00 [PDT]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "民國139年5月29日 上午9:47:00 [PDT]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月15日 下午5:00:00 [GMT-7]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 清晨5:46:40 [PST]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月8日 下午6:46:40 [PDT]" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 清晨5:46:40 [GMT-3]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "民國113年3月7日 凌晨12:00:01 [PST]" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2024年3月16日 星期六 下午5:00:00 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 下午1:14:15 [PDT]" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月16日 星期六 下午5:00:00 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 清晨7:53:00 [PDT]" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 清晨6:14:15 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "民國119年5月29日 下午4:47:00 [PDT]" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 清晨6:14:15 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月16日 凌晨12:00:00 [GMT-7]" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 凌晨12:53:00 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 下午1:46:40 [PST]" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 凌晨12:53:00 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月9日 凌晨1:46:40 [PDT]" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 星期日 上午9:47:00 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "民國113年3月17日 凌晨1:00:00 [GMT+1]" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 星期日 上午9:47:00 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 下午2:14:15 [GMT+1]" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1969年7月15日 星期二 下午5:00:00 [GMT-07:00]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 上午8:53:00 [GMT+1]" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月15日 星期二 下午5:00:00 [GMT-07:00]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "民國139年5月29日 下午5:47:00 [GMT+1]" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 清晨5:46:40 [太平洋標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 凌晨1:00:00 [GMT+1]" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 清晨5:46:40 [太平洋標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 下午2:46:40 [GMT+1]" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年9月8日 星期六 下午6:46:40 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 凌晨2:46:40 [GMT+1]" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月8日 星期六 下午6:46:40 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "民國113年3月7日 上午9:00:01 [GMT+1]" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 凌晨12:00:01 [太平洋標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 晚上9:14:15 [GMT+1]" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 凌晨12:00:01 [太平洋標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 下午3:53:00 [GMT+1]" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 下午1:14:15 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "民國119年5月30日 凌晨12:47:00 [GMT+1]" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 下午1:14:15 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 上午8:00:00 [GMT+1]" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 清晨7:53:00 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 晚上10:46:40 [GMT+1]" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 清晨7:53:00 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 上午9:46:40 [GMT+1]" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2030年5月29日 星期三 下午4:47:00 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "民國113年3月17日 凌晨3:30:00 [GMT+3:30]" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月29日 星期三 下午4:47:00 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月2日 下午5:44:15 [GMT+4:30]" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 凌晨12:00:00 [GMT-07:00]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 上午11:23:00 [GMT+3:30]" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 凌晨12:00:00 [GMT-07:00]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "民國139年5月29日 晚上8:17:00 [GMT+3:30]" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 下午1:46:40 [太平洋標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 凌晨3:30:00 [GMT+3:30]" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 下午1:46:40 [太平洋標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月12日 下午5:16:40 [GMT+3:30]" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 凌晨1:46:40 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 清晨6:16:40 [GMT+4:30]" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 凌晨1:46:40 [太平洋夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "民國113年3月7日 上午11:30:01 [GMT+3:30]" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 星期日 凌晨1:00:00 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月3日 凌晨12:44:15 [GMT+4:30]" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 星期日 凌晨1:00:00 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 下午6:23:00 [GMT+3:30]" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 下午2:14:15 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "民國119年5月30日 凌晨3:17:00 [GMT+3:30]" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 下午2:14:15 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 上午10:30:00 [GMT+3:30]" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 上午8:53:00 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月13日 凌晨1:16:40 [GMT+3:30]" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 上午8:53:00 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 下午1:16:40 [GMT+4:30]" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 星期日 下午5:47:00 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "民國113年3月17日 凌晨2:00:00 [GMT+2]" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 星期日 下午5:47:00 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 下午4:14:15 [GMT+3]" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 凌晨1:00:00 [GMT+01:00]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 上午11:53:00 [GMT+4]" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 凌晨1:00:00 [GMT+01:00]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "民國139年5月29日 晚上7:47:00 [GMT+3]" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 下午2:46:40 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 凌晨3:00:00 [GMT+3]" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 下午2:46:40 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月12日 下午4:46:40 [GMT+3]" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 凌晨2:46:40 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 凌晨4:46:40 [GMT+3]" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 凌晨2:46:40 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "民國113年3月7日 上午10:00:01 [GMT+2]" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 上午9:00:01 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 晚上11:14:15 [GMT+3]" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 上午9:00:01 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 下午6:53:00 [GMT+4]" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 晚上9:14:15 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "民國119年5月30日 凌晨2:47:00 [GMT+3]" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 晚上9:14:15 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 上午10:00:00 [GMT+3]" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 下午3:53:00 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月13日 凌晨12:46:40 [GMT+3]" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 下午3:53:00 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 上午11:46:40 [GMT+3]" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 星期四 凌晨12:47:00 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "民國113年3月17日 上午10:00:00 [GMT+10]" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 星期四 凌晨12:47:00 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月2日 晚上11:14:15 [GMT+10]" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 上午8:00:00 [GMT+01:00]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月29日 下午5:53:00 [GMT+10]" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 上午8:00:00 [GMT+01:00]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "民國139年5月30日 凌晨2:47:00 [GMT+10]" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 晚上10:46:40 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 上午10:00:00 [GMT+10]" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 晚上10:46:40 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月12日 晚上11:46:40 [GMT+10]" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 上午9:46:40 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 上午11:46:40 [GMT+10]" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 上午9:46:40 [西非標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "民國113年3月7日 下午6:00:01 [GMT+10]" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 星期日 凌晨3:30:00 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月3日 清晨6:14:15 [GMT+10]" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 星期日 凌晨3:30:00 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月30日 凌晨12:53:00 [GMT+10]" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 下午5:44:15 [伊朗夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "民國119年5月30日 上午9:47:00 [GMT+10]" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 下午5:44:15 [伊朗夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 下午5:00:00 [GMT+10]" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 上午11:23:00 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月13日 清晨7:46:40 [GMT+10]" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 上午11:23:00 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 下午6:46:40 [GMT+10]" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 星期日 晚上8:17:00 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "民國113年3月17日 上午9:00:00 [GMT+9]" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 星期日 晚上8:17:00 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月2日 晚上10:14:15 [GMT+9]" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 凌晨3:30:00 [GMT+03:30]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 下午4:53:00 [GMT+9]" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 凌晨3:30:00 [GMT+03:30]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "民國139年5月30日 凌晨1:47:00 [GMT+9]" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 下午5:16:40 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 上午9:00:00 [GMT+9]" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 下午5:16:40 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月12日 晚上10:46:40 [GMT+9]" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 清晨6:16:40 [伊朗夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 上午10:46:40 [GMT+9]" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 清晨6:16:40 [伊朗夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "民國113年3月7日 下午5:00:01 [GMT+9]" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 上午11:30:01 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月3日 清晨5:14:15 [GMT+9]" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 上午11:30:01 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 晚上11:53:00 [GMT+9]" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 星期二 凌晨12:44:15 [伊朗夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "民國119年5月30日 上午8:47:00 [GMT+9]" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 星期二 凌晨12:44:15 [伊朗夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 下午4:00:00 [GMT+9]" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 下午6:23:00 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月13日 清晨6:46:40 [GMT+9]" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 下午6:23:00 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 下午5:46:40 [GMT+9]" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 星期四 凌晨3:17:00 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "民國113年3月16日 晚上9:00:00 [GMT-3]" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 星期四 凌晨3:17:00 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 上午10:14:15 [GMT-3]" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 上午10:30:00 [GMT+03:30]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 凌晨4:53:00 [GMT-3]" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 上午10:30:00 [GMT+03:30]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "民國139年5月29日 下午1:47:00 [GMT-3]" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 星期二 凌晨1:16:40 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "民國58年7月15日 晚上9:00:00 [GMT-3]" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 星期二 凌晨1:16:40 [伊朗標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 上午10:46:40 [GMT-3]" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 下午1:16:40 [伊朗夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月8日 晚上10:46:40 [GMT-3]" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 下午1:16:40 [伊朗夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "民國113年3月7日 清晨5:00:01 [GMT-3]" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 星期日 凌晨2:00:00 [東歐標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 下午5:14:15 [GMT-3]" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 星期日 凌晨2:00:00 [東歐標準時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 上午11:53:00 [GMT-3]" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 下午4:14:15 [東歐夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "民國119年5月29日 晚上8:47:00 [GMT-3]" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 下午4:14:15 [東歐夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "民國58年7月16日 凌晨4:00:00 [GMT-3]" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 上午11:53:00 [莫斯科夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 下午6:46:40 [GMT-3]" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 上午11:53:00 [莫斯科夏令時間]" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月9日 清晨5:46:40 [GMT-3]" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 星期日 晚上7:47:00 [東歐夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "民國113年3月16日 星期六下午5:00:00 [太平洋夏令時間]" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 星期日 晚上7:47:00 [東歐夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 星期一清晨6:14:15 [太平洋夏令時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 星期二凌晨12:53:00 [太平洋夏令時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "民國139年5月29日 星期日上午9:47:00 [太平洋夏令時間]" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 下午4:46:40 [莫斯科標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月15日 星期二下午5:00:00 [GMT-07:00]" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 下午4:46:40 [莫斯科標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 星期一清晨5:46:40 [太平洋標準時間]" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 凌晨4:46:40 [東歐夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月8日 星期六下午6:46:40 [太平洋夏令時間]" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 凌晨4:46:40 [東歐夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "民國113年3月7日 星期四凌晨12:00:01 [太平洋標準時間]" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 上午10:00:01 [東歐標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 星期一下午1:14:15 [太平洋夏令時間]" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 上午10:00:01 [東歐標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 星期二清晨7:53:00 [太平洋夏令時間]" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 晚上11:14:15 [東歐夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "民國119年5月29日 星期三下午4:47:00 [太平洋夏令時間]" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 晚上11:14:15 [東歐夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月16日 星期三凌晨12:00:00 [GMT-07:00]" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 下午6:53:00 [莫斯科夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 星期一下午1:46:40 [太平洋標準時間]" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 下午6:53:00 [莫斯科夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月9日 星期日凌晨1:46:40 [太平洋夏令時間]" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 星期四 凌晨2:47:00 [東歐夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "民國113年3月17日 星期日凌晨1:00:00 [西非標準時間]" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 星期四 凌晨2:47:00 [東歐夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 星期一下午2:14:15 [西非標準時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 星期二上午8:53:00 [西非標準時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "民國139年5月29日 星期日下午5:47:00 [西非標準時間]" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 星期二 凌晨12:46:40 [莫斯科標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 星期三凌晨1:00:00 [GMT+01:00]" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 星期二 凌晨12:46:40 [莫斯科標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 星期一下午2:46:40 [西非標準時間]" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 上午11:46:40 [東歐夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 星期日凌晨2:46:40 [西非標準時間]" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 上午11:46:40 [東歐夏令時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "民國113年3月7日 星期四上午9:00:01 [西非標準時間]" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 星期日 上午10:00:00 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 星期一晚上9:14:15 [西非標準時間]" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 星期日 上午10:00:00 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 星期二下午3:53:00 [西非標準時間]" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 晚上11:14:15 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "民國119年5月30日 星期四凌晨12:47:00 [西非標準時間]" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 晚上11:14:15 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 星期三上午8:00:00 [GMT+01:00]" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 下午5:53:00 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 星期一晚上10:46:40 [西非標準時間]" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 下午5:53:00 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 星期日上午9:46:40 [西非標準時間]" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2050年5月30日 星期一 凌晨2:47:00 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "民國113年3月17日 星期日凌晨3:30:00 [伊朗標準時間]" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月30日 星期一 凌晨2:47:00 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月2日 星期一下午5:44:15 [伊朗夏令時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 星期二上午11:23:00 [伊朗標準時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "民國139年5月29日 星期日晚上8:17:00 [伊朗標準時間]" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 晚上11:46:40 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 星期三凌晨3:30:00 [GMT+03:30]" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 晚上11:46:40 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月12日 星期一下午5:16:40 [伊朗標準時間]" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 上午11:46:40 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 星期日清晨6:16:40 [伊朗夏令時間]" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 上午11:46:40 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "民國113年3月7日 星期四上午11:30:01 [伊朗標準時間]" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 下午6:00:01 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月3日 星期二凌晨12:44:15 [伊朗夏令時間]" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 下午6:00:01 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 星期二下午6:23:00 [伊朗標準時間]" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 星期二 清晨6:14:15 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "民國119年5月30日 星期四凌晨3:17:00 [伊朗標準時間]" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 星期二 清晨6:14:15 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 星期三上午10:30:00 [GMT+03:30]" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1984年5月30日 星期三 凌晨12:53:00 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月13日 星期二凌晨1:16:40 [伊朗標準時間]" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月30日 星期三 凌晨12:53:00 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 星期日下午1:16:40 [伊朗夏令時間]" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 星期四 上午9:47:00 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "民國113年3月17日 星期日凌晨2:00:00 [東歐標準時間]" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 星期四 上午9:47:00 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 星期一下午4:14:15 [東歐夏令時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 星期二上午11:53:00 [莫斯科夏令時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "民國139年5月29日 星期日晚上7:47:00 [東歐夏令時間]" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 星期二 清晨7:46:40 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 星期三凌晨3:00:00 [GMT+03:00]" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 星期二 清晨7:46:40 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月12日 星期一下午4:46:40 [莫斯科標準時間]" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 下午6:46:40 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 星期日凌晨4:46:40 [東歐夏令時間]" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 下午6:46:40 [澳洲東部標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "民國113年3月7日 星期四上午10:00:01 [東歐標準時間]" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 星期日 上午9:00:00 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 星期一晚上11:14:15 [東歐夏令時間]" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 星期日 上午9:00:00 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 星期二下午6:53:00 [莫斯科夏令時間]" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 晚上10:14:15 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "民國119年5月30日 星期四凌晨2:47:00 [東歐夏令時間]" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 晚上10:14:15 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 星期三上午10:00:00 [GMT+03:00]" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 下午4:53:00 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月13日 星期二凌晨12:46:40 [莫斯科標準時間]" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 下午4:53:00 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 星期日上午11:46:40 [東歐夏令時間]" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2050年5月30日 星期一 凌晨1:47:00 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "民國113年3月17日 星期日上午10:00:00 [澳洲東部標準時間]" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月30日 星期一 凌晨1:47:00 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月2日 星期一晚上11:14:15 [澳洲東部標準時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月29日 星期二下午5:53:00 [澳洲東部標準時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "民國139年5月30日 星期一凌晨2:47:00 [澳洲東部標準時間]" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 晚上10:46:40 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 星期三上午10:00:00 [GMT+10:00]" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 晚上10:46:40 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月12日 星期一晚上11:46:40 [澳洲東部標準時間]" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 上午10:46:40 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 星期日上午11:46:40 [澳洲東部標準時間]" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 上午10:46:40 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "民國113年3月7日 星期四下午6:00:01 [澳洲東部標準時間]" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 下午5:00:01 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月3日 星期二清晨6:14:15 [澳洲東部標準時間]" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 下午5:00:01 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月30日 星期三凌晨12:53:00 [澳洲東部標準時間]" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 星期二 清晨5:14:15 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "民國119年5月30日 星期四上午9:47:00 [澳洲東部標準時間]" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 星期二 清晨5:14:15 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 星期三下午5:00:00 [GMT+10:00]" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 晚上11:53:00 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月13日 星期二清晨7:46:40 [澳洲東部標準時間]" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 晚上11:53:00 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 星期日下午6:46:40 [澳洲東部標準時間]" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 星期四 上午8:47:00 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "民國113年3月17日 星期日上午9:00:00 [帛琉時間]" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 星期四 上午8:47:00 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月2日 星期一晚上10:14:15 [帛琉時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 星期二下午4:53:00 [帛琉時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "民國139年5月30日 星期一凌晨1:47:00 [帛琉時間]" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 星期二 清晨6:46:40 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 星期三上午9:00:00 [GMT+09:00]" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 星期二 清晨6:46:40 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月12日 星期一晚上10:46:40 [帛琉時間]" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 下午5:46:40 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 星期日上午10:46:40 [帛琉時間]" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 下午5:46:40 [帛琉時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "民國113年3月7日 星期四下午5:00:01 [帛琉時間]" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2024年3月16日 星期六 晚上9:00:00 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月3日 星期二清晨5:14:15 [帛琉時間]" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月16日 星期六 晚上9:00:00 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 星期二晚上11:53:00 [帛琉時間]" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 上午10:14:15 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "民國119年5月30日 星期四上午8:47:00 [帛琉時間]" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 上午10:14:15 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 星期三下午4:00:00 [GMT+09:00]" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 凌晨4:53:00 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月13日 星期二清晨6:46:40 [帛琉時間]" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 凌晨4:53:00 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 星期日下午5:46:40 [帛琉時間]" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 星期日 下午1:47:00 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "民國113年3月16日 星期六晚上9:00:00 [烏拉圭標準時間]" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 星期日 下午1:47:00 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 星期一上午10:14:15 [烏拉圭標準時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 星期二凌晨4:53:00 [烏拉圭標準時間]" + "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": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "民國139年5月29日 星期日下午1:47:00 [烏拉圭標準時間]" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 上午10:46:40 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "民國58年7月15日 星期二晚上9:00:00 [GMT-03:00]" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 上午10:46:40 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 星期一上午10:46:40 [烏拉圭標準時間]" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年9月8日 星期六 晚上10:46:40 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月8日 星期六晚上10:46:40 [烏拉圭標準時間]" + "dateTimeFormatType": "atTime", + "expected": "2001年9月8日 星期六 晚上10:46:40 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "民國113年3月7日 星期四清晨5:00:01 [烏拉圭標準時間]" + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 清晨5:00:01 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 星期一下午5:14:15 [烏拉圭標準時間]" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 清晨5:00:01 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 星期二上午11:53:00 [烏拉圭標準時間]" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 下午5:14:15 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "民國119年5月29日 星期三晚上8:47:00 [烏拉圭標準時間]" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 下午5:14:15 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "民國58年7月16日 星期三凌晨4:00:00 [GMT-03:00]" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 上午11:53:00 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 星期一下午6:46:40 [烏拉圭標準時間]" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 上午11:53:00 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "full", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月9日 星期日清晨5:46:40 [烏拉圭標準時間]" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2030年5月29日 星期三 晚上8:47:00 [烏拉圭標準時間]" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "roc", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "民國113年3月16日 星期六下午5:00" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月29日 星期三 晚上8:47:00 [烏拉圭標準時間]" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "roc", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 星期一清晨6:14" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 凌晨4:00:00 [GMT-03:00]" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "roc", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 星期二凌晨12:53" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 凌晨4:00:00 [GMT-03:00]" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "roc", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "民國139年5月29日 星期日上午9:47" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 下午6:46:40 [烏拉圭標準時間]" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "roc", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月15日 星期二下午5:00" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 下午6:46:40 [烏拉圭標準時間]" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "roc", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 星期一清晨5:46" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 清晨5:46:40 [烏拉圭標準時間]" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "roc", + "timeLength": "full", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月8日 星期六下午6:46" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 清晨5:46:40 [烏拉圭標準時間]" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "民國113年3月7日 星期四凌晨12:00" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2024年3月16日 星期六 下午5:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 星期一下午1:14" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月16日 星期六 下午5:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 星期二清晨7:53" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 清晨6:14" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "民國119年5月29日 星期三下午4:47" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 清晨6:14" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月16日 星期三凌晨12:00" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 凌晨12:53" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 星期一下午1:46" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 凌晨12:53" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月9日 星期日凌晨1:46" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 星期日 上午9:47" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "民國113年3月17日 星期日凌晨1:00" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 星期日 上午9:47" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 星期一下午2:14" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1969年7月15日 星期二 下午5:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 星期二上午8:53" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月15日 星期二 下午5:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "民國139年5月29日 星期日下午5:47" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 清晨5:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 星期三凌晨1:00" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 清晨5:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 星期一下午2:46" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年9月8日 星期六 下午6:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 星期日凌晨2:46" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月8日 星期六 下午6:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "民國113年3月7日 星期四上午9:00" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 凌晨12:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 星期一晚上9:14" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 凌晨12:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 星期二下午3:53" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 下午1:14" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "民國119年5月30日 星期四凌晨12:47" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 下午1:14" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 星期三上午8:00" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 清晨7:53" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 星期一晚上10:46" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 清晨7:53" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 星期日上午9:46" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2030年5月29日 星期三 下午4:47" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "民國113年3月17日 星期日凌晨3:30" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月29日 星期三 下午4:47" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月2日 星期一下午5:44" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 凌晨12:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 星期二上午11:23" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 凌晨12:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "民國139年5月29日 星期日晚上8:17" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 下午1:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 星期三凌晨3:30" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 下午1:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月12日 星期一下午5:16" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 凌晨1:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 星期日清晨6:16" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 凌晨1:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "民國113年3月7日 星期四上午11:30" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 星期日 凌晨1:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月3日 星期二凌晨12:44" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 星期日 凌晨1:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 星期二下午6:23" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 下午2:14" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "民國119年5月30日 星期四凌晨3:17" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 下午2:14" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 星期三上午10:30" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 上午8:53" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月13日 星期二凌晨1:16" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 上午8:53" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 星期日下午1:16" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 星期日 下午5:47" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "民國113年3月17日 星期日凌晨2:00" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 星期日 下午5:47" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 星期一下午4:14" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 凌晨1:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 星期二上午11:53" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 凌晨1:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "民國139年5月29日 星期日晚上7:47" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 下午2:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 星期三凌晨3:00" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 下午2:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月12日 星期一下午4:46" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 凌晨2:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 星期日凌晨4:46" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 凌晨2:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "民國113年3月7日 星期四上午10:00" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 上午9:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 星期一晚上11:14" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 上午9:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 星期二下午6:53" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 晚上9:14" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "民國119年5月30日 星期四凌晨2:47" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 晚上9:14" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 星期三上午10:00" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 下午3:53" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月13日 星期二凌晨12:46" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 下午3:53" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 星期日上午11:46" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 星期四 凌晨12:47" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "民國113年3月17日 星期日上午10:00" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 星期四 凌晨12:47" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月2日 星期一晚上11:14" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 上午8:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月29日 星期二下午5:53" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 上午8:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "民國139年5月30日 星期一凌晨2:47" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 晚上10:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 星期三上午10:00" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 晚上10:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月12日 星期一晚上11:46" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 上午9:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 星期日上午11:46" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 上午9:46" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "民國113年3月7日 星期四下午6:00" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 星期日 凌晨3:30" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月3日 星期二清晨6:14" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 星期日 凌晨3:30" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月30日 星期三凌晨12:53" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 下午5:44" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "民國119年5月30日 星期四上午9:47" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 下午5:44" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 星期三下午5:00" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 上午11:23" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月13日 星期二清晨7:46" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 上午11:23" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 星期日下午6:46" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 星期日 晚上8:17" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "民國113年3月17日 星期日上午9:00" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 星期日 晚上8:17" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月2日 星期一晚上10:14" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 凌晨3:30" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 星期二下午4:53" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 凌晨3:30" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "民國139年5月30日 星期一凌晨1:47" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 下午5:16" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 星期三上午9:00" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 下午5:16" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月12日 星期一晚上10:46" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 清晨6:16" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 星期日上午10:46" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 清晨6:16" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "民國113年3月7日 星期四下午5:00" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 上午11:30" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月3日 星期二清晨5:14" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 上午11:30" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 星期二晚上11:53" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 星期二 凌晨12:44" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "民國119年5月30日 星期四上午8:47" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 星期二 凌晨12:44" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 星期三下午4:00" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 下午6:23" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月13日 星期二清晨6:46" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 下午6:23" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 星期日下午5:46" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 星期四 凌晨3:17" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "民國113年3月16日 星期六晚上9:00" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 星期四 凌晨3:17" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 星期一上午10:14" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 上午10:30" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 星期二凌晨4:53" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 上午10:30" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "民國139年5月29日 星期日下午1:47" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 星期二 凌晨1:16" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "民國58年7月15日 星期二晚上9:00" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 星期二 凌晨1:16" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 星期一上午10:46" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 下午1:16" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月8日 星期六晚上10:46" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 下午1:16" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "民國113年3月7日 星期四清晨5:00" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 星期日 凌晨2:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 星期一下午5:14" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 星期日 凌晨2:00" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 星期二上午11:53" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 下午4:14" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "民國119年5月29日 星期三晚上8:47" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 下午4:14" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "民國58年7月16日 星期三凌晨4:00" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 上午11:53" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 星期一下午6:46" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 上午11:53" }, { "dateLength": "full", "timeLength": "short", - "calendar": "roc", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月9日 星期日清晨5:46" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 星期日 晚上7:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "民國113年3月16日 下午5:00:00 [PDT]" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 星期日 晚上7:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 清晨6:14:15 [PDT]" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 凌晨3:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 凌晨12:53:00 [PDT]" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 凌晨3:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "民國139年5月29日 上午9:47:00 [PDT]" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 下午4:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月15日 下午5:00:00 [GMT-7]" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 下午4:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 清晨5:46:40 [PST]" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 凌晨4:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月8日 下午6:46:40 [PDT]" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 凌晨4:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "民國113年3月7日 凌晨12:00:01 [PST]" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 上午10:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 下午1:14:15 [PDT]" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 上午10:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 清晨7:53:00 [PDT]" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 晚上11:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "民國119年5月29日 下午4:47:00 [PDT]" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 晚上11:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月16日 凌晨12:00:00 [GMT-7]" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 下午6:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 下午1:46:40 [PST]" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 下午6:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月9日 凌晨1:46:40 [PDT]" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 星期四 凌晨2:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "民國113年3月17日 凌晨1:00:00 [GMT+1]" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 星期四 凌晨2:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 下午2:14:15 [GMT+1]" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 上午10:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 上午8:53:00 [GMT+1]" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 上午10:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "民國139年5月29日 下午5:47:00 [GMT+1]" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 星期二 凌晨12:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 凌晨1:00:00 [GMT+1]" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 星期二 凌晨12:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 下午2:46:40 [GMT+1]" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 上午11:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 凌晨2:46:40 [GMT+1]" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 上午11:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "民國113年3月7日 上午9:00:01 [GMT+1]" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 星期日 上午10:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 晚上9:14:15 [GMT+1]" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 星期日 上午10:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 下午3:53:00 [GMT+1]" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 晚上11:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "民國119年5月30日 凌晨12:47:00 [GMT+1]" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 晚上11:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 上午8:00:00 [GMT+1]" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 下午5:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 晚上10:46:40 [GMT+1]" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 下午5:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 上午9:46:40 [GMT+1]" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2050年5月30日 星期一 凌晨2:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "民國113年3月17日 凌晨3:30:00 [GMT+3:30]" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月30日 星期一 凌晨2:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月2日 下午5:44:15 [GMT+4:30]" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 上午10:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 上午11:23:00 [GMT+3:30]" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 上午10:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "民國139年5月29日 晚上8:17:00 [GMT+3:30]" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 晚上11:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 凌晨3:30:00 [GMT+3:30]" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 晚上11:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月12日 下午5:16:40 [GMT+3:30]" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 上午11:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 清晨6:16:40 [GMT+4:30]" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 上午11:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "民國113年3月7日 上午11:30:01 [GMT+3:30]" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 下午6:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月3日 凌晨12:44:15 [GMT+4:30]" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 下午6:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 下午6:23:00 [GMT+3:30]" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 星期二 清晨6:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "民國119年5月30日 凌晨3:17:00 [GMT+3:30]" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 星期二 清晨6:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 上午10:30:00 [GMT+3:30]" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1984年5月30日 星期三 凌晨12:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月13日 凌晨1:16:40 [GMT+3:30]" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月30日 星期三 凌晨12:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 下午1:16:40 [GMT+4:30]" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 星期四 上午9:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "民國113年3月17日 凌晨2:00:00 [GMT+2]" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 星期四 上午9:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 下午4:14:15 [GMT+3]" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 下午5:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 上午11:53:00 [GMT+4]" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 下午5:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "民國139年5月29日 晚上7:47:00 [GMT+3]" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 星期二 清晨7:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 凌晨3:00:00 [GMT+3]" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 星期二 清晨7:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月12日 下午4:46:40 [GMT+3]" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 下午6:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 凌晨4:46:40 [GMT+3]" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 下午6:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "民國113年3月7日 上午10:00:01 [GMT+2]" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2024年3月17日 星期日 上午9:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 晚上11:14:15 [GMT+3]" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月17日 星期日 上午9:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 下午6:53:00 [GMT+4]" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 晚上10:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "民國119年5月30日 凌晨2:47:00 [GMT+3]" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 晚上10:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 上午10:00:00 [GMT+3]" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 下午4:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月13日 凌晨12:46:40 [GMT+3]" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 下午4:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 上午11:46:40 [GMT+3]" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2050年5月30日 星期一 凌晨1:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "民國113年3月17日 上午10:00:00 [GMT+10]" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月30日 星期一 凌晨1:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月2日 晚上11:14:15 [GMT+10]" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 上午9:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月29日 下午5:53:00 [GMT+10]" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 上午9:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "民國139年5月30日 凌晨2:47:00 [GMT+10]" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 晚上10:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 上午10:00:00 [GMT+10]" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 晚上10:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月12日 晚上11:46:40 [GMT+10]" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 上午10:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 上午11:46:40 [GMT+10]" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 上午10:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "民國113年3月7日 下午6:00:01 [GMT+10]" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 下午5:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月3日 清晨6:14:15 [GMT+10]" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 下午5:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月30日 凌晨12:53:00 [GMT+10]" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年7月3日 星期二 清晨5:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "民國119年5月30日 上午9:47:00 [GMT+10]" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月3日 星期二 清晨5:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 下午5:00:00 [GMT+10]" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 晚上11:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月13日 清晨7:46:40 [GMT+10]" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 晚上11:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 下午6:46:40 [GMT+10]" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2030年5月30日 星期四 上午8:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "民國113年3月17日 上午9:00:00 [GMT+9]" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2030年5月30日 星期四 上午8:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月2日 晚上10:14:15 [GMT+9]" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1969年7月16日 星期三 下午4:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 下午4:53:00 [GMT+9]" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月16日 星期三 下午4:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "民國139年5月30日 凌晨1:47:00 [GMT+9]" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "1970年1月13日 星期二 清晨6:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 上午9:00:00 [GMT+9]" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月13日 星期二 清晨6:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月12日 晚上10:46:40 [GMT+9]" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 下午5:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 上午10:46:40 [GMT+9]" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "2001年9月9日 星期日 下午5:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "民國113年3月7日 下午5:00:01 [GMT+9]" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2024年3月16日 星期六 晚上9:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月3日 清晨5:14:15 [GMT+9]" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月16日 星期六 晚上9:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 晚上11:53:00 [GMT+9]" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 上午10:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "民國119年5月30日 上午8:47:00 [GMT+9]" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 上午10:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 下午4:00:00 [GMT+9]" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 凌晨4:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月13日 清晨6:46:40 [GMT+9]" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 凌晨4:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 下午5:46:40 [GMT+9]" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2050年5月29日 星期日 下午1:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "民國113年3月16日 晚上9:00:00 [GMT-3]" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2050年5月29日 星期日 下午1:47" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 上午10:14:15 [GMT-3]" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1969年7月15日 星期二 晚上9:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 凌晨4:53:00 [GMT-3]" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1969年7月15日 星期二 晚上9:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "民國139年5月29日 下午1:47:00 [GMT-3]" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1970年1月12日 星期一 上午10:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "民國58年7月15日 晚上9:00:00 [GMT-3]" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1970年1月12日 星期一 上午10:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 上午10:46:40 [GMT-3]" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年9月8日 星期六 晚上10:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月8日 晚上10:46:40 [GMT-3]" + "dateTimeFormatType": "atTime", + "expected": "2001年9月8日 星期六 晚上10:46" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "民國113年3月7日 清晨5:00:01 [GMT-3]" + "dateTimeFormatType": "standard", + "expected": "2024年3月7日 星期四 清晨5:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 下午5:14:15 [GMT-3]" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2024年3月7日 星期四 清晨5:00" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 上午11:53:00 [GMT-3]" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "2001年7月2日 星期一 下午5:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "民國119年5月29日 晚上8:47:00 [GMT-3]" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "2001年7月2日 星期一 下午5:14" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "民國58年7月16日 凌晨4:00:00 [GMT-3]" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1984年5月29日 星期二 上午11:53" }, { - "dateLength": "long", - "calendar": "roc", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 下午6:46:40 [GMT-3]" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1984年5月29日 星期二 上午11:53" }, { - "dateLength": "long", - "calendar": "roc", + "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]", - "expected": "民國90年9月9日 清晨5:46:40 [GMT-3]" + "dateTimeFormatType": "standard", + "expected": "2001年9月9日 星期日 清晨5:46" }, { - "timeLength": "long", - "calendar": "roc", + "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": "民國113年3月16日 下午5:00:00 [PDT]" + "expected": "2024年3月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 清晨6:14:15 [PDT]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 凌晨12:53:00 [PDT]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "民國139年5月29日 上午9:47:00 [PDT]" + "expected": "2050年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月15日 下午5:00:00 [GMT-7]" + "expected": "1969年7月15日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 清晨5:46:40 [PST]" + "expected": "1970年1月12日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月8日 下午6:46:40 [PDT]" + "expected": "2001年9月8日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "民國113年3月7日 凌晨12:00:01 [PST]" + "expected": "2024年3月7日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日 下午1:14:15 [PDT]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日 清晨7:53:00 [PDT]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "民國119年5月29日 下午4:47:00 [PDT]" + "expected": "2030年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月16日 凌晨12:00:00 [GMT-7]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日 下午1:46:40 [PST]" + "expected": "1970年1月12日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月9日 凌晨1:46:40 [PDT]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "民國113年3月17日 凌晨1:00:00 [GMT+1]" + "expected": "2024年3月17日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 下午2:14:15 [GMT+1]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 上午8:53:00 [GMT+1]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "民國139年5月29日 下午5:47:00 [GMT+1]" + "expected": "2050年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 凌晨1:00:00 [GMT+1]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 下午2:46:40 [GMT+1]" + "expected": "1970年1月12日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 凌晨2:46:40 [GMT+1]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "民國113年3月7日 上午9:00:01 [GMT+1]" + "expected": "2024年3月7日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日 晚上9:14:15 [GMT+1]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日 下午3:53:00 [GMT+1]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "民國119年5月30日 凌晨12:47:00 [GMT+1]" + "expected": "2030年5月30日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日 上午8:00:00 [GMT+1]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日 晚上10:46:40 [GMT+1]" + "expected": "1970年1月12日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日 上午9:46:40 [GMT+1]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "民國113年3月17日 凌晨3:30:00 [GMT+3:30]" + "expected": "2024年3月17日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月2日 下午5:44:15 [GMT+4:30]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 上午11:23:00 [GMT+3:30]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "民國139年5月29日 晚上8:17:00 [GMT+3:30]" + "expected": "2050年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 凌晨3:30:00 [GMT+3:30]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月12日 下午5:16:40 [GMT+3:30]" + "expected": "1970年1月12日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 清晨6:16:40 [GMT+4:30]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "民國113年3月7日 上午11:30:01 [GMT+3:30]" + "expected": "2024年3月7日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月3日 凌晨12:44:15 [GMT+4:30]" + "expected": "2001年7月3日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日 下午6:23:00 [GMT+3:30]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "民國119年5月30日 凌晨3:17:00 [GMT+3:30]" + "expected": "2030年5月30日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日 上午10:30:00 [GMT+3:30]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月13日 凌晨1:16:40 [GMT+3:30]" + "expected": "1970年1月13日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日 下午1:16:40 [GMT+4:30]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "民國113年3月17日 凌晨2:00:00 [GMT+2]" + "expected": "2024年3月17日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 下午4:14:15 [GMT+3]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 上午11:53:00 [GMT+4]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "民國139年5月29日 晚上7:47:00 [GMT+3]" + "expected": "2050年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 凌晨3:00:00 [GMT+3]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月12日 下午4:46:40 [GMT+3]" + "expected": "1970年1月12日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 凌晨4:46:40 [GMT+3]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "民國113年3月7日 上午10:00:01 [GMT+2]" + "expected": "2024年3月7日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日 晚上11:14:15 [GMT+3]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日 下午6:53:00 [GMT+4]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "民國119年5月30日 凌晨2:47:00 [GMT+3]" + "expected": "2030年5月30日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日 上午10:00:00 [GMT+3]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月13日 凌晨12:46:40 [GMT+3]" + "expected": "1970年1月13日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日 上午11:46:40 [GMT+3]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "民國113年3月17日 上午10:00:00 [GMT+10]" + "expected": "2024年3月17日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月2日 晚上11:14:15 [GMT+10]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月29日 下午5:53:00 [GMT+10]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "民國139年5月30日 凌晨2:47:00 [GMT+10]" + "expected": "2050年5月30日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 上午10:00:00 [GMT+10]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月12日 晚上11:46:40 [GMT+10]" + "expected": "1970年1月12日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 上午11:46:40 [GMT+10]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "民國113年3月7日 下午6:00:01 [GMT+10]" + "expected": "2024年3月7日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月3日 清晨6:14:15 [GMT+10]" + "expected": "2001年7月3日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月30日 凌晨12:53:00 [GMT+10]" + "expected": "1984年5月30日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "民國119年5月30日 上午9:47:00 [GMT+10]" + "expected": "2030年5月30日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日 下午5:00:00 [GMT+10]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月13日 清晨7:46:40 [GMT+10]" + "expected": "1970年1月13日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日 下午6:46:40 [GMT+10]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "民國113年3月17日 上午9:00:00 [GMT+9]" + "expected": "2024年3月17日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月2日 晚上10:14:15 [GMT+9]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 下午4:53:00 [GMT+9]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "民國139年5月30日 凌晨1:47:00 [GMT+9]" + "expected": "2050年5月30日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 上午9:00:00 [GMT+9]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月12日 晚上10:46:40 [GMT+9]" + "expected": "1970年1月12日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 上午10:46:40 [GMT+9]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "民國113年3月7日 下午5:00:01 [GMT+9]" + "expected": "2024年3月7日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月3日 清晨5:14:15 [GMT+9]" + "expected": "2001年7月3日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日 晚上11:53:00 [GMT+9]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "民國119年5月30日 上午8:47:00 [GMT+9]" + "expected": "2030年5月30日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日 下午4:00:00 [GMT+9]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月13日 清晨6:46:40 [GMT+9]" + "expected": "1970年1月13日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日 下午5:46:40 [GMT+9]" + "expected": "2001年9月9日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "民國113年3月16日 晚上9:00:00 [GMT-3]" + "expected": "2024年3月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 上午10:14:15 [GMT-3]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 凌晨4:53:00 [GMT-3]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "民國139年5月29日 下午1:47:00 [GMT-3]" + "expected": "2050年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "民國58年7月15日 晚上9:00:00 [GMT-3]" + "expected": "1969年7月15日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 上午10:46:40 [GMT-3]" + "expected": "1970年1月12日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月8日 晚上10:46:40 [GMT-3]" + "expected": "2001年9月8日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "民國113年3月7日 清晨5:00:01 [GMT-3]" + "expected": "2024年3月7日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日 下午5:14:15 [GMT-3]" + "expected": "2001年7月2日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日 上午11:53:00 [GMT-3]" + "expected": "1984年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "民國119年5月29日 晚上8:47:00 [GMT-3]" + "expected": "2030年5月29日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "民國58年7月16日 凌晨4:00:00 [GMT-3]" + "expected": "1969年7月16日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日 下午6:46:40 [GMT-3]" + "expected": "1970年1月12日" }, { - "timeLength": "long", - "calendar": "roc", + "dateLength": "long", + "calendar": "gregorian", "locale": "zh-Hant-TW", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月9日 清晨5:46:40 [GMT-3]" + "expected": "2001年9月9日" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "17:00 16/3/24" + "expected": "下午5:00:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "06:14 2/7/01" + "expected": "清晨6:14:15 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "00:53 29/5/84" + "expected": "凌晨12:53:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "09:47 29/5/50" + "expected": "上午9:47:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "17:00 15/7/69" + "expected": "下午5:00:00 [GMT-7]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "05:46 12/1/70" + "expected": "清晨5:46:40 [PST]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "18:46 8/9/01" + "expected": "下午6:46:40 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "00:00 7/3/24" + "expected": "凌晨12:00:01 [PST]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "13:14 2/7/01" + "expected": "下午1:14:15 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "07:53 29/5/84" + "expected": "清晨7:53:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "16:47 29/5/30" + "expected": "下午4:47:00 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "00:00 16/7/69" + "expected": "凌晨12:00:00 [GMT-7]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "13:46 12/1/70" + "expected": "下午1:46:40 [PST]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "01:46 9/9/01" + "expected": "凌晨1:46:40 [PDT]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "01:00 17/3/24" + "expected": "凌晨1:00:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "14:14 2/7/01" + "expected": "下午2:14:15 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "08:53 29/5/84" + "expected": "上午8:53:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "17:47 29/5/50" + "expected": "下午5:47:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "01:00 16/7/69" + "expected": "凌晨1:00:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "14:46 12/1/70" + "expected": "下午2:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "02:46 9/9/01" + "expected": "凌晨2:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "09:00 7/3/24" + "expected": "上午9:00:01 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "21:14 2/7/01" + "expected": "晚上9:14:15 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "15:53 29/5/84" + "expected": "下午3:53:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "00:47 30/5/30" + "expected": "凌晨12:47:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "08:00 16/7/69" + "expected": "上午8:00:00 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "22:46 12/1/70" + "expected": "晚上10:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09:46 9/9/01" + "expected": "上午9:46:40 [GMT+1]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "03:30 17/3/24" + "expected": "凌晨3:30:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "17:44 2/7/01" + "expected": "下午5:44:15 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23 29/5/84" + "expected": "上午11:23:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "20:17 29/5/50" + "expected": "晚上8:17:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "03:30 16/7/69" + "expected": "凌晨3:30:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "17:16 12/1/70" + "expected": "下午5:16:40 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "06:16 9/9/01" + "expected": "清晨6:16:40 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30 7/3/24" + "expected": "上午11:30:01 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "00:44 3/7/01" + "expected": "凌晨12:44:15 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "18:23 29/5/84" + "expected": "下午6:23:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "03:17 30/5/30" + "expected": "凌晨3:17:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30 16/7/69" + "expected": "上午10:30:00 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "01:16 13/1/70" + "expected": "凌晨1:16:40 [GMT+3:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "13:16 9/9/01" + "expected": "下午1:16:40 [GMT+4:30]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "02:00 17/3/24" + "expected": "凌晨2:00:00 [GMT+2]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "16:14 2/7/01" + "expected": "下午4:14:15 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53 29/5/84" + "expected": "上午11:53:00 [GMT+4]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "19:47 29/5/50" + "expected": "晚上7:47:00 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "03:00 16/7/69" + "expected": "凌晨3:00:00 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "16:46 12/1/70" + "expected": "下午4:46:40 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "04:46 9/9/01" + "expected": "凌晨4:46:40 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00 7/3/24" + "expected": "上午10:00:01 [GMT+2]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "23:14 2/7/01" + "expected": "晚上11:14:15 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "18:53 29/5/84" + "expected": "下午6:53:00 [GMT+4]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "02:47 30/5/30" + "expected": "凌晨2:47:00 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00 16/7/69" + "expected": "上午10:00:00 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "00:46 13/1/70" + "expected": "凌晨12:46:40 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46 9/9/01" + "expected": "上午11:46:40 [GMT+3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00 17/3/24" + "expected": "上午10:00:00 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "23:14 2/7/01" + "expected": "晚上11:14:15 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "17:53 29/5/84" + "expected": "下午5:53:00 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "02:47 30/5/50" + "expected": "凌晨2:47:00 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00 16/7/69" + "expected": "上午10:00:00 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "23:46 12/1/70" + "expected": "晚上11:46:40 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46 9/9/01" + "expected": "上午11:46:40 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "18:00 7/3/24" + "expected": "下午6:00:01 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "06:14 3/7/01" + "expected": "清晨6:14:15 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "00:53 30/5/84" + "expected": "凌晨12:53:00 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "09:47 30/5/30" + "expected": "上午9:47:00 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "17:00 16/7/69" + "expected": "下午5:00:00 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "07:46 13/1/70" + "expected": "清晨7:46:40 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "18:46 9/9/01" + "expected": "下午6:46:40 [GMT+10]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "09:00 17/3/24" + "expected": "上午9:00:00 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "22:14 2/7/01" + "expected": "晚上10:14:15 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "16:53 29/5/84" + "expected": "下午4:53:00 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "01:47 30/5/50" + "expected": "凌晨1:47:00 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "09:00 16/7/69" + "expected": "上午9:00:00 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "22:46 12/1/70" + "expected": "晚上10:46:40 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46 9/9/01" + "expected": "上午10:46:40 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "17:00 7/3/24" + "expected": "下午5:00:01 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "05:14 3/7/01" + "expected": "清晨5:14:15 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "23:53 29/5/84" + "expected": "晚上11:53:00 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "08:47 30/5/30" + "expected": "上午8:47:00 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16:00 16/7/69" + "expected": "下午4:00:00 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "06:46 13/1/70" + "expected": "清晨6:46:40 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "17:46 9/9/01" + "expected": "下午5:46:40 [GMT+9]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "21:00 16/3/24" + "expected": "晚上9:00:00 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14 2/7/01" + "expected": "上午10:14:15 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "04:53 29/5/84" + "expected": "凌晨4:53:00 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "13:47 29/5/50" + "expected": "下午1:47:00 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "21:00 15/7/69" + "expected": "晚上9:00:00 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46 12/1/70" + "expected": "上午10:46:40 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "22:46 8/9/01" + "expected": "晚上10:46:40 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "05:00 7/3/24" + "expected": "清晨5:00:01 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "17:14 2/7/01" + "expected": "下午5:14:15 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53 29/5/84" + "expected": "上午11:53:00 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "20:47 29/5/30" + "expected": "晚上8:47:00 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "04:00 16/7/69" + "expected": "凌晨4:00:00 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "18:46 12/1/70" + "expected": "下午6:46:40 [GMT-3]" }, { - "dateLength": "short", - "timeLength": "short", + "timeLength": "long", "calendar": "gregorian", - "locale": "vi", + "locale": "zh-Hant-TW", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "05:46 9/9/01" + "expected": "清晨5:46:40 [GMT-3]" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", + "dateLength": "short", + "timeLength": "short", + "calendar": "chinese", + "locale": "zh-Hant-TW", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 16 thg 3, 2024" + "dateTimeFormatType": "standard", + "expected": "2024/2/7 下午5:00" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "06:14:15 2 thg 7, 2001" + "dateTimeFormatType": "standard", + "expected": "2001/5/12 清晨6:14" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "00:53:00 29 thg 5, 1984" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "09:47:00 29 thg 5, 2050" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 15 thg 7, 1969" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "05:46:40 12 thg 1, 1970" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "18:46:40 8 thg 9, 2001" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "00:00:01 7 thg 3, 2024" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "13:14:15 2 thg 7, 2001" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "07:53:00 29 thg 5, 1984" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "16:47:00 29 thg 5, 2030" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "00:00:00 16 thg 7, 1969" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "13:46:40 12 thg 1, 1970" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "01:46:40 9 thg 9, 2001" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 17 thg 3, 2024" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "14:14:15 2 thg 7, 2001" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "08:53:00 29 thg 5, 1984" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "17:47:00 29 thg 5, 2050" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 16 thg 7, 1969" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "14:46:40 12 thg 1, 1970" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "02:46:40 9 thg 9, 2001" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "09:00:01 7 thg 3, 2024" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "21:14:15 2 thg 7, 2001" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "15:53:00 29 thg 5, 1984" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "00:47:00 30 thg 5, 2030" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "08:00:00 16 thg 7, 1969" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "22:46:40 12 thg 1, 1970" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09:46:40 9 thg 9, 2001" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 17 thg 3, 2024" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "17:44:15 2 thg 7, 2001" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 29 thg 5, 1984" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "20:17:00 29 thg 5, 2050" + "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": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 16 thg 7, 1969" + "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": "gregorian", - "locale": "vi", + "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]", - "expected": "17:16:40 12 thg 1, 1970" + "dateTimeFormatType": "standard", + "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "06:16:40 9 thg 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 7 thg 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "00:44:15 3 thg 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "18:23:00 29 thg 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "03:17:00 30 thg 5, 2030" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 16 thg 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "01:16:40 13 thg 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "13:16:40 9 thg 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "02:00:00 17 thg 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "16:14:15 2 thg 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 29 thg 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "19:47:00 29 thg 5, 2050" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "03:00:00 16 thg 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "16:46:40 12 thg 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "04:46:40 9 thg 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 7 thg 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "23:14:15 2 thg 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "18:53:00 29 thg 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "02:47:00 30 thg 5, 2030" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 16 thg 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "00:46:40 13 thg 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 9 thg 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 17 thg 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "23:14:15 2 thg 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "17:53:00 29 thg 5, 1984" + "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": "gregorian", - "locale": "vi", + "calendar": "islamic", + "locale": "ar", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "02:47:00 30 thg 5, 2050" + "dateTimeFormatType": "atTime", + "expected": "10 رمضان 1472 هـ، 2:47:00 ص" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", + "calendar": "islamic", + "locale": "ar", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 16 thg 7, 1969" + "dateTimeFormatType": "standard", + "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "23:46:40 12 thg 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 9 thg 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "18:00:01 7 thg 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "06:14:15 3 thg 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "00:53:00 30 thg 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "09:47:00 30 thg 5, 2030" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "17:00:00 16 thg 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "07:46:40 13 thg 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "18:46:40 9 thg 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 17 thg 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "22:14:15 2 thg 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "16:53:00 29 thg 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "01:47:00 30 thg 5, 2050" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 16 thg 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "22:46:40 12 thg 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 9 thg 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "17:00:01 7 thg 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "05:14:15 3 thg 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "23:53:00 29 thg 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "08:47:00 30 thg 5, 2030" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16:00:00 16 thg 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "06:46:40 13 thg 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "17:46:40 9 thg 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 16 thg 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14:15 2 thg 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "04:53:00 29 thg 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "13:47:00 29 thg 5, 2050" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 15 thg 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 12 thg 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "22:46:40 8 thg 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "05:00:01 7 thg 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "17:14:15 2 thg 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53:00 29 thg 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "20:47:00 29 thg 5, 2030" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "04:00:00 16 thg 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "18:46:40 12 thg 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "05:46:40 9 thg 9, 2001" + "calendar": "islamic", + "locale": "ar", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 PDT 16 tháng 3, 2024" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "06:14:15 PDT 2 tháng 7, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "00:53:00 PDT 29 tháng 5, 1984" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "09:47:00 PDT 29 tháng 5, 2050" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 GMT-7 15 tháng 7, 1969" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "05:46:40 PST 12 tháng 1, 1970" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "18:46:40 PDT 8 tháng 9, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "00:00:01 PST 7 tháng 3, 2024" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "13:14:15 PDT 2 tháng 7, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "07:53:00 PDT 29 tháng 5, 1984" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "16:47:00 PDT 29 tháng 5, 2030" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "00:00:00 GMT-7 16 tháng 7, 1969" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "13:46:40 PST 12 tháng 1, 1970" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "01:46:40 PDT 9 tháng 9, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1 17 tháng 3, 2024" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "14:14:15 GMT+1 2 tháng 7, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "08:53:00 GMT+1 29 tháng 5, 1984" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "17:47:00 GMT+1 29 tháng 5, 2050" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1 16 tháng 7, 1969" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "14:46:40 GMT+1 12 tháng 1, 1970" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "02:46:40 GMT+1 9 tháng 9, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "09:00:01 GMT+1 7 tháng 3, 2024" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "21:14:15 GMT+1 2 tháng 7, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "15:53:00 GMT+1 29 tháng 5, 1984" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "00:47:00 GMT+1 30 tháng 5, 2030" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "08:00:00 GMT+1 16 tháng 7, 1969" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "22:46:40 GMT+1 12 tháng 1, 1970" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09:46:40 GMT+1 9 tháng 9, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30 17 tháng 3, 2024" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "17:44:15 GMT+4:30 2 tháng 7, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 GMT+3:30 29 tháng 5, 1984" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "20:17:00 GMT+3:30 29 tháng 5, 2050" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30 16 tháng 7, 1969" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "17:16:40 GMT+3:30 12 tháng 1, 1970" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "06:16:40 GMT+4:30 9 tháng 9, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 GMT+3:30 7 tháng 3, 2024" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "00:44:15 GMT+4:30 3 tháng 7, 2001" + "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": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "18:23:00 GMT+3:30 29 tháng 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "03:17:00 GMT+3:30 30 tháng 5, 2030" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 GMT+3:30 16 tháng 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "01:16:40 GMT+3:30 13 tháng 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "13:16:40 GMT+4:30 9 tháng 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "02:00:00 GMT+2 17 tháng 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "16:14:15 GMT+3 2 tháng 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 GMT+4 29 tháng 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "19:47:00 GMT+3 29 tháng 5, 2050" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "03:00:00 GMT+3 16 tháng 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "16:46:40 GMT+3 12 tháng 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "04:46:40 GMT+3 9 tháng 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 GMT+2 7 tháng 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "23:14:15 GMT+3 2 tháng 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "18:53:00 GMT+4 29 tháng 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "02:47:00 GMT+3 30 tháng 5, 2030" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 GMT+3 16 tháng 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "00:46:40 GMT+3 13 tháng 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 GMT+3 9 tháng 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10 17 tháng 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "23:14:15 GMT+10 2 tháng 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "17:53:00 GMT+10 29 tháng 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "02:47:00 GMT+10 30 tháng 5, 2050" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10 16 tháng 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "23:46:40 GMT+10 12 tháng 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 GMT+10 9 tháng 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "18:00:01 GMT+10 7 tháng 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "06:14:15 GMT+10 3 tháng 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "00:53:00 GMT+10 30 tháng 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "09:47:00 GMT+10 30 tháng 5, 2030" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "17:00:00 GMT+10 16 tháng 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "07:46:40 GMT+10 13 tháng 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "18:46:40 GMT+10 9 tháng 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9 17 tháng 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "22:14:15 GMT+9 2 tháng 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "16:53:00 GMT+9 29 tháng 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "01:47:00 GMT+9 30 tháng 5, 2050" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9 16 tháng 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "22:46:40 GMT+9 12 tháng 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 GMT+9 9 tháng 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "17:00:01 GMT+9 7 tháng 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "05:14:15 GMT+9 3 tháng 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "23:53:00 GMT+9 29 tháng 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "08:47:00 GMT+9 30 tháng 5, 2030" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16:00:00 GMT+9 16 tháng 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "06:46:40 GMT+9 13 tháng 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "17:46:40 GMT+9 9 tháng 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3 16 tháng 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14:15 GMT-3 2 tháng 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "04:53:00 GMT-3 29 tháng 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "13:47:00 GMT-3 29 tháng 5, 2050" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3 15 tháng 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 GMT-3 12 tháng 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "22:46:40 GMT-3 8 tháng 9, 2001" + "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": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "05:00:01 GMT-3 7 tháng 3, 2024" + "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": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "17:14:15 GMT-3 2 tháng 7, 2001" + "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": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53:00 GMT-3 29 tháng 5, 1984" + "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": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "20:47:00 GMT-3 29 tháng 5, 2030" + "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": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "04:00:00 GMT-3 16 tháng 7, 1969" + "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": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "18:46:40 GMT-3 12 tháng 1, 1970" + "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": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "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]", - "expected": "17:00:00 Giờ mùa hè Thái Bình Dương Thứ Bảy, 16 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "06:14:15 Giờ mùa hè Thái Bình Dương Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "00:53:00 Giờ mùa hè Thái Bình Dương Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "09:47:00 Giờ mùa hè Thái Bình Dương Chủ Nhật, 29 tháng 5, 2050" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 GMT-07:00 Thứ Ba, 15 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "05:46:40 Giờ chuẩn Thái Bình Dương Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "18:46:40 Giờ mùa hè Thái Bình Dương Thứ Bảy, 8 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "00:00:01 Giờ chuẩn Thái Bình Dương Thứ Năm, 7 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "13:14:15 Giờ mùa hè Thái Bình Dương Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "07:53:00 Giờ mùa hè Thái Bình Dương Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "16:47:00 Giờ mùa hè Thái Bình Dương Thứ Tư, 29 tháng 5, 2030" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "00:00:00 GMT-07:00 Thứ Tư, 16 tháng 7, 1969" + { + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "13:46:40 Giờ chuẩn Thái Bình Dương Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "01:46:40 Giờ mùa hè Thái Bình Dương Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 Giờ Chuẩn Tây Phi Chủ Nhật, 17 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "14:14:15 Giờ Chuẩn Tây Phi Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "08:53:00 Giờ Chuẩn Tây Phi Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "17:47:00 Giờ Chuẩn Tây Phi Chủ Nhật, 29 tháng 5, 2050" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+01:00 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "14:46:40 Giờ Chuẩn Tây Phi Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "02:46:40 Giờ Chuẩn Tây Phi Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "09:00:01 Giờ Chuẩn Tây Phi Thứ Năm, 7 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "21:14:15 Giờ Chuẩn Tây Phi Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "15:53:00 Giờ Chuẩn Tây Phi Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "00:47:00 Giờ Chuẩn Tây Phi Thứ Năm, 30 tháng 5, 2030" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "08:00:00 GMT+01:00 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "22:46:40 Giờ Chuẩn Tây Phi Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09:46:40 Giờ Chuẩn Tây Phi Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 Giờ Chuẩn Iran Chủ Nhật, 17 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "17:44:15 Giờ Mùa Hè Iran Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 Giờ Chuẩn Iran Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "20:17:00 Giờ Chuẩn Iran Chủ Nhật, 29 tháng 5, 2050" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+03:30 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "17:16:40 Giờ Chuẩn Iran Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "06:16:40 Giờ Mùa Hè Iran Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 Giờ Chuẩn Iran Thứ Năm, 7 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "00:44:15 Giờ Mùa Hè Iran Thứ Ba, 3 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "18:23:00 Giờ Chuẩn Iran Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "03:17:00 Giờ Chuẩn Iran Thứ Năm, 30 tháng 5, 2030" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 GMT+03:30 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "01:16:40 Giờ Chuẩn Iran Thứ Ba, 13 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "13:16:40 Giờ Mùa Hè Iran Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "02:00:00 Giờ chuẩn Đông Âu Chủ Nhật, 17 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "16:14:15 Giờ mùa hè Đông Âu Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 Giờ Mùa Hè Matxcơva Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "19:47:00 Giờ mùa hè Đông Âu Chủ Nhật, 29 tháng 5, 2050" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "03:00:00 GMT+03:00 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "16:46:40 Giờ Chuẩn Matxcơva Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "04:46:40 Giờ mùa hè Đông Âu Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 Giờ chuẩn Đông Âu Thứ Năm, 7 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "23:14:15 Giờ mùa hè Đông Âu Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "18:53:00 Giờ Mùa Hè Matxcơva Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "02:47:00 Giờ mùa hè Đông Âu Thứ Năm, 30 tháng 5, 2030" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 GMT+03:00 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "00:46:40 Giờ Chuẩn Matxcơva Thứ Ba, 13 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 Giờ mùa hè Đông Âu Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 Giờ Chuẩn Miền Đông Australia Chủ Nhật, 17 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "23:14:15 Giờ Chuẩn Miền Đông Australia Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "17:53:00 Giờ Chuẩn Miền Đông Australia Thứ Ba, 29 tháng 5, 1984" + "dateTimeFormatType": "atTime", + "expected": "28 شعبان 1404 هـ في 5:53:00 م غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", + "locale": "ar", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "02:47:00 Giờ Chuẩn Miền Đông Australia Thứ Hai, 30 tháng 5, 2050" + "dateTimeFormatType": "standard", + "expected": "10 رمضان 1472 هـ، 2:47:00 ص غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "10:00:00 GMT+10:00 Thứ Tư, 16 tháng 7, 1969" + "dateTimeFormatType": "standard", + "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "23:46:40 Giờ Chuẩn Miền Đông Australia Thứ Hai, 12 tháng 1, 1970" + "dateTimeFormatType": "standard", + "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "11:46:40 Giờ Chuẩn Miền Đông Australia Chủ Nhật, 9 tháng 9, 2001" + "dateTimeFormatType": "standard", + "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "18:00:01 Giờ Chuẩn Miền Đông Australia Thứ Năm, 7 tháng 3, 2024" + "dateTimeFormatType": "standard", + "expected": "27 شعبان 1445 هـ، 6:00:01 م غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "06:14:15 Giờ Chuẩn Miền Đông Australia Thứ Ba, 3 tháng 7, 2001" + "dateTimeFormatType": "standard", + "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "00:53:00 Giờ Chuẩn Miền Đông Australia Thứ Tư, 30 tháng 5, 1984" + "dateTimeFormatType": "standard", + "expected": "29 شعبان 1404 هـ، 12:53:00 ص غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "09:47:00 Giờ Chuẩn Miền Đông Australia Thứ Năm, 30 tháng 5, 2030" + "dateTimeFormatType": "standard", + "expected": "28 محرم 1452 هـ، 9:47:00 ص غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "17:00:00 GMT+10:00 Thứ Tư, 16 tháng 7, 1969" + "dateTimeFormatType": "standard", + "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "07:46:40 Giờ Chuẩn Miền Đông Australia Thứ Ba, 13 tháng 1, 1970" + "dateTimeFormatType": "standard", + "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "18:46:40 Giờ Chuẩn Miền Đông Australia Chủ Nhật, 9 tháng 9, 2001" + "dateTimeFormatType": "standard", + "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش+10" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 Giờ Palau Chủ Nhật, 17 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "22:14:15 Giờ Palau Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "16:53:00 Giờ Palau Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "01:47:00 Giờ Palau Thứ Hai, 30 tháng 5, 2050" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+09:00 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "22:46:40 Giờ Palau Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 Giờ Palau Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "17:00:01 Giờ Palau Thứ Năm, 7 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "05:14:15 Giờ Palau Thứ Ba, 3 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "23:53:00 Giờ Palau Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "08:47:00 Giờ Palau Thứ Năm, 30 tháng 5, 2030" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16:00:00 GMT+09:00 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "06:46:40 Giờ Palau Thứ Ba, 13 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "17:46:40 Giờ Palau Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 Giờ Chuẩn Uruguay Thứ Bảy, 16 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14:15 Giờ Chuẩn Uruguay Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "04:53:00 Giờ Chuẩn Uruguay Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "13:47:00 Giờ Chuẩn Uruguay Chủ Nhật, 29 tháng 5, 2050" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-03:00 Thứ Ba, 15 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 Giờ Chuẩn Uruguay Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "22:46:40 Giờ Chuẩn Uruguay Thứ Bảy, 8 tháng 9, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "05:00:01 Giờ Chuẩn Uruguay Thứ Năm, 7 tháng 3, 2024" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "17:14:15 Giờ Chuẩn Uruguay Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53:00 Giờ Chuẩn Uruguay Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "20:47:00 Giờ Chuẩn Uruguay Thứ Tư, 29 tháng 5, 2030" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "04:00:00 GMT-03:00 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "18:46:40 Giờ Chuẩn Uruguay Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "05:46:40 Giờ Chuẩn Uruguay Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "17:00 Thứ Bảy, 16 tháng 3, 2024" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "06:14 Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "00:53 Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "09:47 Chủ Nhật, 29 tháng 5, 2050" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "17:00 Thứ Ba, 15 tháng 7, 1969" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "05:46 Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "18:46 Thứ Bảy, 8 tháng 9, 2001" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "00:00 Thứ Năm, 7 tháng 3, 2024" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "13:14 Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "07:53 Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "16:47 Thứ Tư, 29 tháng 5, 2030" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "00:00 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "13:46 Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "01:46 Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "01:00 Chủ Nhật, 17 tháng 3, 2024" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "14:14 Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "08:53 Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "17:47 Chủ Nhật, 29 tháng 5, 2050" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "01:00 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "14:46 Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "02:46 Chủ Nhật, 9 tháng 9, 2001" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "09:00 Thứ Năm, 7 tháng 3, 2024" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "21:14 Thứ Hai, 2 tháng 7, 2001" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "15:53 Thứ Ba, 29 tháng 5, 1984" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "00:47 Thứ Năm, 30 tháng 5, 2030" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "08:00 Thứ Tư, 16 tháng 7, 1969" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "22:46 Thứ Hai, 12 tháng 1, 1970" + "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": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09:46 Chủ Nhật, 9 tháng 9, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "03:30 Chủ Nhật, 17 tháng 3, 2024" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "17:44 Thứ Hai, 2 tháng 7, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23 Thứ Ba, 29 tháng 5, 1984" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "20:17 Chủ Nhật, 29 tháng 5, 2050" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "03:30 Thứ Tư, 16 tháng 7, 1969" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "17:16 Thứ Hai, 12 tháng 1, 1970" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "06:16 Chủ Nhật, 9 tháng 9, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30 Thứ Năm, 7 tháng 3, 2024" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "00:44 Thứ Ba, 3 tháng 7, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "18:23 Thứ Ba, 29 tháng 5, 1984" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "03:17 Thứ Năm, 30 tháng 5, 2030" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30 Thứ Tư, 16 tháng 7, 1969" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "01:16 Thứ Ba, 13 tháng 1, 1970" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "13:16 Chủ Nhật, 9 tháng 9, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "02:00 Chủ Nhật, 17 tháng 3, 2024" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "16:14 Thứ Hai, 2 tháng 7, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53 Thứ Ba, 29 tháng 5, 1984" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "19:47 Chủ Nhật, 29 tháng 5, 2050" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "03:00 Thứ Tư, 16 tháng 7, 1969" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "16:46 Thứ Hai, 12 tháng 1, 1970" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "04:46 Chủ Nhật, 9 tháng 9, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00 Thứ Năm, 7 tháng 3, 2024" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "23:14 Thứ Hai, 2 tháng 7, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "18:53 Thứ Ba, 29 tháng 5, 1984" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "02:47 Thứ Năm, 30 tháng 5, 2030" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00 Thứ Tư, 16 tháng 7, 1969" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "00:46 Thứ Ba, 13 tháng 1, 1970" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46 Chủ Nhật, 9 tháng 9, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00 Chủ Nhật, 17 tháng 3, 2024" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "23:14 Thứ Hai, 2 tháng 7, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "17:53 Thứ Ba, 29 tháng 5, 1984" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "02:47 Thứ Hai, 30 tháng 5, 2050" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00 Thứ Tư, 16 tháng 7, 1969" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "23:46 Thứ Hai, 12 tháng 1, 1970" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46 Chủ Nhật, 9 tháng 9, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "18:00 Thứ Năm, 7 tháng 3, 2024" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "06:14 Thứ Ba, 3 tháng 7, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "00:53 Thứ Tư, 30 tháng 5, 1984" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "09:47 Thứ Năm, 30 tháng 5, 2030" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "17:00 Thứ Tư, 16 tháng 7, 1969" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "07:46 Thứ Ba, 13 tháng 1, 1970" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "18:46 Chủ Nhật, 9 tháng 9, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "09:00 Chủ Nhật, 17 tháng 3, 2024" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "22:14 Thứ Hai, 2 tháng 7, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "16:53 Thứ Ba, 29 tháng 5, 1984" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "01:47 Thứ Hai, 30 tháng 5, 2050" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "09:00 Thứ Tư, 16 tháng 7, 1969" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "22:46 Thứ Hai, 12 tháng 1, 1970" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46 Chủ Nhật, 9 tháng 9, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "17:00 Thứ Năm, 7 tháng 3, 2024" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "05:14 Thứ Ba, 3 tháng 7, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "23:53 Thứ Ba, 29 tháng 5, 1984" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "08:47 Thứ Năm, 30 tháng 5, 2030" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16:00 Thứ Tư, 16 tháng 7, 1969" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "06:46 Thứ Ba, 13 tháng 1, 1970" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "17:46 Chủ Nhật, 9 tháng 9, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "21:00 Thứ Bảy, 16 tháng 3, 2024" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14 Thứ Hai, 2 tháng 7, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "04:53 Thứ Ba, 29 tháng 5, 1984" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "13:47 Chủ Nhật, 29 tháng 5, 2050" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "21:00 Thứ Ba, 15 tháng 7, 1969" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46 Thứ Hai, 12 tháng 1, 1970" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "22:46 Thứ Bảy, 8 tháng 9, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "05:00 Thứ Năm, 7 tháng 3, 2024" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "17:14 Thứ Hai, 2 tháng 7, 2001" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53 Thứ Ba, 29 tháng 5, 1984" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "20:47 Thứ Tư, 29 tháng 5, 2030" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "04:00 Thứ Tư, 16 tháng 7, 1969" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "18:46 Thứ Hai, 12 tháng 1, 1970" + "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": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "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": "17:00:00 PDT 16 tháng 3, 2024" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "06:14:15 PDT 2 tháng 7, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "00:53:00 PDT 29 tháng 5, 1984" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "09:47:00 PDT 29 tháng 5, 2050" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 GMT-7 15 tháng 7, 1969" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "05:46:40 PST 12 tháng 1, 1970" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "18:46:40 PDT 8 tháng 9, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "00:00:01 PST 7 tháng 3, 2024" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "13:14:15 PDT 2 tháng 7, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "07:53:00 PDT 29 tháng 5, 1984" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "16:47:00 PDT 29 tháng 5, 2030" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "00:00:00 GMT-7 16 tháng 7, 1969" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "13:46:40 PST 12 tháng 1, 1970" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "01:46:40 PDT 9 tháng 9, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1 17 tháng 3, 2024" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "14:14:15 GMT+1 2 tháng 7, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "08:53:00 GMT+1 29 tháng 5, 1984" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "17:47:00 GMT+1 29 tháng 5, 2050" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1 16 tháng 7, 1969" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "14:46:40 GMT+1 12 tháng 1, 1970" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "02:46:40 GMT+1 9 tháng 9, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "09:00:01 GMT+1 7 tháng 3, 2024" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "21:14:15 GMT+1 2 tháng 7, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "15:53:00 GMT+1 29 tháng 5, 1984" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "00:47:00 GMT+1 30 tháng 5, 2030" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "08:00:00 GMT+1 16 tháng 7, 1969" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "22:46:40 GMT+1 12 tháng 1, 1970" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09:46:40 GMT+1 9 tháng 9, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30 17 tháng 3, 2024" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "17:44:15 GMT+4:30 2 tháng 7, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 GMT+3:30 29 tháng 5, 1984" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "20:17:00 GMT+3:30 29 tháng 5, 2050" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30 16 tháng 7, 1969" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "17:16:40 GMT+3:30 12 tháng 1, 1970" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "06:16:40 GMT+4:30 9 tháng 9, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 GMT+3:30 7 tháng 3, 2024" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "00:44:15 GMT+4:30 3 tháng 7, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "18:23:00 GMT+3:30 29 tháng 5, 1984" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "03:17:00 GMT+3:30 30 tháng 5, 2030" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 GMT+3:30 16 tháng 7, 1969" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "01:16:40 GMT+3:30 13 tháng 1, 1970" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "13:16:40 GMT+4:30 9 tháng 9, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "02:00:00 GMT+2 17 tháng 3, 2024" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "16:14:15 GMT+3 2 tháng 7, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 GMT+4 29 tháng 5, 1984" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "19:47:00 GMT+3 29 tháng 5, 2050" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "03:00:00 GMT+3 16 tháng 7, 1969" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "16:46:40 GMT+3 12 tháng 1, 1970" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "04:46:40 GMT+3 9 tháng 9, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 GMT+2 7 tháng 3, 2024" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "23:14:15 GMT+3 2 tháng 7, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "18:53:00 GMT+4 29 tháng 5, 1984" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "02:47:00 GMT+3 30 tháng 5, 2030" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 GMT+3 16 tháng 7, 1969" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "00:46:40 GMT+3 13 tháng 1, 1970" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 GMT+3 9 tháng 9, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10 17 tháng 3, 2024" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "23:14:15 GMT+10 2 tháng 7, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "17:53:00 GMT+10 29 tháng 5, 1984" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "02:47:00 GMT+10 30 tháng 5, 2050" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10 16 tháng 7, 1969" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "23:46:40 GMT+10 12 tháng 1, 1970" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 GMT+10 9 tháng 9, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "18:00:01 GMT+10 7 tháng 3, 2024" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "06:14:15 GMT+10 3 tháng 7, 2001" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "00:53:00 GMT+10 30 tháng 5, 1984" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "09:47:00 GMT+10 30 tháng 5, 2030" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "17:00:00 GMT+10 16 tháng 7, 1969" + "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": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "07:46:40 GMT+10 13 tháng 1, 1970" + "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": "long", - "calendar": "gregorian", - "locale": "vi", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "18:46:40 GMT+10 9 tháng 9, 2001" + "dateTimeFormatType": "atTime", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 6:46:40 م توقيت شرق أستراليا الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9 17 tháng 3, 2024" + "dateTimeFormatType": "standard", + "expected": "الأحد، 7 رمضان 1445 هـ، 9:00:00 ص توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "22:14:15 GMT+9 2 tháng 7, 2001" + "dateTimeFormatType": "standard", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14:15 م توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "16:53:00 GMT+9 29 tháng 5, 1984" + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53:00 م توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "01:47:00 GMT+9 30 tháng 5, 2050" + "dateTimeFormatType": "standard", + "expected": "الاثنين، 10 رمضان 1472 هـ، 1:47:00 ص توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "09:00:00 GMT+9 16 tháng 7, 1969" + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 9:00:00 ص غرينتش+09:00" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "22:46:40 GMT+9 12 tháng 1, 1970" + "dateTimeFormatType": "standard", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 م توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "10:46:40 GMT+9 9 tháng 9, 2001" + "dateTimeFormatType": "standard", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 10:46:40 ص توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "17:00:01 GMT+9 7 tháng 3, 2024" + "dateTimeFormatType": "standard", + "expected": "الخميس، 27 شعبان 1445 هـ، 5:00:01 م توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "05:14:15 GMT+9 3 tháng 7, 2001" + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 5:14:15 ص توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "23:53:00 GMT+9 29 tháng 5, 1984" + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 م توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "08:47:00 GMT+9 30 tháng 5, 2030" + "dateTimeFormatType": "standard", + "expected": "الخميس، 28 محرم 1452 هـ، 8:47:00 ص توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "16:00:00 GMT+9 16 tháng 7, 1969" + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00:00 م غرينتش+09:00" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "06:46:40 GMT+9 13 tháng 1, 1970" + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 6:46:40 ص توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "17:46:40 GMT+9 9 tháng 9, 2001" + "dateTimeFormatType": "standard", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46:40 م توقيت بالاو" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "21:00:00 GMT-3 16 tháng 3, 2024" + "dateTimeFormatType": "standard", + "expected": "السبت، 6 رمضان 1445 هـ، 9:00:00 م توقيت أوروغواي الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "10:14:15 GMT-3 2 tháng 7, 2001" + "dateTimeFormatType": "standard", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14:15 ص توقيت أوروغواي الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "04:53:00 GMT-3 29 tháng 5, 1984" + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53:00 ص توقيت أوروغواي الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "13:47:00 GMT-3 29 tháng 5, 2050" + "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": "long", - "calendar": "gregorian", - "locale": "vi", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3 15 tháng 7, 1969" + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ في 9:00:00 م غرينتش-03:00" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "ar", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 GMT-3 12 tháng 1, 1970" + "dateTimeFormatType": "standard", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 ص توقيت أوروغواي الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "22:46:40 GMT-3 8 tháng 9, 2001" + "dateTimeFormatType": "standard", + "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 10:46:40 م توقيت أوروغواي الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "05:00:01 GMT-3 7 tháng 3, 2024" + "dateTimeFormatType": "standard", + "expected": "الخميس، 27 شعبان 1445 هـ، 5:00:01 ص توقيت أوروغواي الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "17:14:15 GMT-3 2 tháng 7, 2001" + "dateTimeFormatType": "standard", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:14:15 م توقيت أوروغواي الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "11:53:00 GMT-3 29 tháng 5, 1984" + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 ص توقيت أوروغواي الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "20:47:00 GMT-3 29 tháng 5, 2030" + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 27 محرم 1452 هـ، 8:47:00 م توقيت أوروغواي الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "04:00:00 GMT-3 16 tháng 7, 1969" + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00:00 ص غرينتش-03:00" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "18:46:40 GMT-3 12 tháng 1, 1970" + "dateTimeFormatType": "standard", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 6:46:40 م توقيت أوروغواي الرسمي" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", + "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]", - "expected": "05:46:40 GMT-3 9 tháng 9, 2001" + "dateTimeFormatType": "standard", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46:40 ص توقيت أوروغواي الرسمي" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 PDT 16 tháng 3, 2024" + "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 ص توقيت أوروغواي الرسمي" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "06:14:15 PDT 2 tháng 7, 2001" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "00:53:00 PDT 29 tháng 5, 1984" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "09:47:00 PDT 29 tháng 5, 2050" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 GMT-7 15 tháng 7, 1969" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "05:46:40 PST 12 tháng 1, 1970" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "18:46:40 PDT 8 tháng 9, 2001" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "00:00:01 PST 7 tháng 3, 2024" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "13:14:15 PDT 2 tháng 7, 2001" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "07:53:00 PDT 29 tháng 5, 1984" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "16:47:00 PDT 29 tháng 5, 2030" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "00:00:00 GMT-7 16 tháng 7, 1969" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "13:46:40 PST 12 tháng 1, 1970" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "01:46:40 PDT 9 tháng 9, 2001" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1 17 tháng 3, 2024" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "14:14:15 GMT+1 2 tháng 7, 2001" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "08:53:00 GMT+1 29 tháng 5, 1984" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "17:47:00 GMT+1 29 tháng 5, 2050" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1 16 tháng 7, 1969" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "14:46:40 GMT+1 12 tháng 1, 1970" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "02:46:40 GMT+1 9 tháng 9, 2001" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "09:00:01 GMT+1 7 tháng 3, 2024" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "21:14:15 GMT+1 2 tháng 7, 2001" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "15:53:00 GMT+1 29 tháng 5, 1984" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "00:47:00 GMT+1 30 tháng 5, 2030" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "08:00:00 GMT+1 16 tháng 7, 1969" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "22:46:40 GMT+1 12 tháng 1, 1970" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09:46:40 GMT+1 9 tháng 9, 2001" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30 17 tháng 3, 2024" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "17:44:15 GMT+4:30 2 tháng 7, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 7 رمضان 1445 هـ، 1:00 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 GMT+3:30 29 tháng 5, 1984" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 7 رمضان 1445 هـ في 1:00 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "20:17:00 GMT+3:30 29 tháng 5, 2050" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30 16 tháng 7, 1969" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "17:16:40 GMT+3:30 12 tháng 1, 1970" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 8:53 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "06:16:40 GMT+4:30 9 tháng 9, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 8:53 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 GMT+3:30 7 tháng 3, 2024" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 9 رمضان 1472 هـ، 5:47 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "00:44:15 GMT+4:30 3 tháng 7, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 9 رمضان 1472 هـ في 5:47 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "18:23:00 GMT+3:30 29 tháng 5, 1984" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 1:00 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "03:17:00 GMT+3:30 30 tháng 5, 2030" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 1:00 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 GMT+3:30 16 tháng 7, 1969" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "01:16:40 GMT+3:30 13 tháng 1, 1970" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "13:16:40 GMT+4:30 9 tháng 9, 2001" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "02:00:00 GMT+2 17 tháng 3, 2024" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "16:14:15 GMT+3 2 tháng 7, 2001" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 GMT+4 29 tháng 5, 1984" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "19:47:00 GMT+3 29 tháng 5, 2050" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "03:00:00 GMT+3 16 tháng 7, 1969" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "16:46:40 GMT+3 12 tháng 1, 1970" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 3:53 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "04:46:40 GMT+3 9 tháng 9, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 3:53 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 GMT+2 7 tháng 3, 2024" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "الخميس، 28 محرم 1452 هـ، 12:47 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "23:14:15 GMT+3 2 tháng 7, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "الخميس، 28 محرم 1452 هـ في 12:47 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "18:53:00 GMT+4 29 tháng 5, 1984" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 8:00 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "02:47:00 GMT+3 30 tháng 5, 2030" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 8:00 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 GMT+3 16 tháng 7, 1969" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "00:46:40 GMT+3 13 tháng 1, 1970" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 GMT+3 9 tháng 9, 2001" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10 17 tháng 3, 2024" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "23:14:15 GMT+10 2 tháng 7, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 7 رمضان 1445 هـ، 3:30 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "17:53:00 GMT+10 29 tháng 5, 1984" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 7 رمضان 1445 هـ في 3:30 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "02:47:00 GMT+10 30 tháng 5, 2050" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10 16 tháng 7, 1969" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "23:46:40 GMT+10 12 tháng 1, 1970" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:23 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 GMT+10 9 tháng 9, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:23 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "18:00:01 GMT+10 7 tháng 3, 2024" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 9 رمضان 1472 هـ، 8:17 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "06:14:15 GMT+10 3 tháng 7, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 9 رمضان 1472 هـ في 8:17 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "00:53:00 GMT+10 30 tháng 5, 1984" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:30 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "09:47:00 GMT+10 30 tháng 5, 2030" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 3:30 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "17:00:00 GMT+10 16 tháng 7, 1969" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "07:46:40 GMT+10 13 tháng 1, 1970" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "18:46:40 GMT+10 9 tháng 9, 2001" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9 17 tháng 3, 2024" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "22:14:15 GMT+9 2 tháng 7, 2001" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "16:53:00 GMT+9 29 tháng 5, 1984" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "01:47:00 GMT+9 30 tháng 5, 2050" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9 16 tháng 7, 1969" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "22:46:40 GMT+9 12 tháng 1, 1970" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:23 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 GMT+9 9 tháng 9, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 6:23 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "17:00:01 GMT+9 7 tháng 3, 2024" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "الخميس، 28 محرم 1452 هـ، 3:17 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "05:14:15 GMT+9 3 tháng 7, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "الخميس، 28 محرم 1452 هـ في 3:17 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "23:53:00 GMT+9 29 tháng 5, 1984" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:30 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "08:47:00 GMT+9 30 tháng 5, 2030" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 10:30 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16:00:00 GMT+9 16 tháng 7, 1969" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "06:46:40 GMT+9 13 tháng 1, 1970" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "17:46:40 GMT+9 9 tháng 9, 2001" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3 16 tháng 3, 2024" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 7 رمضان 1445 هـ، 2:00 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14:15 GMT-3 2 tháng 7, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 7 رمضان 1445 هـ في 2:00 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "04:53:00 GMT-3 29 tháng 5, 1984" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "13:47:00 GMT-3 29 tháng 5, 2050" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3 15 tháng 7, 1969" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 GMT-3 12 tháng 1, 1970" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:53 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "22:46:40 GMT-3 8 tháng 9, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 9 رمضان 1472 هـ، 7:47 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "05:00:01 GMT-3 7 tháng 3, 2024" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 9 رمضان 1472 هـ في 7:47 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "17:14:15 GMT-3 2 tháng 7, 2001" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:00 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53:00 GMT-3 29 tháng 5, 1984" + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", + "locale": "ar", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 3:00 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "20:47:00 GMT-3 29 tháng 5, 2030" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "04:00:00 GMT-3 16 tháng 7, 1969" + "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 م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "18:46:40 GMT-3 12 tháng 1, 1970" + "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 ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "05:46:40 GMT-3 9 tháng 9, 2001" + "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": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16‏/3‏/2024، 5:00 م" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الخميس، 27 شعبان 1445 هـ، 10:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2‏/7‏/2001، 6:14 ص" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الخميس، 27 شعبان 1445 هـ في 10:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29‏/5‏/1984، 12:53 ص" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29‏/5‏/2050، 9:47 ص" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 11:14 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15‏/7‏/1969، 5:00 م" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:53 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12‏/1‏/1970، 5:46 ص" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 6:53 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8‏/9‏/2001، 6:46 م" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الخميس، 28 محرم 1452 هـ، 2:47 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7‏/3‏/2024، 12:00 ص" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الخميس، 28 محرم 1452 هـ في 2:47 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2‏/7‏/2001، 1:14 م" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29‏/5‏/1984، 7:53 ص" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 10:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29‏/5‏/2030، 4:47 م" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 12:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16‏/7‏/1969، 12:00 ص" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 12:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12‏/1‏/1970، 1:46 م" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9‏/9‏/2001، 1:46 ص" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 11:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17‏/3‏/2024، 1:00 ص" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 7 رمضان 1445 هـ، 10:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2‏/7‏/2001، 2:14 م" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 7 رمضان 1445 هـ في 10:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29‏/5‏/1984، 8:53 ص" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29‏/5‏/2050، 5:47 م" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 11:14 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16‏/7‏/1969، 1:00 ص" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 5:53 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12‏/1‏/1970، 2:46 م" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 5:53 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9‏/9‏/2001، 2:46 ص" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 10 رمضان 1472 هـ، 2:47 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7‏/3‏/2024، 9:00 ص" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 10 رمضان 1472 هـ في 2:47 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2‏/7‏/2001، 9:14 م" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29‏/5‏/1984، 3:53 م" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 10:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30‏/5‏/2030، 12:47 ص" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 11:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16‏/7‏/1969، 8:00 ص" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 11:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12‏/1‏/1970، 10:46 م" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9‏/9‏/2001، 9:46 ص" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 11:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17‏/3‏/2024، 3:30 ص" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الخميس، 27 شعبان 1445 هـ، 6:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2‏/7‏/2001، 5:44 م" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الخميس، 27 شعبان 1445 هـ في 6:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29‏/5‏/1984، 11:23 ص" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 6:14 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29‏/5‏/2050، 8:17 م" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ في 6:14 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16‏/7‏/1969، 3:30 ص" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 29 شعبان 1404 هـ، 12:53 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12‏/1‏/1970، 5:16 م" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 29 شعبان 1404 هـ في 12:53 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9‏/9‏/2001، 6:16 ص" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الخميس، 28 محرم 1452 هـ، 9:47 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7‏/3‏/2024، 11:30 ص" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الخميس، 28 محرم 1452 هـ في 9:47 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3‏/7‏/2001، 12:44 ص" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 5:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29‏/5‏/1984، 6:23 م" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 5:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30‏/5‏/2030، 3:17 ص" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 7:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16‏/7‏/1969، 10:30 ص" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 7:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13‏/1‏/1970، 1:16 ص" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9‏/9‏/2001، 1:16 م" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 6:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17‏/3‏/2024، 2:00 ص" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 7 رمضان 1445 هـ، 9:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2‏/7‏/2001، 4:14 م" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 7 رمضان 1445 هـ في 9:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29‏/5‏/1984، 11:53 ص" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29‏/5‏/2050، 7:47 م" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 10:14 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16‏/7‏/1969، 3:00 ص" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12‏/1‏/1970، 4:46 م" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 4:53 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9‏/9‏/2001، 4:46 ص" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 10 رمضان 1472 هـ، 1:47 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7‏/3‏/2024، 10:00 ص" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 10 رمضان 1472 هـ في 1:47 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2‏/7‏/2001، 11:14 م" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 9:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29‏/5‏/1984، 6:53 م" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 9:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30‏/5‏/2030، 2:47 ص" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16‏/7‏/1969، 10:00 ص" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 10:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13‏/1‏/1970، 12:46 ص" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 10:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9‏/9‏/2001، 11:46 ص" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 10:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17‏/3‏/2024، 10:00 ص" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الخميس، 27 شعبان 1445 هـ، 5:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2‏/7‏/2001، 11:14 م" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الخميس، 27 شعبان 1445 هـ في 5:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29‏/5‏/1984، 5:53 م" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 5:14 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30‏/5‏/2050، 2:47 ص" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ في 5:14 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16‏/7‏/1969، 10:00 ص" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12‏/1‏/1970، 11:46 م" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:53 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9‏/9‏/2001، 11:46 ص" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الخميس، 28 محرم 1452 هـ، 8:47 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7‏/3‏/2024، 6:00 م" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الخميس، 28 محرم 1452 هـ في 8:47 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3‏/7‏/2001، 6:14 ص" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30‏/5‏/1984، 12:53 ص" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 4:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30‏/5‏/2030، 9:47 ص" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 6:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16‏/7‏/1969، 5:00 م" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 6:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13‏/1‏/1970، 7:46 ص" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9‏/9‏/2001، 6:46 م" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 5:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17‏/3‏/2024، 9:00 ص" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "السبت، 6 رمضان 1445 هـ، 9:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2‏/7‏/2001، 10:14 م" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "السبت، 6 رمضان 1445 هـ في 9:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29‏/5‏/1984، 4:53 م" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30‏/5‏/2050، 1:47 ص" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 10:14 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16‏/7‏/1969، 9:00 ص" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12‏/1‏/1970، 10:46 م" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 4:53 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9‏/9‏/2001، 10:46 ص" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 9 رمضان 1472 هـ، 1:47 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7‏/3‏/2024، 5:00 م" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الأحد، 9 رمضان 1472 هـ في 1:47 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3‏/7‏/2001، 5:14 ص" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 9:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29‏/5‏/1984، 11:53 م" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ في 9:00 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30‏/5‏/2030، 8:47 ص" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16‏/7‏/1969، 4:00 م" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 10:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13‏/1‏/1970، 6:46 ص" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 10:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9‏/9‏/2001، 5:46 م" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "السبت، 20 جمادى الآخرة 1422 هـ في 10:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16‏/3‏/2024، 9:00 م" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الخميس، 27 شعبان 1445 هـ، 5:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2‏/7‏/2001، 10:14 ص" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الخميس، 27 شعبان 1445 هـ في 5:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29‏/5‏/1984، 4:53 ص" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:14 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29‏/5‏/2050، 1:47 م" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 5:14 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15‏/7‏/1969، 9:00 م" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12‏/1‏/1970، 10:46 ص" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:53 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8‏/9‏/2001، 10:46 م" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 27 محرم 1452 هـ، 8:47 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7‏/3‏/2024، 5:00 ص" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 27 محرم 1452 هـ في 8:47 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2‏/7‏/2001، 5:14 م" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29‏/5‏/1984، 11:53 ص" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 4:00 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29‏/5‏/2030، 8:47 م" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 6:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16‏/7‏/1969، 4:00 ص" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 6:46 م" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12‏/1‏/1970، 6:46 م" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46 ص" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9‏/9‏/2001، 5:46 ص" + "dateTimeFormatType": "atTime", + "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 5:46 ص" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16‏/03‏/2024، 5:00:00 م" + "expected": "6 رمضان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "02‏/07‏/2001، 6:14:15 ص" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29‏/05‏/1984، 12:53:00 ص" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29‏/05‏/2050، 9:47:00 ص" + "expected": "9 رمضان 1472 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15‏/07‏/1969، 5:00:00 م" + "expected": "1 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12‏/01‏/1970، 5:46:40 ص" + "expected": "5 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "08‏/09‏/2001، 6:46:40 م" + "expected": "20 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "07‏/03‏/2024، 12:00:01 ص" + "expected": "27 شعبان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "02‏/07‏/2001، 1:14:15 م" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29‏/05‏/1984، 7:53:00 ص" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29‏/05‏/2030، 4:47:00 م" + "expected": "27 محرم 1452 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16‏/07‏/1969، 12:00:00 ص" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12‏/01‏/1970، 1:46:40 م" + "expected": "5 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "09‏/09‏/2001، 1:46:40 ص" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17‏/03‏/2024، 1:00:00 ص" + "expected": "7 رمضان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "02‏/07‏/2001، 2:14:15 م" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29‏/05‏/1984، 8:53:00 ص" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29‏/05‏/2050، 5:47:00 م" + "expected": "9 رمضان 1472 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16‏/07‏/1969، 1:00:00 ص" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12‏/01‏/1970، 2:46:40 م" + "expected": "5 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "09‏/09‏/2001، 2:46:40 ص" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "07‏/03‏/2024، 9:00:01 ص" + "expected": "27 شعبان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "02‏/07‏/2001، 9:14:15 م" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29‏/05‏/1984، 3:53:00 م" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30‏/05‏/2030، 12:47:00 ص" + "expected": "28 محرم 1452 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16‏/07‏/1969، 8:00:00 ص" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12‏/01‏/1970، 10:46:40 م" + "expected": "5 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09‏/09‏/2001، 9:46:40 ص" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17‏/03‏/2024، 3:30:00 ص" + "expected": "7 رمضان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "02‏/07‏/2001، 5:44:15 م" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29‏/05‏/1984، 11:23:00 ص" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29‏/05‏/2050، 8:17:00 م" + "expected": "9 رمضان 1472 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16‏/07‏/1969، 3:30:00 ص" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12‏/01‏/1970، 5:16:40 م" + "expected": "5 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "09‏/09‏/2001، 6:16:40 ص" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "07‏/03‏/2024، 11:30:01 ص" + "expected": "27 شعبان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "03‏/07‏/2001، 12:44:15 ص" + "expected": "12 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29‏/05‏/1984، 6:23:00 م" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30‏/05‏/2030، 3:17:00 ص" + "expected": "28 محرم 1452 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16‏/07‏/1969، 10:30:00 ص" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13‏/01‏/1970، 1:16:40 ص" + "expected": "6 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "09‏/09‏/2001، 1:16:40 م" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17‏/03‏/2024، 2:00:00 ص" + "expected": "7 رمضان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "02‏/07‏/2001، 4:14:15 م" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29‏/05‏/1984، 11:53:00 ص" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29‏/05‏/2050، 7:47:00 م" + "expected": "9 رمضان 1472 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16‏/07‏/1969، 3:00:00 ص" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12‏/01‏/1970، 4:46:40 م" + "expected": "5 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "09‏/09‏/2001، 4:46:40 ص" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "07‏/03‏/2024، 10:00:01 ص" + "expected": "27 شعبان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "02‏/07‏/2001، 11:14:15 م" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29‏/05‏/1984، 6:53:00 م" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30‏/05‏/2030، 2:47:00 ص" + "expected": "28 محرم 1452 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16‏/07‏/1969، 10:00:00 ص" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13‏/01‏/1970، 12:46:40 ص" + "expected": "6 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "09‏/09‏/2001، 11:46:40 ص" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17‏/03‏/2024، 10:00:00 ص" + "expected": "7 رمضان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "02‏/07‏/2001، 11:14:15 م" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29‏/05‏/1984، 5:53:00 م" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30‏/05‏/2050، 2:47:00 ص" + "expected": "10 رمضان 1472 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16‏/07‏/1969، 10:00:00 ص" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12‏/01‏/1970، 11:46:40 م" + "expected": "5 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "09‏/09‏/2001، 11:46:40 ص" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "07‏/03‏/2024، 6:00:01 م" + "expected": "27 شعبان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "03‏/07‏/2001، 6:14:15 ص" + "expected": "12 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30‏/05‏/1984، 12:53:00 ص" + "expected": "29 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30‏/05‏/2030، 9:47:00 ص" + "expected": "28 محرم 1452 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16‏/07‏/1969، 5:00:00 م" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13‏/01‏/1970، 7:46:40 ص" + "expected": "6 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "09‏/09‏/2001، 6:46:40 م" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17‏/03‏/2024، 9:00:00 ص" + "expected": "7 رمضان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "02‏/07‏/2001، 10:14:15 م" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29‏/05‏/1984، 4:53:00 م" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30‏/05‏/2050، 1:47:00 ص" + "expected": "10 رمضان 1472 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16‏/07‏/1969، 9:00:00 ص" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12‏/01‏/1970، 10:46:40 م" + "expected": "5 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "09‏/09‏/2001، 10:46:40 ص" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "07‏/03‏/2024، 5:00:01 م" + "expected": "27 شعبان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "03‏/07‏/2001، 5:14:15 ص" + "expected": "12 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29‏/05‏/1984، 11:53:00 م" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30‏/05‏/2030، 8:47:00 ص" + "expected": "28 محرم 1452 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16‏/07‏/1969، 4:00:00 م" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13‏/01‏/1970، 6:46:40 ص" + "expected": "6 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "09‏/09‏/2001، 5:46:40 م" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16‏/03‏/2024، 9:00:00 م" + "expected": "6 رمضان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "02‏/07‏/2001، 10:14:15 ص" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29‏/05‏/1984، 4:53:00 ص" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29‏/05‏/2050، 1:47:00 م" + "expected": "9 رمضان 1472 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15‏/07‏/1969، 9:00:00 م" + "expected": "1 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12‏/01‏/1970، 10:46:40 ص" + "expected": "5 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "08‏/09‏/2001، 10:46:40 م" + "expected": "20 جمادى الآخرة 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "07‏/03‏/2024، 5:00:01 ص" + "expected": "27 شعبان 1445 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "02‏/07‏/2001، 5:14:15 م" + "expected": "11 ربيع الآخر 1422 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29‏/05‏/1984، 11:53:00 ص" + "expected": "28 شعبان 1404 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29‏/05‏/2030، 8:47:00 م" + "expected": "27 محرم 1452 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16‏/07‏/1969، 4:00:00 ص" + "expected": "2 جمادى الأولى 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12‏/01‏/1970، 6:46:40 م" + "expected": "5 ذو القعدة 1389 هـ" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", + "dateLength": "long", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "09‏/09‏/2001، 5:46:40 ص" + "expected": "21 جمادى الآخرة 1422 هـ" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16 مارس 2024، 5:00:00 م غرينتش-7" + "expected": "5:00:00 م غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2 يوليو 2001، 6:14:15 ص غرينتش-7" + "expected": "6:14:15 ص غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29 مايو 1984، 12:53:00 ص غرينتش-7" + "expected": "12:53:00 ص غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29 مايو 2050، 9:47:00 ص غرينتش-7" + "expected": "9:47:00 ص غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15 يوليو 1969، 5:00:00 م غرينتش-7" + "expected": "5:00:00 م غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12 يناير 1970، 5:46:40 ص غرينتش-8" + "expected": "5:46:40 ص غرينتش-8" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8 سبتمبر 2001، 6:46:40 م غرينتش-7" + "expected": "6:46:40 م غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7 مارس 2024، 12:00:01 ص غرينتش-8" + "expected": "12:00:01 ص غرينتش-8" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2 يوليو 2001، 1:14:15 م غرينتش-7" + "expected": "1:14:15 م غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29 مايو 1984، 7:53:00 ص غرينتش-7" + "expected": "7:53:00 ص غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29 مايو 2030، 4:47:00 م غرينتش-7" + "expected": "4:47:00 م غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16 يوليو 1969، 12:00:00 ص غرينتش-7" + "expected": "12:00:00 ص غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12 يناير 1970، 1:46:40 م غرينتش-8" + "expected": "1:46:40 م غرينتش-8" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9 سبتمبر 2001، 1:46:40 ص غرينتش-7" + "expected": "1:46:40 ص غرينتش-7" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17 مارس 2024، 1:00:00 ص غرينتش+1" + "expected": "1:00:00 ص غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2 يوليو 2001، 2:14:15 م غرينتش+1" + "expected": "2:14:15 م غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29 مايو 1984، 8:53:00 ص غرينتش+1" + "expected": "8:53:00 ص غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29 مايو 2050، 5:47:00 م غرينتش+1" + "expected": "5:47:00 م غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16 يوليو 1969، 1:00:00 ص غرينتش+1" + "expected": "1:00:00 ص غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12 يناير 1970، 2:46:40 م غرينتش+1" + "expected": "2:46:40 م غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9 سبتمبر 2001، 2:46:40 ص غرينتش+1" + "expected": "2:46:40 ص غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7 مارس 2024، 9:00:01 ص غرينتش+1" + "expected": "9:00:01 ص غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2 يوليو 2001، 9:14:15 م غرينتش+1" + "expected": "9:14:15 م غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29 مايو 1984، 3:53:00 م غرينتش+1" + "expected": "3:53:00 م غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30 مايو 2030، 12:47:00 ص غرينتش+1" + "expected": "12:47:00 ص غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16 يوليو 1969، 8:00:00 ص غرينتش+1" + "expected": "8:00:00 ص غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12 يناير 1970، 10:46:40 م غرينتش+1" + "expected": "10:46:40 م غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9 سبتمبر 2001، 9:46:40 ص غرينتش+1" + "expected": "9:46:40 ص غرينتش+1" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17 مارس 2024، 3:30:00 ص غرينتش+3:30" + "expected": "3:30:00 ص غرينتش+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2 يوليو 2001، 5:44:15 م غرينتش+4:30" + "expected": "5:44:15 م غرينتش+4:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29 مايو 1984، 11:23:00 ص غرينتش+3:30" + "expected": "11:23:00 ص غرينتش+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29 مايو 2050، 8:17:00 م غرينتش+3:30" + "expected": "8:17:00 م غرينتش+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16 يوليو 1969، 3:30:00 ص غرينتش+3:30" + "expected": "3:30:00 ص غرينتش+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12 يناير 1970، 5:16:40 م غرينتش+3:30" + "expected": "5:16:40 م غرينتش+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9 سبتمبر 2001، 6:16:40 ص غرينتش+4:30" + "expected": "6:16:40 ص غرينتش+4:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7 مارس 2024، 11:30:01 ص غرينتش+3:30" + "expected": "11:30:01 ص غرينتش+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3 يوليو 2001، 12:44:15 ص غرينتش+4:30" + "expected": "12:44:15 ص غرينتش+4:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29 مايو 1984، 6:23:00 م غرينتش+3:30" + "expected": "6:23:00 م غرينتش+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30 مايو 2030، 3:17:00 ص غرينتش+3:30" + "expected": "3:17:00 ص غرينتش+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16 يوليو 1969، 10:30:00 ص غرينتش+3:30" + "expected": "10:30:00 ص غرينتش+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13 يناير 1970، 1:16:40 ص غرينتش+3:30" + "expected": "1:16:40 ص غرينتش+3:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9 سبتمبر 2001، 1:16:40 م غرينتش+4:30" + "expected": "1:16:40 م غرينتش+4:30" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17 مارس 2024، 2:00:00 ص غرينتش+2" + "expected": "2:00:00 ص غرينتش+2" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2 يوليو 2001، 4:14:15 م غرينتش+3" + "expected": "4:14:15 م غرينتش+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29 مايو 1984، 11:53:00 ص غرينتش+4" + "expected": "11:53:00 ص غرينتش+4" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29 مايو 2050، 7:47:00 م غرينتش+3" + "expected": "7:47:00 م غرينتش+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16 يوليو 1969، 3:00:00 ص غرينتش+3" + "expected": "3:00:00 ص غرينتش+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12 يناير 1970، 4:46:40 م غرينتش+3" + "expected": "4:46:40 م غرينتش+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9 سبتمبر 2001، 4:46:40 ص غرينتش+3" + "expected": "4:46:40 ص غرينتش+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7 مارس 2024، 10:00:01 ص غرينتش+2" + "expected": "10:00:01 ص غرينتش+2" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2 يوليو 2001، 11:14:15 م غرينتش+3" + "expected": "11:14:15 م غرينتش+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29 مايو 1984، 6:53:00 م غرينتش+4" + "expected": "6:53:00 م غرينتش+4" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30 مايو 2030، 2:47:00 ص غرينتش+3" + "expected": "2:47:00 ص غرينتش+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+3" + "expected": "10:00:00 ص غرينتش+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13 يناير 1970، 12:46:40 ص غرينتش+3" + "expected": "12:46:40 ص غرينتش+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+3" + "expected": "11:46:40 ص غرينتش+3" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17 مارس 2024، 10:00:00 ص غرينتش+10" + "expected": "10:00:00 ص غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2 يوليو 2001، 11:14:15 م غرينتش+10" + "expected": "11:14:15 م غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29 مايو 1984، 5:53:00 م غرينتش+10" + "expected": "5:53:00 م غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30 مايو 2050، 2:47:00 ص غرينتش+10" + "expected": "2:47:00 ص غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+10" + "expected": "10:00:00 ص غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12 يناير 1970، 11:46:40 م غرينتش+10" + "expected": "11:46:40 م غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+10" + "expected": "11:46:40 ص غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7 مارس 2024، 6:00:01 م غرينتش+10" + "expected": "6:00:01 م غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3 يوليو 2001، 6:14:15 ص غرينتش+10" + "expected": "6:14:15 ص غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30 مايو 1984، 12:53:00 ص غرينتش+10" + "expected": "12:53:00 ص غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30 مايو 2030، 9:47:00 ص غرينتش+10" + "expected": "9:47:00 ص غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16 يوليو 1969، 5:00:00 م غرينتش+10" + "expected": "5:00:00 م غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13 يناير 1970، 7:46:40 ص غرينتش+10" + "expected": "7:46:40 ص غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9 سبتمبر 2001، 6:46:40 م غرينتش+10" + "expected": "6:46:40 م غرينتش+10" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17 مارس 2024، 9:00:00 ص غرينتش+9" + "expected": "9:00:00 ص غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2 يوليو 2001، 10:14:15 م غرينتش+9" + "expected": "10:14:15 م غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29 مايو 1984، 4:53:00 م غرينتش+9" + "expected": "4:53:00 م غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30 مايو 2050، 1:47:00 ص غرينتش+9" + "expected": "1:47:00 ص غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16 يوليو 1969، 9:00:00 ص غرينتش+9" + "expected": "9:00:00 ص غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12 يناير 1970، 10:46:40 م غرينتش+9" + "expected": "10:46:40 م غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9 سبتمبر 2001، 10:46:40 ص غرينتش+9" + "expected": "10:46:40 ص غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7 مارس 2024، 5:00:01 م غرينتش+9" + "expected": "5:00:01 م غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3 يوليو 2001، 5:14:15 ص غرينتش+9" + "expected": "5:14:15 ص غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29 مايو 1984، 11:53:00 م غرينتش+9" + "expected": "11:53:00 م غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30 مايو 2030، 8:47:00 ص غرينتش+9" + "expected": "8:47:00 ص غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16 يوليو 1969، 4:00:00 م غرينتش+9" + "expected": "4:00:00 م غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13 يناير 1970، 6:46:40 ص غرينتش+9" + "expected": "6:46:40 ص غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9 سبتمبر 2001، 5:46:40 م غرينتش+9" + "expected": "5:46:40 م غرينتش+9" }, { - "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "ar", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16 مارس 2024، 9:00:00 م غرينتش-3" + "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": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2 يوليو 2001، 10:14:15 ص غرينتش-3" + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৩০ ৪:৪৭ PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29 مايو 1984، 4:53:00 ص غرينتش-3" + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৩০, ৪:৪৭ PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29 مايو 2050، 1:47:00 م غرينتش-3" + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ১২:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15 يوليو 1969، 9:00:00 م غرينتش-3" + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ১২:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12 يناير 1970، 10:46:40 ص غرينتش-3" + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১২/১/৭০ ১:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8 سبتمبر 2001، 10:46:40 م غرينتش-3" + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১২/১/৭০, ১:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7 مارس 2024، 5:00:01 ص غرينتش-3" + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ১:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2 يوليو 2001، 5:14:15 م غرينتش-3" + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ১:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29 مايو 1984، 11:53:00 ص غرينتش-3" + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১৭/৩/২৪ ১:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29 مايو 2030، 8:47:00 م غرينتش-3" + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১৭/৩/২৪, ১:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16 يوليو 1969، 4:00:00 ص غرينتش-3" + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২/৭/০১ ২:১৪ PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12 يناير 1970، 6:46:40 م غرينتش-3" + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২/৭/০১, ২:১৪ PM" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9 سبتمبر 2001، 5:46:40 ص غرينتش-3" + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৮৪ ৮:৫৩ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "السبت، 16 مارس 2024، 5:00:00 م توقيت المحيط الهادي الصيفي" + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ৮:৫৩ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "الاثنين، 2 يوليو 2001، 6:14:15 ص توقيت المحيط الهادي الصيفي" + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৫০ ৫:৪৭ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 29 مايو 1984، 12:53:00 ص توقيت المحيط الهادي الصيفي" + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৫০, ৫:৪৭ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "الأحد، 29 مايو 2050، 9:47:00 ص توقيت المحيط الهادي الصيفي" + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ১:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 15 يوليو 1969، 5:00:00 م غرينتش-07:00" + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ১:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "الاثنين، 12 يناير 1970، 5:46:40 ص توقيت المحيط الهادي الرسمي" + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১২/১/৭০ ২:৪৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "السبت، 8 سبتمبر 2001، 6:46:40 م توقيت المحيط الهادي الصيفي" + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১২/১/৭০, ২:৪৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "الخميس، 7 مارس 2024، 12:00:01 ص توقيت المحيط الهادي الرسمي" + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ২:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "الاثنين، 2 يوليو 2001، 1:14:15 م توقيت المحيط الهادي الصيفي" + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ২:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 29 مايو 1984، 7:53:00 ص توقيت المحيط الهادي الصيفي" + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৭/৩/২৪ ৯:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "الأربعاء، 29 مايو 2030، 4:47:00 م توقيت المحيط الهادي الصيفي" + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৭/৩/২৪, ৯:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "الأربعاء، 16 يوليو 1969، 12:00:00 ص غرينتش-07:00" + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২/৭/০১ ৯:১৪ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "الاثنين، 12 يناير 1970، 1:46:40 م توقيت المحيط الهادي الرسمي" + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২/৭/০১, ৯:১৪ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "الأحد، 9 سبتمبر 2001، 1:46:40 ص توقيت المحيط الهادي الصيفي" + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৮৪ ৩:৫৩ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "الأحد، 17 مارس 2024، 1:00:00 ص توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ৩:৫৩ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "الاثنين، 2 يوليو 2001، 2:14:15 م توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৩০/৫/৩০ ১২:৪৭ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "الثلاثاء، 29 مايو 1984، 8:53:00 ص توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৩০/৫/৩০, ১২:৪৭ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "الأحد، 29 مايو 2050، 5:47:00 م توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ৮:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "الأربعاء، 16 يوليو 1969، 1:00:00 ص غرينتش+01:00" + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ৮:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "الاثنين، 12 يناير 1970، 2:46:40 م توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১২/১/৭০ ১০:৪৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "الأحد، 9 سبتمبر 2001، 2:46:40 ص توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১২/১/৭০, ১০:৪৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "الخميس، 7 مارس 2024، 9:00:01 ص توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ৯:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "الاثنين، 2 يوليو 2001، 9:14:15 م توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ৯:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "الثلاثاء، 29 مايو 1984، 3:53:00 م توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১৭/৩/২৪ ৩:৩০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "الخميس، 30 مايو 2030، 12:47:00 ص توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১৭/৩/২৪, ৩:৩০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "الأربعاء، 16 يوليو 1969، 8:00:00 ص غرينتش+01:00" + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২/৭/০১ ৫:৪৪ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "الاثنين، 12 يناير 1970، 10:46:40 م توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২/৭/০১, ৫:৪৪ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "الأحد، 9 سبتمبر 2001، 9:46:40 ص توقيت غرب أفريقيا الرسمي" + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৮৪ ১১:২৩ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "الأحد، 17 مارس 2024، 3:30:00 ص توقيت إيران الرسمي" + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ১১:২৩ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "الاثنين، 2 يوليو 2001، 5:44:15 م توقيت إيران الصيفي" + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৫০ ৮:১৭ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 29 مايو 1984، 11:23:00 ص توقيت إيران الرسمي" + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৫০, ৮:১৭ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "الأحد، 29 مايو 2050، 8:17:00 م توقيت إيران الرسمي" + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ৩:৩০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", + "locale": "bn", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "الأربعاء، 16 يوليو 1969، 3:30:00 ص غرينتش+03:30" + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ৩:৩০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", + "locale": "bn", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "الاثنين، 12 يناير 1970، 5:16:40 م توقيت إيران الرسمي" + "dateTimeFormatType": "standard", + "expected": "১২/১/৭০ ৫:১৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "الأحد، 9 سبتمبر 2001، 6:16:40 ص توقيت إيران الصيفي" + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১২/১/৭০, ৫:১৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "الخميس، 7 مارس 2024، 11:30:01 ص توقيت إيران الرسمي" + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ৬:১৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "الثلاثاء، 3 يوليو 2001، 12:44:15 ص توقيت إيران الصيفي" + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ৬:১৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 29 مايو 1984، 6:23:00 م توقيت إيران الرسمي" + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৭/৩/২৪ ১১:৩০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "الخميس، 30 مايو 2030، 3:17:00 ص توقيت إيران الرسمي" + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৭/৩/২৪, ১১:৩০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "الأربعاء، 16 يوليو 1969، 10:30:00 ص غرينتش+03:30" + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৩/৭/০১ ১২:৪৪ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 13 يناير 1970، 1:16:40 ص توقيت إيران الرسمي" + "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": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "الأحد، 9 سبتمبر 2001، 1:16:40 م توقيت إيران الصيفي" + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ৬:২৩ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "الأحد، 17 مارس 2024، 2:00:00 ص توقيت شرق أوروبا الرسمي" + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৩০/৫/৩০ ৩:১৭ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "الاثنين، 2 يوليو 2001، 4:14:15 م توقيت شرق أوروبا الصيفي" + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৩০/৫/৩০, ৩:১৭ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "الثلاثاء، 29 مايو 1984، 11:53:00 ص توقيت موسكو الصيفي" + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ১০:৩০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "الأحد، 29 مايو 2050، 7:47:00 م توقيت شرق أوروبا الصيفي" + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ১০:৩০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "الأربعاء، 16 يوليو 1969، 3:00:00 ص غرينتش+03:00" + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১৩/১/৭০ ১:১৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "الاثنين، 12 يناير 1970، 4:46:40 م توقيت موسكو الرسمي" + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১৩/১/৭০, ১:১৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "الأحد، 9 سبتمبر 2001، 4:46:40 ص توقيت شرق أوروبا الصيفي" + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ১:১৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "الخميس، 7 مارس 2024، 10:00:01 ص توقيت شرق أوروبا الرسمي" + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ১:১৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "الاثنين، 2 يوليو 2001، 11:14:15 م توقيت شرق أوروبا الصيفي" + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১৭/৩/২৪ ২:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "الثلاثاء، 29 مايو 1984، 6:53:00 م توقيت موسكو الصيفي" + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১৭/৩/২৪, ২:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "الخميس، 30 مايو 2030، 2:47:00 ص توقيت شرق أوروبا الصيفي" + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২/৭/০১ ৪:১৪ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "الأربعاء، 16 يوليو 1969، 10:00:00 ص غرينتش+03:00" + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২/৭/০১, ৪:১৪ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "الثلاثاء، 13 يناير 1970، 12:46:40 ص توقيت موسكو الرسمي" + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৮৪ ১১:৫৩ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "الأحد، 9 سبتمبر 2001، 11:46:40 ص توقيت شرق أوروبا الصيفي" + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ১১:৫৩ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "الأحد، 17 مارس 2024، 10:00:00 ص توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৫০ ৭:৪৭ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "الاثنين، 2 يوليو 2001، 11:14:15 م توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৫০, ৭:৪৭ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 29 مايو 1984، 5:53:00 م توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ৩:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "الاثنين، 30 مايو 2050، 2:47:00 ص توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ৩:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 16 يوليو 1969، 10:00:00 ص غرينتش+10:00" + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১২/১/৭০ ৪:৪৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "الاثنين، 12 يناير 1970، 11:46:40 م توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১২/১/৭০, ৪:৪৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "الأحد، 9 سبتمبر 2001، 11:46:40 ص توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ৪:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "الخميس، 7 مارس 2024، 6:00:01 م توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ৪:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 3 يوليو 2001، 6:14:15 ص توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৭/৩/২৪ ১০:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 30 مايو 1984، 12:53:00 ص توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৭/৩/২৪, ১০:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "الخميس، 30 مايو 2030، 9:47:00 ص توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২/৭/০১ ১১:১৪ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 16 يوليو 1969، 5:00:00 م غرينتش+10:00" + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২/৭/০১, ১১:১৪ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 13 يناير 1970، 7:46:40 ص توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৮৪ ৬:৫৩ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "الأحد، 9 سبتمبر 2001، 6:46:40 م توقيت شرق أستراليا الرسمي" + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ৬:৫৩ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "الأحد، 17 مارس 2024، 9:00:00 ص توقيت بالاو" + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৩০/৫/৩০ ২:৪৭ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "الاثنين، 2 يوليو 2001، 10:14:15 م توقيت بالاو" + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৩০/৫/৩০, ২:৪৭ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 29 مايو 1984، 4:53:00 م توقيت بالاو" + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ১০:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "الاثنين، 30 مايو 2050، 1:47:00 ص توقيت بالاو" + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ১০:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "الأربعاء، 16 يوليو 1969، 9:00:00 ص غرينتش+09:00" + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১৩/১/৭০ ১২:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "الاثنين، 12 يناير 1970، 10:46:40 م توقيت بالاو" + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১৩/১/৭০, ১২:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "الأحد، 9 سبتمبر 2001، 10:46:40 ص توقيت بالاو" + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ১১:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "الخميس، 7 مارس 2024، 5:00:01 م توقيت بالاو" + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ১১:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 3 يوليو 2001، 5:14:15 ص توقيت بالاو" + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১৭/৩/২৪ ১০:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 29 مايو 1984، 11:53:00 م توقيت بالاو" + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১৭/৩/২৪, ১০:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "الخميس، 30 مايو 2030، 8:47:00 ص توقيت بالاو" + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২/৭/০১ ১১:১৪ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "الأربعاء، 16 يوليو 1969، 4:00:00 م غرينتش+09:00" + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২/৭/০১, ১১:১৪ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 13 يناير 1970، 6:46:40 ص توقيت بالاو" + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৮৪ ৫:৫৩ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "الأحد، 9 سبتمبر 2001، 5:46:40 م توقيت بالاو" + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ৫:৫৩ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "السبت، 16 مارس 2024، 9:00:00 م توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৩০/৫/৫০ ২:৪৭ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "الاثنين، 2 يوليو 2001، 10:14:15 ص توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৩০/৫/৫০, ২:৪৭ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "الثلاثاء، 29 مايو 1984، 4:53:00 ص توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ১০:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "الأحد، 29 مايو 2050، 1:47:00 م توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ১০:০০ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "الثلاثاء، 15 يوليو 1969، 9:00:00 م غرينتش-03:00" + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১২/১/৭০ ১১:৪৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "الاثنين، 12 يناير 1970، 10:46:40 ص توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১২/১/৭০, ১১:৪৬ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "السبت، 8 سبتمبر 2001، 10:46:40 م توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ১১:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "الخميس، 7 مارس 2024، 5:00:01 ص توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ১১:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "الاثنين، 2 يوليو 2001، 5:14:15 م توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৭/৩/২৪ ৬:০০ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "الثلاثاء، 29 مايو 1984، 11:53:00 ص توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৭/৩/২৪, ৬:০০ PM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "الأربعاء، 29 مايو 2030، 8:47:00 م توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৩/৭/০১ ৬:১৪ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "الأربعاء، 16 يوليو 1969، 4:00:00 ص غرينتش-03:00" + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৩/৭/০১, ৬:১৪ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "الاثنين، 12 يناير 1970، 6:46:40 م توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৩০/৫/৮৪ ১২:৫৩ AM" }, { - "dateLength": "full", - "timeLength": "full", + "dateLength": "short", + "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "الأحد، 9 سبتمبر 2001، 5:46:40 ص توقيت أوروغواي الرسمي" + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৩০/৫/৮৪, ১২:৫৩ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "السبت، 16 مارس 2024، 5:00 م" + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৩০/৫/৩০ ৯:৪৭ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "الاثنين، 2 يوليو 2001، 6:14 ص" + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৩০/৫/৩০, ৯:৪৭ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 29 مايو 1984، 12:53 ص" + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ৫:০০ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "الأحد، 29 مايو 2050، 9:47 ص" + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ৫:০০ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 15 يوليو 1969، 5:00 م" + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১৩/১/৭০ ৭:৪৬ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "الاثنين، 12 يناير 1970، 5:46 ص" + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১৩/১/৭০, ৭:৪৬ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "السبت، 8 سبتمبر 2001، 6:46 م" + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ৬:৪৬ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "الخميس، 7 مارس 2024، 12:00 ص" + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ৬:৪৬ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "الاثنين، 2 يوليو 2001، 1:14 م" + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১৭/৩/২৪ ৯:০০ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 29 مايو 1984، 7:53 ص" + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১৭/৩/২৪, ৯:০০ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "الأربعاء، 29 مايو 2030، 4:47 م" + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২/৭/০১ ১০:১৪ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "الأربعاء، 16 يوليو 1969، 12:00 ص" + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২/৭/০১, ১০:১৪ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "الاثنين، 12 يناير 1970، 1:46 م" + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৮৪ ৪:৫৩ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "الأحد، 9 سبتمبر 2001، 1:46 ص" + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ৪:৫৩ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "الأحد، 17 مارس 2024، 1:00 ص" + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৩০/৫/৫০ ১:৪৭ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "الاثنين، 2 يوليو 2001، 2:14 م" + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৩০/৫/৫০, ১:৪৭ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "الثلاثاء، 29 مايو 1984، 8:53 ص" + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ৯:০০ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "الأحد، 29 مايو 2050، 5:47 م" + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ৯:০০ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "الأربعاء، 16 يوليو 1969، 1:00 ص" + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১২/১/৭০ ১০:৪৬ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "الاثنين، 12 يناير 1970، 2:46 م" + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১২/১/৭০, ১০:৪৬ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "الأحد، 9 سبتمبر 2001، 2:46 ص" + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ১০:৪৬ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "الخميس، 7 مارس 2024، 9:00 ص" + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ১০:৪৬ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "الاثنين، 2 يوليو 2001، 9:14 م" + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৭/৩/২৪ ৫:০০ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "الثلاثاء، 29 مايو 1984، 3:53 م" + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৭/৩/২৪, ৫:০০ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "الخميس، 30 مايو 2030، 12:47 ص" + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৩/৭/০১ ৫:১৪ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "الأربعاء، 16 يوليو 1969، 8:00 ص" + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৩/৭/০১, ৫:১৪ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "الاثنين، 12 يناير 1970، 10:46 م" + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৮৪ ১১:৫৩ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "الأحد، 9 سبتمبر 2001، 9:46 ص" + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ১১:৫৩ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "الأحد، 17 مارس 2024، 3:30 ص" + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৩০/৫/৩০ ৮:৪৭ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "الاثنين، 2 يوليو 2001، 5:44 م" + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৩০/৫/৩০, ৮:৪৭ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 29 مايو 1984، 11:23 ص" + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ৪:০০ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "الأحد، 29 مايو 2050، 8:17 م" + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ৪:০০ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "الأربعاء، 16 يوليو 1969، 3:30 ص" + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১৩/১/৭০ ৬:৪৬ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "الاثنين، 12 يناير 1970، 5:16 م" + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১৩/১/৭০, ৬:৪৬ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "الأحد، 9 سبتمبر 2001، 6:16 ص" + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ৫:৪৬ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "الخميس، 7 مارس 2024، 11:30 ص" + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ৫:৪৬ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "الثلاثاء، 3 يوليو 2001، 12:44 ص" + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১৬/৩/২৪ ৯:০০ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 29 مايو 1984، 6:23 م" + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৩/২৪, ৯:০০ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "الخميس، 30 مايو 2030، 3:17 ص" + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২/৭/০১ ১০:১৪ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "الأربعاء، 16 يوليو 1969، 10:30 ص" + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২/৭/০১, ১০:১৪ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 13 يناير 1970، 1:16 ص" + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৮৪ ৪:৫৩ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "الأحد، 9 سبتمبر 2001، 1:16 م" + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ৪:৫৩ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "الأحد، 17 مارس 2024، 2:00 ص" + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৫০ ১:৪৭ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "الاثنين، 2 يوليو 2001، 4:14 م" + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৫০, ১:৪৭ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "الثلاثاء، 29 مايو 1984، 11:53 ص" + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১৫/৭/৬৯ ৯:০০ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "الأحد، 29 مايو 2050، 7:47 م" + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১৫/৭/৬৯, ৯:০০ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "الأربعاء، 16 يوليو 1969، 3:00 ص" + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১২/১/৭০ ১০:৪৬ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "الاثنين، 12 يناير 1970، 4:46 م" + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১২/১/৭০, ১০:৪৬ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "الأحد، 9 سبتمبر 2001، 4:46 ص" + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৮/৯/০১ ১০:৪৬ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "الخميس، 7 مارس 2024، 10:00 ص" + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৮/৯/০১, ১০:৪৬ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "الاثنين، 2 يوليو 2001، 11:14 م" + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৭/৩/২৪ ৫:০০ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "الثلاثاء، 29 مايو 1984، 6:53 م" + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৭/৩/২৪, ৫:০০ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "الخميس، 30 مايو 2030، 2:47 ص" + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২/৭/০১ ৫:১৪ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "الأربعاء، 16 يوليو 1969، 10:00 ص" + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২/৭/০১, ৫:১৪ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "الثلاثاء، 13 يناير 1970، 12:46 ص" + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৮৪ ১১:৫৩ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "الأحد، 9 سبتمبر 2001، 11:46 ص" + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৮৪, ১১:৫৩ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "الأحد، 17 مارس 2024، 10:00 ص" + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৯/৫/৩০ ৮:৪৭ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "الاثنين، 2 يوليو 2001، 11:14 م" + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৫/৩০, ৮:৪৭ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 29 مايو 1984، 5:53 م" + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১৬/৭/৬৯ ৪:০০ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "الاثنين، 30 مايو 2050، 2:47 ص" + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১৬/৭/৬৯, ৪:০০ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 16 يوليو 1969، 10:00 ص" + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১২/১/৭০ ৬:৪৬ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "الاثنين، 12 يناير 1970، 11:46 م" + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১২/১/৭০, ৬:৪৬ PM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "الأحد، 9 سبتمبر 2001، 11:46 ص" + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/০১ ৫:৪৬ AM" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "الخميس، 7 مارس 2024، 6:00 م" + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/০১, ৫:৪৬ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 3 يوليو 2001، 6:14 ص" + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 30 مايو 1984، 12:53 ص" + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১৬ মার্চ, ২০২৪, ৫:০০:০০ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "الخميس، 30 مايو 2030، 9:47 ص" + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ৬:১৪:১৫ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 16 يوليو 1969، 5:00 م" + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ৬:১৪:১৫ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 13 يناير 1970، 7:46 ص" + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "الأحد، 9 سبتمبر 2001، 6:46 م" + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ১২:৫৩:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "الأحد، 17 مارس 2024، 9:00 ص" + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "الاثنين، 2 يوليو 2001، 10:14 م" + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ২০৫০, ৯:৪৭:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 29 مايو 1984، 4:53 م" + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১৫ জুল, ১৯৬৯ ৫:০০:০০ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "الاثنين، 30 مايو 2050، 1:47 ص" + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১৫ জুল, ১৯৬৯, ৫:০০:০০ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "الأربعاء، 16 يوليو 1969، 9:00 ص" + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১২ জানু, ১৯৭০ ৫:৪৬:৪০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "الاثنين، 12 يناير 1970، 10:46 م" + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১২ জানু, ১৯৭০, ৫:৪৬:৪০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "الأحد، 9 سبتمبر 2001، 10:46 ص" + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৮ সেপ, ২০০১ ৬:৪৬:৪০ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "الخميس، 7 مارس 2024، 5:00 م" + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৮ সেপ, ২০০১, ৬:৪৬:৪০ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 3 يوليو 2001، 5:14 ص" + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ১২:০০:০১ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 29 مايو 1984، 11:53 م" + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৭ মার্চ, ২০২৪, ১২:০০:০১ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "الخميس، 30 مايو 2030، 8:47 ص" + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ১:১৪:১৫ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "الأربعاء، 16 يوليو 1969، 4:00 م" + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ১:১৪:১৫ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 13 يناير 1970، 6:46 ص" + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "الأحد، 9 سبتمبر 2001، 5:46 م" + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ৭:৫৩:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "السبت، 16 مارس 2024، 9:00 م" + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "الاثنين، 2 يوليو 2001، 10:14 ص" + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ২০৩০, ৪:৪৭:০০ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "الثلاثاء، 29 مايو 1984، 4:53 ص" + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ১২:০০:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "الأحد، 29 مايو 2050، 1:47 م" + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ১২:০০:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "الثلاثاء، 15 يوليو 1969، 9:00 م" + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১২ জানু, ১৯৭০ ১:৪৬:৪০ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "الاثنين، 12 يناير 1970، 10:46 ص" + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১২ জানু, ১৯৭০, ১:৪৬:৪০ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "السبت، 8 سبتمبر 2001، 10:46 م" + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ১:৪৬:৪০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "الخميس، 7 مارس 2024، 5:00 ص" + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ১:৪৬:৪০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "الاثنين، 2 يوليو 2001، 5:14 م" + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "الثلاثاء، 29 مايو 1984، 11:53 ص" + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১৭ মার্চ, ২০২৪, ১:০০:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "الأربعاء، 29 مايو 2030، 8:47 م" + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ২:১৪:১৫ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "الأربعاء، 16 يوليو 1969، 4:00 ص" + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ২:১৪:১৫ PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "الاثنين، 12 يناير 1970، 6:46 م" + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "الأحد، 9 سبتمبر 2001، 5:46 ص" + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ৮:৫৩:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16 مارس 2024، 5:00:00 م غرينتش-7" + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2 يوليو 2001، 6:14:15 ص غرينتش-7" + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ২০৫০, ৫:৪৭:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29 مايو 1984، 12:53:00 ص غرينتش-7" + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ১:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29 مايو 2050، 9:47:00 ص غرينتش-7" + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ১:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15 يوليو 1969، 5:00:00 م غرينتش-7" + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১২ জানু, ১৯৭০ ২:৪৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12 يناير 1970، 5:46:40 ص غرينتش-8" + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১২ জানু, ১৯৭০, ২:৪৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8 سبتمبر 2001، 6:46:40 م غرينتش-7" + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ২:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7 مارس 2024، 12:00:01 ص غرينتش-8" + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ২:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2 يوليو 2001، 1:14:15 م غرينتش-7" + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29 مايو 1984، 7:53:00 ص غرينتش-7" + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৭ মার্চ, ২০২৪, ৯:০০:০১ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29 مايو 2030، 4:47:00 م غرينتش-7" + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ৯:১৪:১৫ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16 يوليو 1969، 12:00:00 ص غرينتش-7" + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ৯:১৪:১৫ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12 يناير 1970، 1:46:40 م غرينتش-8" + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9 سبتمبر 2001، 1:46:40 ص غرينتش-7" + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ৩:৫৩:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17 مارس 2024، 1:00:00 ص غرينتش+1" + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2 يوليو 2001، 2:14:15 م غرينتش+1" + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৩০ মে, ২০৩০, ১২:৪৭:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29 مايو 1984، 8:53:00 ص غرينتش+1" + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ৮:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29 مايو 2050، 5:47:00 م غرينتش+1" + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ৮:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16 يوليو 1969، 1:00:00 ص غرينتش+1" + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12 يناير 1970، 2:46:40 م غرينتش+1" + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১২ জানু, ১৯৭০, ১০:৪৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9 سبتمبر 2001، 2:46:40 ص غرينتش+1" + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ৯:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7 مارس 2024، 9:00:01 ص غرينتش+1" + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ৯:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2 يوليو 2001، 9:14:15 م غرينتش+1" + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29 مايو 1984، 3:53:00 م غرينتش+1" + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১৭ মার্চ, ২০২৪, ৩:৩০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30 مايو 2030، 12:47:00 ص غرينتش+1" + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ৫:৪৪:১৫ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16 يوليو 1969، 8:00:00 ص غرينتش+1" + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ৫:৪৪:১৫ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12 يناير 1970، 10:46:40 م غرينتش+1" + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9 سبتمبر 2001، 9:46:40 ص غرينتش+1" + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ১১:২৩:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17 مارس 2024، 3:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2 يوليو 2001، 5:44:15 م غرينتش+4:30" + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ২০৫০, ৮:১৭:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29 مايو 1984، 11:23:00 ص غرينتش+3:30" + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ৩:৩০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29 مايو 2050، 8:17:00 م غرينتش+3:30" + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ৩:৩০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16 يوليو 1969، 3:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১২ জানু, ১৯৭০ ৫:১৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", + "locale": "bn", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12 يناير 1970، 5:16:40 م غرينتش+3:30" + "dateTimeFormatType": "atTime", + "expected": "১২ জানু, ১৯৭০, ৫:১৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", + "locale": "bn", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9 سبتمبر 2001، 6:16:40 ص غرينتش+4:30" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ৬:১৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7 مارس 2024، 11:30:01 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ৬:১৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3 يوليو 2001، 12:44:15 ص غرينتش+4:30" + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29 مايو 1984، 6:23:00 م غرينتش+3:30" + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৭ মার্চ, ২০২৪, ১১:৩০:০১ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30 مايو 2030، 3:17:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৩ জুল, ২০০১ ১২:৪৪:১৫ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16 يوليو 1969، 10:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৩ জুল, ২০০১, ১২:৪৪:১৫ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13 يناير 1970، 1:16:40 ص غرينتش+3:30" + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9 سبتمبر 2001، 1:16:40 م غرينتش+4:30" + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ৬:২৩:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17 مارس 2024، 2:00:00 ص غرينتش+2" + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2 يوليو 2001، 4:14:15 م غرينتش+3" + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৩০ মে, ২০৩০, ৩:১৭:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29 مايو 1984، 11:53:00 ص غرينتش+4" + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ১০:৩০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29 مايو 2050، 7:47:00 م غرينتش+3" + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ১০:৩০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16 يوليو 1969، 3:00:00 ص غرينتش+3" + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১৩ জানু, ১৯৭০ ১:১৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12 يناير 1970، 4:46:40 م غرينتش+3" + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১৩ জানু, ১৯৭০, ১:১৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9 سبتمبر 2001، 4:46:40 ص غرينتش+3" + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ১:১৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7 مارس 2024، 10:00:01 ص غرينتش+2" + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ১:১৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2 يوليو 2001، 11:14:15 م غرينتش+3" + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29 مايو 1984، 6:53:00 م غرينتش+4" + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১৭ মার্চ, ২০২৪, ২:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30 مايو 2030، 2:47:00 ص غرينتش+3" + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ৪:১৪:১৫ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+3" + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ৪:১৪:১৫ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13 يناير 1970، 12:46:40 ص غرينتش+3" + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+3" + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ১১:৫৩:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17 مارس 2024، 10:00:00 ص غرينتش+10" + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৫০ ৭:৪৭:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2 يوليو 2001، 11:14:15 م غرينتش+10" + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ২০৫০, ৭:৪৭:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29 مايو 1984، 5:53:00 م غرينتش+10" + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ৩:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30 مايو 2050، 2:47:00 ص غرينتش+10" + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ৩:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+10" + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১২ জানু, ১৯৭০ ৪:৪৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12 يناير 1970، 11:46:40 م غرينتش+10" + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১২ জানু, ১৯৭০, ৪:৪৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+10" + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ৪:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7 مارس 2024، 6:00:01 م غرينتش+10" + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ৪:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3 يوليو 2001، 6:14:15 ص غرينتش+10" + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30 مايو 1984، 12:53:00 ص غرينتش+10" + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৭ মার্চ, ২০২৪, ১০:০০:০১ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30 مايو 2030، 9:47:00 ص غرينتش+10" + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ১১:১৪:১৫ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16 يوليو 1969، 5:00:00 م غرينتش+10" + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ১১:১৪:১৫ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13 يناير 1970، 7:46:40 ص غرينتش+10" + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9 سبتمبر 2001، 6:46:40 م غرينتش+10" + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ৬:৫৩:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17 مارس 2024، 9:00:00 ص غرينتش+9" + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2 يوليو 2001، 10:14:15 م غرينتش+9" + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৩০ মে, ২০৩০, ২:৪৭:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29 مايو 1984، 4:53:00 م غرينتش+9" + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ১০:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30 مايو 2050، 1:47:00 ص غرينتش+9" + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ১০:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16 يوليو 1969، 9:00:00 ص غرينتش+9" + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১৩ জানু, ১৯৭০ ১২:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12 يناير 1970، 10:46:40 م غرينتش+9" + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১৩ জানু, ১৯৭০, ১২:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9 سبتمبر 2001، 10:46:40 ص غرينتش+9" + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ১১:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7 مارس 2024، 5:00:01 م غرينتش+9" + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ১১:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3 يوليو 2001، 5:14:15 ص غرينتش+9" + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29 مايو 1984، 11:53:00 م غرينتش+9" + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১৭ মার্চ, ২০২৪, ১০:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30 مايو 2030، 8:47:00 ص غرينتش+9" + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ১১:১৪:১৫ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16 يوليو 1969، 4:00:00 م غرينتش+9" + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ১১:১৪:১৫ PM" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13 يناير 1970، 6:46:40 ص غرينتش+9" + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9 سبتمبر 2001، 5:46:40 م غرينتش+9" + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ৫:৫৩:০০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16 مارس 2024، 9:00:00 م غرينتش-3" + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2 يوليو 2001، 10:14:15 ص غرينتش-3" + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৩০ মে, ২০৫০, ২:৪৭:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29 مايو 1984، 4:53:00 ص غرينتش-3" + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ১০:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29 مايو 2050، 1:47:00 م غرينتش-3" + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ১০:০০:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15 يوليو 1969، 9:00:00 م غرينتش-3" + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১২ জানু, ১৯৭০ ১১:৪৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12 يناير 1970، 10:46:40 ص غرينتش-3" + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১২ জানু, ১৯৭০, ১১:৪৬:৪০ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8 سبتمبر 2001، 10:46:40 م غرينتش-3" + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ১১:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7 مارس 2024، 5:00:01 ص غرينتش-3" + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ১১:৪৬:৪০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2 يوليو 2001، 5:14:15 م غرينتش-3" + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29 مايو 1984، 11:53:00 ص غرينتش-3" + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৭ মার্চ, ২০২৪, ৬:০০:০১ PM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29 مايو 2030، 8:47:00 م غرينتش-3" + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৩ জুল, ২০০১ ৬:১৪:১৫ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16 يوليو 1969، 4:00:00 ص غرينتش-3" + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৩ জুল, ২০০১, ৬:১৪:১৫ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12 يناير 1970، 6:46:40 م غرينتش-3" + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM" }, { - "dateLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9 سبتمبر 2001، 5:46:40 ص غرينتش-3" + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৩০ মে, ১৯৮৪, ১২:৫৩:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16 مارس 2024، 5:00:00 م غرينتش-7" + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2 يوليو 2001، 6:14:15 ص غرينتش-7" + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৩০ মে, ২০৩০, ৯:৪৭:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29 مايو 1984، 12:53:00 ص غرينتش-7" + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ৫:০০:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29 مايو 2050، 9:47:00 ص غرينتش-7" + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ৫:০০:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15 يوليو 1969، 5:00:00 م غرينتش-7" + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১৩ জানু, ১৯৭০ ৭:৪৬:৪০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12 يناير 1970، 5:46:40 ص غرينتش-8" + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১৩ জানু, ১৯৭০, ৭:৪৬:৪০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8 سبتمبر 2001، 6:46:40 م غرينتش-7" + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ৬:৪৬:৪০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7 مارس 2024، 12:00:01 ص غرينتش-8" + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ৬:৪৬:৪০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2 يوليو 2001، 1:14:15 م غرينتش-7" + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29 مايو 1984، 7:53:00 ص غرينتش-7" + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১৭ মার্চ, ২০২৪, ৯:০০:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29 مايو 2030، 4:47:00 م غرينتش-7" + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ১০:১৪:১৫ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16 يوليو 1969، 12:00:00 ص غرينتش-7" + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ১০:১৪:১৫ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12 يناير 1970، 1:46:40 م غرينتش-8" + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9 سبتمبر 2001، 1:46:40 ص غرينتش-7" + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ৪:৫৩:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17 مارس 2024، 1:00:00 ص غرينتش+1" + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2 يوليو 2001، 2:14:15 م غرينتش+1" + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৩০ মে, ২০৫০, ১:৪৭:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29 مايو 1984، 8:53:00 ص غرينتش+1" + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ৯:০০:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29 مايو 2050، 5:47:00 م غرينتش+1" + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ৯:০০:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16 يوليو 1969، 1:00:00 ص غرينتش+1" + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12 يناير 1970، 2:46:40 م غرينتش+1" + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১২ জানু, ১৯৭০, ১০:৪৬:৪০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9 سبتمبر 2001، 2:46:40 ص غرينتش+1" + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ১০:৪৬:৪০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7 مارس 2024، 9:00:01 ص غرينتش+1" + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ১০:৪৬:৪০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2 يوليو 2001، 9:14:15 م غرينتش+1" + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29 مايو 1984، 3:53:00 م غرينتش+1" + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৭ মার্চ, ২০২৪, ৫:০০:০১ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30 مايو 2030، 12:47:00 ص غرينتش+1" + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৩ জুল, ২০০১ ৫:১৪:১৫ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16 يوليو 1969، 8:00:00 ص غرينتش+1" + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৩ জুল, ২০০১, ৫:১৪:১৫ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12 يناير 1970، 10:46:40 م غرينتش+1" + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9 سبتمبر 2001، 9:46:40 ص غرينتش+1" + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ১১:৫৩:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17 مارس 2024، 3:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2 يوليو 2001، 5:44:15 م غرينتش+4:30" + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৩০ মে, ২০৩০, ৮:৪৭:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29 مايو 1984، 11:23:00 ص غرينتش+3:30" + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ৪:০০:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29 مايو 2050، 8:17:00 م غرينتش+3:30" + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ৪:০০:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16 يوليو 1969، 3:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১৩ জানু, ১৯৭০ ৬:৪৬:৪০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12 يناير 1970، 5:16:40 م غرينتش+3:30" + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১৩ জানু, ১৯৭০, ৬:৪৬:৪০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9 سبتمبر 2001، 6:16:40 ص غرينتش+4:30" + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ৫:৪৬:৪০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7 مارس 2024، 11:30:01 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ৫:৪৬:৪০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3 يوليو 2001، 12:44:15 ص غرينتش+4:30" + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29 مايو 1984، 6:23:00 م غرينتش+3:30" + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১৬ মার্চ, ২০২৪, ৯:০০:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30 مايو 2030، 3:17:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ১০:১৪:১৫ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16 يوليو 1969، 10:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ১০:১৪:১৫ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13 يناير 1970، 1:16:40 ص غرينتش+3:30" + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9 سبتمبر 2001، 1:16:40 م غرينتش+4:30" + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ৪:৫৩:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17 مارس 2024، 2:00:00 ص غرينتش+2" + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2 يوليو 2001، 4:14:15 م غرينتش+3" + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ২০৫০, ১:৪৭:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29 مايو 1984، 11:53:00 ص غرينتش+4" + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১৫ জুল, ১৯৬৯ ৯:০০:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29 مايو 2050، 7:47:00 م غرينتش+3" + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১৫ জুল, ১৯৬৯, ৯:০০:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16 يوليو 1969، 3:00:00 ص غرينتش+3" + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12 يناير 1970، 4:46:40 م غرينتش+3" + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১২ জানু, ১৯৭০, ১০:৪৬:৪০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9 سبتمبر 2001، 4:46:40 ص غرينتش+3" + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৮ সেপ, ২০০১ ১০:৪৬:৪০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7 مارس 2024، 10:00:01 ص غرينتش+2" + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৮ সেপ, ২০০১, ১০:৪৬:৪০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2 يوليو 2001، 11:14:15 م غرينتش+3" + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29 مايو 1984، 6:53:00 م غرينتش+4" + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৭ মার্চ, ২০২৪, ৫:০০:০১ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30 مايو 2030، 2:47:00 ص غرينتش+3" + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২ জুল, ২০০১ ৫:১৪:১৫ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+3" + "locale": "bn", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২ জুল, ২০০১, ৫:১৪:১৫ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13 يناير 1970، 12:46:40 ص غرينتش+3" + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+3" + "locale": "bn", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪, ১১:৫৩:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17 مارس 2024، 10:00:00 ص غرينتش+10" + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2 يوليو 2001، 11:14:15 م غرينتش+10" + "locale": "bn", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ২০৩০, ৮:৪৭:০০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29 مايو 1984، 5:53:00 م غرينتش+10" + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুল, ১৯৬৯ ৪:০০:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30 مايو 2050، 2:47:00 ص غرينتش+10" + "locale": "bn", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুল, ১৯৬৯, ৪:০০:০০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+10" + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১২ জানু, ১৯৭০ ৬:৪৬:৪০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12 يناير 1970، 11:46:40 م غرينتش+10" + "locale": "bn", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১২ জানু, ১৯৭০, ৬:৪৬:৪০ PM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+10" + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৯ সেপ, ২০০১ ৫:৪৬:৪০ AM" }, { - "timeLength": "long", + "dateLength": "medium", + "timeLength": "medium", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7 مارس 2024، 6:00:01 م غرينتش+10" + "locale": "bn", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৯ সেপ, ২০০১, ৫:৪৬:৪০ AM" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3 يوليو 2001، 6:14:15 ص غرينتش+10" + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30 مايو 1984، 12:53:00 ص غرينتش+10" + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১৬ মার্চ, ২০২৪ এ ৫:০০:০০ PM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30 مايو 2030، 9:47:00 ص غرينتش+10" + "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": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16 يوليو 1969، 5:00:00 م غرينتش+10" + "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": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13 يناير 1970، 7:46:40 ص غرينتش+10" + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9 سبتمبر 2001، 6:46:40 م غرينتش+10" + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪ এ ১২:৫৩:০০ AM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17 مارس 2024، 9:00:00 ص غرينتش+9" + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2 يوليو 2001، 10:14:15 م غرينتش+9" + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ২০৫০ এ ৯:৪৭:০০ AM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29 مايو 1984، 4:53:00 م غرينتش+9" + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30 مايو 2050، 1:47:00 ص غرينتش+9" + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১৫ জুলাই, ১৯৬৯ এ ৫:০০:০০ PM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16 يوليو 1969، 9:00:00 ص غرينتش+9" + "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": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12 يناير 1970، 10:46:40 م غرينتش+9" + "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": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9 سبتمبر 2001، 10:46:40 ص غرينتش+9" + "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": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7 مارس 2024، 5:00:01 م غرينتش+9" + "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": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3 يوليو 2001، 5:14:15 ص غرينتش+9" + "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": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29 مايو 1984، 11:53:00 م غرينتش+9" + "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": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30 مايو 2030، 8:47:00 ص غرينتش+9" + "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": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16 يوليو 1969، 4:00:00 م غرينتش+9" + "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": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13 يناير 1970، 6:46:40 ص غرينتش+9" + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9 سبتمبر 2001، 5:46:40 م غرينتش+9" + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪ এ ৭:৫৩:০০ AM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16 مارس 2024، 9:00:00 م غرينتش-3" + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2 يوليو 2001، 10:14:15 ص غرينتش-3" + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ২০৩০ এ ৪:৪৭:০০ PM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29 مايو 1984، 4:53:00 ص غرينتش-3" + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29 مايو 2050، 1:47:00 م غرينتش-3" + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১৬ জুলাই, ১৯৬৯ এ ১২:০০:০০ AM GMT -৭" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15 يوليو 1969، 9:00:00 م غرينتش-3" + "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": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12 يناير 1970، 10:46:40 ص غرينتش-3" + "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": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8 سبتمبر 2001، 10:46:40 م غرينتش-3" + "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": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7 مارس 2024، 5:00:01 ص غرينتش-3" + "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": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2 يوليو 2001، 5:14:15 م غرينتش-3" + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM GMT +১" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29 مايو 1984، 11:53:00 ص غرينتش-3" + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১৭ মার্চ, ২০২৪ এ ১:০০:০০ AM GMT +১" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29 مايو 2030، 8:47:00 م غرينتش-3" + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২ জুলাই, ২০০১ ২:১৪:১৫ PM GMT +১" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16 يوليو 1969، 4:00:00 ص غرينتش-3" + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২ জুলাই, ২০০১ এ ২:১৪:১৫ PM GMT +১" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12 يناير 1970، 6:46:40 م غرينتش-3" + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM GMT +১" }, { + "dateLength": "long", "timeLength": "long", "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9 سبتمبر 2001، 5:46:40 ص غرينتش-3" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "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]", - "expected": "11‏/4‏/1422 هـ, 6:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "28‏/8‏/1404 هـ, 12:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "9‏/9‏/1472 هـ, 9:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "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]", - "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]", - "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]", - "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]", - "expected": "11‏/4‏/1422 هـ, 1:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "28‏/8‏/1404 هـ, 7:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "27‏/1‏/1452 هـ, 4:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "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]", - "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]", - "expected": "21‏/6‏/1422 هـ, 1:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "7‏/9‏/1445 هـ, 1:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "11‏/4‏/1422 هـ, 2:14 م" + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ১৯৮৪ এ ৮:৫৩:০০ AM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "28‏/8‏/1404 هـ, 8:53 ص" + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "9‏/9‏/1472 هـ, 5:47 م" + "dateTimeFormatType": "atTime", + "expected": "২৯ মে, ২০৫০ এ ৫:৪৭:০০ PM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "2‏/5‏/1389 هـ, 1:00 ص" + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5‏/11‏/1389 هـ, 2:46 م" + "dateTimeFormatType": "standard", + "expected": "১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21‏/6‏/1422 هـ, 2:46 ص" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27‏/8‏/1445 هـ, 9:00 ص" + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11‏/4‏/1422 هـ, 9:14 م" + "dateTimeFormatType": "standard", + "expected": "২ জুলাই, ২০০১ ৯:১৪:১৫ PM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/8‏/1404 هـ, 3:53 م" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/1‏/1452 هـ, 12:47 ص" + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2‏/5‏/1389 هـ, 8:00 ص" + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5‏/11‏/1389 هـ, 10:46 م" + "dateTimeFormatType": "standard", + "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21‏/6‏/1422 هـ, 9:46 ص" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM GMT +১" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7‏/9‏/1445 هـ, 3:30 ص" + "dateTimeFormatType": "standard", + "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM GMT +৩:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11‏/4‏/1422 هـ, 5:44 م" + "dateTimeFormatType": "standard", + "expected": "২ জুলাই, ২০০১ ৫:৪৪:১৫ PM GMT +৪:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/8‏/1404 هـ, 11:23 ص" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM GMT +৩:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9‏/9‏/1472 هـ, 8:17 م" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM GMT +৩:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2‏/5‏/1389 هـ, 3:30 ص" + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +৩:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5‏/11‏/1389 هـ, 5:16 م" + "dateTimeFormatType": "standard", + "expected": "১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM GMT +৩:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21‏/6‏/1422 هـ, 6:16 ص" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM GMT +৪:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27‏/8‏/1445 هـ, 11:30 ص" + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM GMT +৩:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "12‏/4‏/1422 هـ, 12:44 ص" + "dateTimeFormatType": "standard", + "expected": "৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM GMT +৪:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/8‏/1404 هـ, 6:23 م" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM GMT +৩:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/1‏/1452 هـ, 3:17 ص" + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM GMT +৩:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2‏/5‏/1389 هـ, 10:30 ص" + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +৩:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6‏/11‏/1389 هـ, 1:16 ص" + "dateTimeFormatType": "standard", + "expected": "১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM GMT +৩:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21‏/6‏/1422 هـ, 1:16 م" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM GMT +৪:৩০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7‏/9‏/1445 هـ, 2:00 ص" + "dateTimeFormatType": "standard", + "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM GMT +২" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11‏/4‏/1422 هـ, 4:14 م" + "dateTimeFormatType": "standard", + "expected": "২ জুলাই, ২০০১ ৪:১৪:১৫ PM GMT +৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/8‏/1404 هـ, 11:53 ص" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT +৪" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9‏/9‏/1472 هـ, 7:47 م" + "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": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "2‏/5‏/1389 هـ, 3:00 ص" + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM GMT +৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "5‏/11‏/1389 هـ, 4:46 م" + "dateTimeFormatType": "atTime", + "expected": "১২ জানুয়ারী, ১৯৭০ এ ৪:৪৬:৪০ PM GMT +৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "21‏/6‏/1422 هـ, 4:46 ص" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27‏/8‏/1445 هـ, 10:00 ص" + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM GMT +২" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11‏/4‏/1422 هـ, 11:14 م" + "dateTimeFormatType": "standard", + "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/8‏/1404 هـ, 6:53 م" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM GMT +৪" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/1‏/1452 هـ, 2:47 ص" + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM GMT +৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2‏/5‏/1389 هـ, 10:00 ص" + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6‏/11‏/1389 هـ, 12:46 ص" + "dateTimeFormatType": "standard", + "expected": "১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21‏/6‏/1422 هـ, 11:46 ص" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7‏/9‏/1445 هـ, 10:00 ص" + "dateTimeFormatType": "standard", + "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11‏/4‏/1422 هـ, 11:14 م" + "dateTimeFormatType": "standard", + "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/8‏/1404 هـ, 5:53 م" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "10‏/9‏/1472 هـ, 2:47 ص" + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2‏/5‏/1389 هـ, 10:00 ص" + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5‏/11‏/1389 هـ, 11:46 م" + "dateTimeFormatType": "standard", + "expected": "১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21‏/6‏/1422 هـ, 11:46 ص" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27‏/8‏/1445 هـ, 6:00 م" + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "12‏/4‏/1422 هـ, 6:14 ص" + "dateTimeFormatType": "standard", + "expected": "৩ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "29‏/8‏/1404 هـ, 12:53 ص" + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/1‏/1452 هـ, 9:47 ص" + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2‏/5‏/1389 هـ, 5:00 م" + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6‏/11‏/1389 هـ, 7:46 ص" + "dateTimeFormatType": "standard", + "expected": "১৩ জানুয়ারী, ১৯৭০ ৭:৪৬:৪০ AM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21‏/6‏/1422 هـ, 6:46 م" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT +১০" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7‏/9‏/1445 هـ, 9:00 ص" + "dateTimeFormatType": "standard", + "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11‏/4‏/1422 هـ, 10:14 م" + "dateTimeFormatType": "standard", + "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ PM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/8‏/1404 هـ, 4:53 م" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "10‏/9‏/1472 هـ, 1:47 ص" + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2‏/5‏/1389 هـ, 9:00 ص" + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5‏/11‏/1389 هـ, 10:46 م" + "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": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "21‏/6‏/1422 هـ, 10:46 ص" + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "27‏/8‏/1445 هـ, 5:00 م" + "dateTimeFormatType": "atTime", + "expected": "৭ মার্চ, ২০২৪ এ ৫:০০:০১ PM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "12‏/4‏/1422 هـ, 5:14 ص" + "dateTimeFormatType": "standard", + "expected": "৩ জুলাই, ২০০১ ৫:১৪:১৫ AM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/8‏/1404 هـ, 11:53 م" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/1‏/1452 هـ, 8:47 ص" + "dateTimeFormatType": "standard", + "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2‏/5‏/1389 هـ, 4:00 م" + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6‏/11‏/1389 هـ, 6:46 ص" + "dateTimeFormatType": "standard", + "expected": "১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21‏/6‏/1422 هـ, 5:46 م" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM GMT +৯" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6‏/9‏/1445 هـ, 9:00 م" + "dateTimeFormatType": "standard", + "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11‏/4‏/1422 هـ, 10:14 ص" + "dateTimeFormatType": "standard", + "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ AM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/8‏/1404 هـ, 4:53 ص" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9‏/9‏/1472 هـ, 1:47 م" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "1‏/5‏/1389 هـ, 9:00 م" + "dateTimeFormatType": "standard", + "expected": "১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5‏/11‏/1389 هـ, 10:46 ص" + "dateTimeFormatType": "standard", + "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "20‏/6‏/1422 هـ, 10:46 م" + "dateTimeFormatType": "standard", + "expected": "৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27‏/8‏/1445 هـ, 5:00 ص" + "dateTimeFormatType": "standard", + "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11‏/4‏/1422 هـ, 5:14 م" + "dateTimeFormatType": "standard", + "expected": "২ জুলাই, ২০০১ ৫:১৪:১৫ PM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28‏/8‏/1404 هـ, 11:53 ص" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27‏/1‏/1452 هـ, 8:47 م" + "dateTimeFormatType": "standard", + "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2‏/5‏/1389 هـ, 4:00 ص" + "dateTimeFormatType": "standard", + "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5‏/11‏/1389 هـ, 6:46 م" + "dateTimeFormatType": "standard", + "expected": "১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM GMT -৩" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21‏/6‏/1422 هـ, 5:46 ص" + "dateTimeFormatType": "standard", + "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ AM GMT -৩" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6 رمضان 1445 هـ، 5:00:00 م" + "dateTimeFormatType": "standard", + "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 6:14:15 ص" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 12:53:00 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9 رمضان 1472 هـ، 9:47:00 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "1 جمادى الأولى 1389 هـ، 5:00:00 م" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -০৭:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 5:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "20 جمادى الآخرة 1422 هـ، 6:46:40 م" + "dateTimeFormatType": "standard", + "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 12:00:01 ص" + "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": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "11 ربيع الآخر 1422 هـ، 1:14:15 م" + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "28 شعبان 1404 هـ، 7:53:00 ص" + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "27 محرم 1452 هـ، 4:47:00 م" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২৯ মে, ২০৩০ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 12:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -০৭:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 1:46:40 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7 رمضان 1445 هـ، 1:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 8:53:00 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9 رمضان 1472 هـ، 5:47:00 م" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 1:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +০১:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 2:46:40 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 2:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 9:00:01 ص" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 3:53:00 م" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 محرم 1452 هـ، 12:47:00 ص" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 8:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +০১:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7 رمضان 1445 هـ، 3:30:00 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM ইরান মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 5:44:15 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 11:23:00 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:২৩:০০ AM ইরান মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9 رمضان 1472 هـ، 8:17:00 م" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৮:১৭:০০ PM ইরান মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 3:30:00 ص" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +০৩:৩০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM ইরান মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 6:16:40 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM ইরান দিবালোক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 11:30:01 ص" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১১:৩০:০১ AM ইরান মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "12 ربيع الآخر 1422 هـ، 12:44:15 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 6:23:00 م" + "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": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "28 محرم 1452 هـ، 3:17:00 ص" + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +০৩:৩০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "2 جمادى الأولى 1389 هـ، 10:30:00 ص" + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১০:৩০:০০ AM GMT +০৩:৩০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "6 ذو القعدة 1389 هـ، 1:16:40 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM ইরান মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 1:16:40 م" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM ইরান দিবালোক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7 رمضان 1445 هـ، 2:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9 رمضان 1472 هـ، 7:47:00 م" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 3:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:০০:০০ AM GMT +০৩:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 4:46:40 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM মস্কো মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 4:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 10:00:01 ص" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 6:53:00 م" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 محرم 1452 هـ، 2:47:00 ص" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +০৩:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6 ذو القعدة 1389 هـ، 12:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM মস্কো মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7 رمضان 1445 هـ، 10:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 5:53:00 م" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "10 رمضان 1472 هـ، 2:47:00 ص" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৩০ মে, ২০৫০ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 6:00:01 م" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "29 شعبان 1404 هـ، 12:53:00 ص" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 محرم 1452 هـ، 9:47:00 ص" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م" + "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": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص" + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م" + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "full", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "7 رمضان 1445 هـ، 9:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৯:০০:০০ AM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪:১৫ PM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 4:53:00 م" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "10 رمضان 1472 هـ، 1:47:00 ص" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৩০ মে, ২০৫০ ১:৪৭:০০ AM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 9:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +০৯:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 10:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ AM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 5:00:01 م" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০:০১ PM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৫:১৪:১৫ AM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 11:53:00 م" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 محرم 1452 هـ، 8:47:00 ص" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৮:৪৭:০০ AM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 م" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +০৯:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6 ذو القعدة 1389 هـ، 6:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM পালাউ সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6 رمضان 1445 هـ، 9:00:00 م" + "dateTimeFormatType": "standard", + "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৯:০০:০০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 4:53:00 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9 رمضان 1472 هـ، 1:47:00 م" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২৯ মে, ২০৫০ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "1 جمادى الأولى 1389 هـ، 9:00:00 م" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -০৩:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 ص" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "20 جمادى الآخرة 1422 هـ، 10:46:40 م" + "dateTimeFormatType": "standard", + "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 5:00:01 ص" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০:০১ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 محرم 1452 هـ، 8:47:00 م" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২৯ মে, ২০৩০ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 ص" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -০৩:০০" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 6:46:40 م" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 ص" + "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": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "6 رمضان 1445 هـ، 5:00:00 م غرينتش-7" + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৬:১৪ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "11 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش-7" + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৬:১৪ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "28 شعبان 1404 هـ، 12:53:00 ص غرينتش-7" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১২:৫৩ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9 رمضان 1472 هـ، 9:47:00 ص غرينتش-7" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৯:৪৭ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "1 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش-7" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৫:০০ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 5:46:40 ص غرينتش-8" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "20 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش-7" + "dateTimeFormatType": "standard", + "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ৬:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 12:00:01 ص غرينتش-8" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১২:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 1:14:15 م غرينتش-7" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১:১৪ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 7:53:00 ص غرينتش-7" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৭:৫৩ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 محرم 1452 هـ، 4:47:00 م غرينتش-7" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২৯ মে, ২০৩০ ৪:৪৭ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 12:00:00 ص غرينتش-7" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১২:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 1:46:40 م غرينتش-8" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص غرينتش-7" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7 رمضان 1445 هـ، 1:00:00 ص غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ২:১৪ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 8:53:00 ص غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৮:৫৩ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9 رمضان 1472 هـ، 5:47:00 م غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৫:৪৭ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 1:00:00 ص غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 2:46:40 م غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ২:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 2:46:40 ص غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ২:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 9:00:01 ص غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৯:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৯:১৪ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 3:53:00 م غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৩:৫৩ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 محرم 1452 هـ، 12:47:00 ص غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ১২:৪৭ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 8:00:00 ص غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৮:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص غرينتش+1" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৯:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7 رمضان 1445 هـ، 3:30:00 ص غرينتش+3:30" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৩:৩০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 5:44:15 م غرينتش+4:30" + "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": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "28 شعبان 1404 هـ، 11:23:00 ص غرينتش+3:30" + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৮:১৭ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "9 رمضان 1472 هـ، 8:17:00 م غرينتش+3:30" + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২৯ মে, ২০৫০ এ ৮:১৭ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "2 جمادى الأولى 1389 هـ، 3:30:00 ص غرينتش+3:30" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:৩০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م غرينتش+3:30" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:১৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 6:16:40 ص غرينتش+4:30" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:১৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 11:30:01 ص غرينتش+3:30" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১১:৩০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "12 ربيع الآخر 1422 هـ، 12:44:15 ص غرينتش+4:30" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ১২:৪৪ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 6:23:00 م غرينتش+3:30" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:২৩ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 محرم 1452 هـ، 3:17:00 ص غرينتش+3:30" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৩:১৭ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 10:30:00 ص غرينتش+3:30" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:৩০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6 ذو القعدة 1389 هـ، 1:16:40 ص غرينتش+3:30" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১:১৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 1:16:40 م غرينتش+4:30" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:১৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7 رمضان 1445 هـ، 2:00:00 ص غرينتش+2" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ২:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م غرينتش+3" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৪:১৪ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش+4" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9 رمضان 1472 هـ، 7:47:00 م غرينتش+3" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২৯ মে, ২০৫০ ৭:৪৭ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 3:00:00 ص غرينتش+3" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 4:46:40 م غرينتش+3" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৪:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 4:46:40 ص غرينتش+3" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৪:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 10:00:01 ص غرينتش+2" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১০:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+3" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 6:53:00 م غرينتش+4" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:৫৩ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 محرم 1452 هـ، 2:47:00 ص غرينتش+3" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ২:৪৭ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+3" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6 ذو القعدة 1389 هـ، 12:46:40 ص غرينتش+3" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১২:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+3" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7 رمضان 1445 هـ، 10:00:00 ص غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১০:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 5:53:00 م غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৫:৫৩ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "10 رمضان 1472 هـ، 2:47:00 ص غرينتش+10" + "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": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+10" + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১১:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م غرينتش+10" + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১১:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 6:00:01 م غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৬:০০ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৬:১৪ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "29 شعبان 1404 هـ، 12:53:00 ص غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ৩০ মে, ১৯৮৪ ১২:৫৩ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 محرم 1452 هـ، 9:47:00 ص غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৯:৪৭ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৫:০০ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৭:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش+10" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "7 رمضان 1445 هـ، 9:00:00 ص غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৯:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 4:53:00 م غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "10 رمضان 1472 هـ، 1:47:00 ص غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৩০ মে, ২০৫০ ১:৪৭ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 9:00:00 ص غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৯:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 10:46:40 ص غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১০:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 شعبان 1445 هـ، 5:00:01 م غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৫:১৪ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 11:53:00 م غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 محرم 1452 هـ، 8:47:00 ص غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৮:৪৭ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 م غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6 ذو القعدة 1389 هـ، 6:46:40 ص غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৬:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م غرينتش+9" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "6 رمضان 1445 هـ، 9:00:00 م غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৯:০০ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 4:53:00 ص غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "9 رمضان 1472 هـ، 1:47:00 م غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২৯ মে, ২০৫০ ১:৪৭ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "1 جمادى الأولى 1389 هـ، 9:00:00 م غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৯:০০ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 ص غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "20 جمادى الآخرة 1422 هـ، 10:46:40 م غرينتش-3" + "dateTimeFormatType": "atTime", + "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ এ ১০:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "dateLength": "full", + "timeLength": "short", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "27 شعبان 1445 هـ، 5:00:01 ص غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:১৪ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "27 محرم 1452 هـ، 8:47:00 م غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২৯ মে, ২০৩০ ৮:৪৭ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 ص غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০ AM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "5 ذو القعدة 1389 هـ، 6:46:40 م غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৬:৪৬ PM" }, { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 ص غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬ AM" }, { "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "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": "السبت، 6 رمضان 1445 هـ، 5:00:00 م توقيت المحيط الهادي الصيفي" + "expected": "১৬ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 6:14:15 ص توقيت المحيط الهادي الصيفي" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 12:53:00 ص توقيت المحيط الهادي الصيفي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "الأحد، 9 رمضان 1472 هـ، 9:47:00 ص توقيت المحيط الهادي الصيفي" + "expected": "২৯ মে, ২০৫০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش-07:00" + "expected": "১৫ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:46:40 ص توقيت المحيط الهادي الرسمي" + "expected": "১২ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 6:46:40 م توقيت المحيط الهادي الصيفي" + "expected": "৮ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "الخميس، 27 شعبان 1445 هـ، 12:00:01 ص توقيت المحيط الهادي الرسمي" + "expected": "৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 1:14:15 م توقيت المحيط الهادي الصيفي" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 7:53:00 ص توقيت المحيط الهادي الصيفي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "الأربعاء، 27 محرم 1452 هـ، 4:47:00 م توقيت المحيط الهادي الصيفي" + "expected": "২৯ মে, ২০৩০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 12:00:00 ص غرينتش-07:00" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 1:46:40 م توقيت المحيط الهادي الرسمي" + "expected": "১২ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:46:40 ص توقيت المحيط الهادي الصيفي" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "الأحد، 7 رمضان 1445 هـ، 1:00:00 ص توقيت غرب أفريقيا الرسمي" + "expected": "১৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 2:14:15 م توقيت غرب أفريقيا الرسمي" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 8:53:00 ص توقيت غرب أفريقيا الرسمي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "الأحد، 9 رمضان 1472 هـ، 5:47:00 م توقيت غرب أفريقيا الرسمي" + "expected": "২৯ মে, ২০৫০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 1:00:00 ص غرينتش+01:00" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 2:46:40 م توقيت غرب أفريقيا الرسمي" + "expected": "১২ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 2:46:40 ص توقيت غرب أفريقيا الرسمي" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "الخميس، 27 شعبان 1445 هـ، 9:00:01 ص توقيت غرب أفريقيا الرسمي" + "expected": "৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 9:14:15 م توقيت غرب أفريقيا الرسمي" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 3:53:00 م توقيت غرب أفريقيا الرسمي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "الخميس، 28 محرم 1452 هـ، 12:47:00 ص توقيت غرب أفريقيا الرسمي" + "expected": "৩০ মে, ২০৩০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 8:00:00 ص غرينتش+01:00" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 م توقيت غرب أفريقيا الرسمي" + "expected": "১২ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 9:46:40 ص توقيت غرب أفريقيا الرسمي" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "الأحد، 7 رمضان 1445 هـ، 3:30:00 ص توقيت إيران الرسمي" + "expected": "১৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:44:15 م توقيت إيران الصيفي" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:23:00 ص توقيت إيران الرسمي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "الأحد، 9 رمضان 1472 هـ، 8:17:00 م توقيت إيران الرسمي" + "expected": "২৯ মে, ২০৫০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:30:00 ص غرينتش+03:30" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:16:40 م توقيت إيران الرسمي" + "expected": "১২ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:16:40 ص توقيت إيران الصيفي" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "الخميس، 27 شعبان 1445 هـ، 11:30:01 ص توقيت إيران الرسمي" + "expected": "৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 12:44:15 ص توقيت إيران الصيفي" + "expected": "৩ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:23:00 م توقيت إيران الرسمي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "الخميس، 28 محرم 1452 هـ، 3:17:00 ص توقيت إيران الرسمي" + "expected": "৩০ মে, ২০৩০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:30:00 ص غرينتش+03:30" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 1:16:40 ص توقيت إيران الرسمي" + "expected": "১৩ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:16:40 م توقيت إيران الصيفي" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "الأحد، 7 رمضان 1445 هـ، 2:00:00 ص توقيت شرق أوروبا الرسمي" + "expected": "১৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 4:14:15 م توقيت شرق أوروبا الصيفي" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 ص توقيت موسكو الصيفي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "الأحد، 9 رمضان 1472 هـ، 7:47:00 م توقيت شرق أوروبا الصيفي" + "expected": "২৯ মে, ২০৫০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:00:00 ص غرينتش+03:00" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 4:46:40 م توقيت موسكو الرسمي" + "expected": "১২ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 4:46:40 ص توقيت شرق أوروبا الصيفي" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "الخميس، 27 شعبان 1445 هـ، 10:00:01 ص توقيت شرق أوروبا الرسمي" + "expected": "৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14:15 م توقيت شرق أوروبا الصيفي" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:53:00 م توقيت موسكو الصيفي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "الخميس، 28 محرم 1452 هـ، 2:47:00 ص توقيت شرق أوروبا الصيفي" + "expected": "৩০ মে, ২০৩০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+03:00" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 12:46:40 ص توقيت موسكو الرسمي" + "expected": "১৩ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46:40 ص توقيت شرق أوروبا الصيفي" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "الأحد، 7 رمضان 1445 هـ، 10:00:00 ص توقيت شرق أستراليا الرسمي" + "expected": "১৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14:15 م توقيت شرق أستراليا الرسمي" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 5:53:00 م توقيت شرق أستراليا الرسمي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "الاثنين، 10 رمضان 1472 هـ، 2:47:00 ص توقيت شرق أستراليا الرسمي" + "expected": "৩০ মে, ২০৫০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+10:00" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 11:46:40 م توقيت شرق أستراليا الرسمي" + "expected": "১২ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46:40 ص توقيت شرق أستراليا الرسمي" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "الخميس، 27 شعبان 1445 هـ، 6:00:01 م توقيت شرق أستراليا الرسمي" + "expected": "৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 6:14:15 ص توقيت شرق أستراليا الرسمي" + "expected": "৩ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 29 شعبان 1404 هـ، 12:53:00 ص توقيت شرق أستراليا الرسمي" + "expected": "৩০ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "الخميس، 28 محرم 1452 هـ، 9:47:00 ص توقيت شرق أستراليا الرسمي" + "expected": "৩০ মে, ২০৩০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش+10:00" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 7:46:40 ص توقيت شرق أستراليا الرسمي" + "expected": "১৩ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:46:40 م توقيت شرق أستراليا الرسمي" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "الأحد، 7 رمضان 1445 هـ، 9:00:00 ص توقيت بالاو" + "expected": "১৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14:15 م توقيت بالاو" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53:00 م توقيت بالاو" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "الاثنين، 10 رمضان 1472 هـ، 1:47:00 ص توقيت بالاو" + "expected": "৩০ মে, ২০৫০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 9:00:00 ص غرينتش+09:00" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 م توقيت بالاو" + "expected": "১২ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 10:46:40 ص توقيت بالاو" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "الخميس، 27 شعبان 1445 هـ، 5:00:01 م توقيت بالاو" + "expected": "৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 5:14:15 ص توقيت بالاو" + "expected": "৩ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 م توقيت بالاو" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "الخميس، 28 محرم 1452 هـ، 8:47:00 ص توقيت بالاو" + "expected": "৩০ মে, ২০৩০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00:00 م غرينتش+09:00" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 6:46:40 ص توقيت بالاو" + "expected": "১৩ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46:40 م توقيت بالاو" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "السبت، 6 رمضان 1445 هـ، 9:00:00 م توقيت أوروغواي الرسمي" + "expected": "১৬ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14:15 ص توقيت أوروغواي الرسمي" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53:00 ص توقيت أوروغواي الرسمي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "الأحد، 9 رمضان 1472 هـ، 1:47:00 م توقيت أوروغواي الرسمي" + "expected": "২৯ মে, ২০৫০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 9:00:00 م غرينتش-03:00" + "expected": "১৫ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 ص توقيت أوروغواي الرسمي" + "expected": "১২ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 10:46:40 م توقيت أوروغواي الرسمي" + "expected": "৮ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "الخميس، 27 شعبان 1445 هـ، 5:00:01 ص توقيت أوروغواي الرسمي" + "expected": "৭ মার্চ, ২০২৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:14:15 م توقيت أوروغواي الرسمي" + "expected": "২ জুলাই, ২০০১" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 ص توقيت أوروغواي الرسمي" + "expected": "২৯ মে, ১৯৮৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "الأربعاء، 27 محرم 1452 هـ، 8:47:00 م توقيت أوروغواي الرسمي" + "expected": "২৯ মে, ২০৩০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00:00 ص غرينتش-03:00" + "expected": "১৬ জুলাই, ১৯৬৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 6:46:40 م توقيت أوروغواي الرسمي" + "expected": "১২ জানুয়ারী, ১৯৭০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", + "dateLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46:40 ص توقيت أوروغواي الرسمي" + "expected": "৯ সেপ্টেম্বর, ২০০১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "السبت، 6 رمضان 1445 هـ، 5:00 م" + "expected": "৫:০০:০০ PM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 6:14 ص" + "expected": "৬:১৪:১৫ AM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 12:53 ص" + "expected": "১২:৫৩:০০ AM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "الأحد، 9 رمضان 1472 هـ، 9:47 ص" + "expected": "৯:৪৭:০০ AM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 5:00 م" + "expected": "৫:০০:০০ PM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:46 ص" + "expected": "৫:৪৬:৪০ AM GMT -৮" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 6:46 م" + "expected": "৬:৪৬:৪০ PM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "الخميس، 27 شعبان 1445 هـ، 12:00 ص" + "expected": "১২:০০:০১ AM GMT -৮" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 1:14 م" + "expected": "১:১৪:১৫ PM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 7:53 ص" + "expected": "৭:৫৩:০০ AM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "الأربعاء، 27 محرم 1452 هـ، 4:47 م" + "expected": "৪:৪৭:০০ PM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 12:00 ص" + "expected": "১২:০০:০০ AM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 1:46 م" + "expected": "১:৪৬:৪০ PM GMT -৮" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:46 ص" + "expected": "১:৪৬:৪০ AM GMT -৭" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "الأحد، 7 رمضان 1445 هـ، 1:00 ص" + "expected": "১:০০:০০ AM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 2:14 م" + "expected": "২:১৪:১৫ PM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 8:53 ص" + "expected": "৮:৫৩:০০ AM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "الأحد، 9 رمضان 1472 هـ، 5:47 م" + "expected": "৫:৪৭:০০ PM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 1:00 ص" + "expected": "১:০০:০০ AM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 2:46 م" + "expected": "২:৪৬:৪০ PM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 2:46 ص" + "expected": "২:৪৬:৪০ AM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "الخميس، 27 شعبان 1445 هـ، 9:00 ص" + "expected": "৯:০০:০১ AM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 9:14 م" + "expected": "৯:১৪:১৫ PM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 3:53 م" + "expected": "৩:৫৩:০০ PM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "الخميس، 28 محرم 1452 هـ، 12:47 ص" + "expected": "১২:৪৭:০০ AM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 8:00 ص" + "expected": "৮:০০:০০ AM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 م" + "expected": "১০:৪৬:৪০ PM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 9:46 ص" + "expected": "৯:৪৬:৪০ AM GMT +১" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "الأحد، 7 رمضان 1445 هـ، 3:30 ص" + "expected": "৩:৩০:০০ AM GMT +৩:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:44 م" + "expected": "৫:৪৪:১৫ PM GMT +৪:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:23 ص" + "expected": "১১:২৩:০০ AM GMT +৩:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "الأحد، 9 رمضان 1472 هـ، 8:17 م" + "expected": "৮:১৭:০০ PM GMT +৩:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:30 ص" + "expected": "৩:৩০:০০ AM GMT +৩:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:16 م" + "expected": "৫:১৬:৪০ PM GMT +৩:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:16 ص" + "expected": "৬:১৬:৪০ AM GMT +৪:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "الخميس، 27 شعبان 1445 هـ، 11:30 ص" + "expected": "১১:৩০:০১ AM GMT +৩:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 12:44 ص" + "expected": "১২:৪৪:১৫ AM GMT +৪:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:23 م" + "expected": "৬:২৩:০০ PM GMT +৩:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "الخميس، 28 محرم 1452 هـ، 3:17 ص" + "expected": "৩:১৭:০০ AM GMT +৩:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:30 ص" + "expected": "১০:৩০:০০ AM GMT +৩:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 1:16 ص" + "expected": "১:১৬:৪০ AM GMT +৩:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:16 م" + "expected": "১:১৬:৪০ PM GMT +৪:৩০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "الأحد، 7 رمضان 1445 هـ، 2:00 ص" + "expected": "২:০০:০০ AM GMT +২" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 4:14 م" + "expected": "৪:১৪:১৫ PM GMT +৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 ص" + "expected": "১১:৫৩:০০ AM GMT +৪" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "الأحد، 9 رمضان 1472 هـ، 7:47 م" + "expected": "৭:৪৭:০০ PM GMT +৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:00 ص" + "expected": "৩:০০:০০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 4:46 م" + "expected": "৪:৪৬:৪০ PM GMT +৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 4:46 ص" + "expected": "৪:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "الخميس، 27 شعبان 1445 هـ، 10:00 ص" + "expected": "১০:০০:০১ AM GMT +২" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14 م" + "expected": "১১:১৪:১৫ PM GMT +৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:53 م" + "expected": "৬:৫৩:০০ PM GMT +৪" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "الخميس، 28 محرم 1452 هـ، 2:47 ص" + "expected": "২:৪৭:০০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00 ص" + "expected": "১০:০০:০০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 12:46 ص" + "expected": "১২:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46 ص" + "expected": "১১:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "الأحد، 7 رمضان 1445 هـ، 10:00 ص" + "expected": "১০:০০:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14 م" + "expected": "১১:১৪:১৫ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 5:53 م" + "expected": "৫:৫৩:০০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "الاثنين، 10 رمضان 1472 هـ، 2:47 ص" + "expected": "২:৪৭:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00 ص" + "expected": "১০:০০:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 11:46 م" + "expected": "১১:৪৬:৪০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46 ص" + "expected": "১১:৪৬:৪০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "الخميس، 27 شعبان 1445 هـ، 6:00 م" + "expected": "৬:০০:০১ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 6:14 ص" + "expected": "৬:১৪:১৫ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 29 شعبان 1404 هـ، 12:53 ص" + "expected": "১২:৫৩:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "الخميس، 28 محرم 1452 هـ، 9:47 ص" + "expected": "৯:৪৭:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 5:00 م" + "expected": "৫:০০:০০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 7:46 ص" + "expected": "৭:৪৬:৪০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:46 م" + "expected": "৬:৪৬:৪০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "الأحد، 7 رمضان 1445 هـ، 9:00 ص" + "expected": "৯:০০:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14 م" + "expected": "১০:১৪:১৫ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53 م" + "expected": "৪:৫৩:০০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "الاثنين، 10 رمضان 1472 هـ، 1:47 ص" + "expected": "১:৪৭:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 9:00 ص" + "expected": "৯:০০:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 م" + "expected": "১০:৪৬:৪০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 10:46 ص" + "expected": "১০:৪৬:৪০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "الخميس، 27 شعبان 1445 هـ، 5:00 م" + "expected": "৫:০০:০১ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 5:14 ص" + "expected": "৫:১৪:১৫ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 م" + "expected": "১১:৫৩:০০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "الخميس، 28 محرم 1452 هـ، 8:47 ص" + "expected": "৮:৪৭:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00 م" + "expected": "৪:০০:০০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 6:46 ص" + "expected": "৬:৪৬:৪০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46 م" + "expected": "৫:৪৬:৪০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "السبت، 6 رمضان 1445 هـ، 9:00 م" + "expected": "৯:০০:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14 ص" + "expected": "১০:১৪:১৫ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53 ص" + "expected": "৪:৫৩:০০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "الأحد، 9 رمضان 1472 هـ، 1:47 م" + "expected": "১:৪৭:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 9:00 م" + "expected": "৯:০০:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 ص" + "expected": "১০:৪৬:৪০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 10:46 م" + "expected": "১০:৪৬:৪০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "الخميس، 27 شعبان 1445 هـ، 5:00 ص" + "expected": "৫:০০:০১ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:14 م" + "expected": "৫:১৪:১৫ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 ص" + "expected": "১১:৫৩:০০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "الأربعاء، 27 محرم 1452 هـ، 8:47 م" + "expected": "৮:৪৭:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00 ص" + "expected": "৪:০০:০০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 6:46 م" + "expected": "৬:৪৬:৪০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", + "timeLength": "long", + "calendar": "gregorian", + "locale": "bn", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46 ص" + "expected": "৫:৪৬:৪০ AM GMT -৩" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", + "locale": "bn", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "6 رمضان 1445 هـ، 5:00:00 م غرينتش-7" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "11 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش-7" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "28 شعبان 1404 هـ، 12:53:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "9 رمضان 1472 هـ، 9:47:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش-7" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "5 ذو القعدة 1389 هـ، 5:46:40 ص غرينتش-8" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "20 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش-7" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "27 شعبان 1445 هـ، 12:00:01 ص غرينتش-8" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "11 ربيع الآخر 1422 هـ، 1:14:15 م غرينتش-7" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "28 شعبان 1404 هـ، 7:53:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "27 محرم 1452 هـ، 4:47:00 م غرينتش-7" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "2 جمادى الأولى 1389 هـ، 12:00:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "5 ذو القعدة 1389 هـ، 1:46:40 م غرينتش-8" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص غرينتش-7" + "dateTimeFormatType": "standard", + "expected": "৬/৯/১৪৪৫ যুগ ৫:০০ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "7 رمضان 1445 هـ، 1:00:00 ص غرينتش+1" + "locale": "bn", + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৬/৯/১৪৪৫ যুগ ৫:০০ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م غرينتش+1" + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ৬:১৪ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "28 شعبان 1404 هـ، 8:53:00 ص غرينتش+1" + "locale": "bn", + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১১/৪/১৪২২ যুগ ৬:১৪ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "9 رمضان 1472 هـ، 5:47:00 م غرينتش+1" + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ১২:৫৩ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "2 جمادى الأولى 1389 هـ، 1:00:00 ص غرينتش+1" + "locale": "bn", + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ১২:৫৩ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "5 ذو القعدة 1389 هـ، 2:46:40 م غرينتش+1" + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/১৪৭২ যুগ ৯:৪৭ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "21 جمادى الآخرة 1422 هـ، 2:46:40 ص غرينتش+1" + "locale": "bn", + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/১৪৭২ যুগ ৯:৪৭ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "27 شعبان 1445 هـ، 9:00:01 ص غرينتش+1" + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১/৫/১৩৮৯ যুগ ৫:০০ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م غرينتش+1" + "locale": "bn", + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১/৫/১৩৮৯ যুগ ৫:০০ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "28 شعبان 1404 هـ، 3:53:00 م غرينتش+1" + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৫/১১/১৩৮৯ যুগ ৫:৪৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "28 محرم 1452 هـ، 12:47:00 ص غرينتش+1" + "locale": "bn", + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৫/১১/১৩৮৯ যুগ ৫:৪৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "2 جمادى الأولى 1389 هـ، 8:00:00 ص غرينتش+1" + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২০/৬/১৪২২ যুগ ৬:৪৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+1" + "locale": "bn", + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২০/৬/১৪২২ যুগ ৬:৪৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص غرينتش+1" + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৭/৮/১৪৪৫ যুগ ১২:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "7 رمضان 1445 هـ، 3:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৭/৮/১৪৪৫ যুগ ১২:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "11 ربيع الآخر 1422 هـ، 5:44:15 م غرينتش+4:30" + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ১:১৪ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "28 شعبان 1404 هـ، 11:23:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১১/৪/১৪২২ যুগ ১:১৪ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "9 رمضان 1472 هـ، 8:17:00 م غرينتش+3:30" + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ৭:৫৩ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "2 جمادى الأولى 1389 هـ، 3:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ৭:৫৩ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م غرينتش+3:30" + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৭/১/১৪৫২ যুগ ৪:৪৭ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "21 جمادى الآخرة 1422 هـ، 6:16:40 ص غرينتش+4:30" + "locale": "bn", + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৭/১/১৪৫২ যুগ ৪:৪৭ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "27 شعبان 1445 هـ، 11:30:01 ص غرينتش+3:30" + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ১২:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "12 ربيع الآخر 1422 هـ، 12:44:15 ص غرينتش+4:30" + "locale": "bn", + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ১২:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "28 شعبان 1404 هـ، 6:23:00 م غرينتش+3:30" + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৫/১১/১৩৮৯ যুগ ১:৪৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "28 محرم 1452 هـ، 3:17:00 ص غرينتش+3:30" + "locale": "bn", + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৫/১১/১৩৮৯ যুগ ১:৪৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "2 جمادى الأولى 1389 هـ، 10:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ১:৪৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "6 ذو القعدة 1389 هـ، 1:16:40 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ১:৪৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "21 جمادى الآخرة 1422 هـ، 1:16:40 م غرينتش+4:30" + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৭/৯/১৪৪৫ যুগ ১:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "7 رمضان 1445 هـ، 2:00:00 ص غرينتش+2" + "locale": "bn", + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৭/৯/১৪৪৫ যুগ ১:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م غرينتش+3" + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ২:১৪ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش+4" + "locale": "bn", + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১১/৪/১৪২২ যুগ ২:১৪ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "9 رمضان 1472 هـ، 7:47:00 م غرينتش+3" + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ৮:৫৩ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "2 جمادى الأولى 1389 هـ، 3:00:00 ص غرينتش+3" + "locale": "bn", + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ৮:৫৩ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "5 ذو القعدة 1389 هـ، 4:46:40 م غرينتش+3" + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/১৪৭২ যুগ ৫:৪৭ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "21 جمادى الآخرة 1422 هـ، 4:46:40 ص غرينتش+3" + "locale": "bn", + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/১৪৭২ যুগ ৫:৪৭ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "27 شعبان 1445 هـ، 10:00:01 ص غرينتش+2" + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ১:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+3" + "locale": "bn", + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ১:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "28 شعبان 1404 هـ، 6:53:00 م غرينتش+4" + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৫/১১/১৩৮৯ যুগ ২:৪৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "28 محرم 1452 هـ، 2:47:00 ص غرينتش+3" + "locale": "bn", + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৫/১১/১৩৮৯ যুগ ২:৪৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+3" + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ২:৪৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "6 ذو القعدة 1389 هـ، 12:46:40 ص غرينتش+3" + "locale": "bn", + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ২:৪৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+3" + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৭/৮/১৪৪৫ যুগ ৯:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "7 رمضان 1445 هـ، 10:00:00 ص غرينتش+10" + "locale": "bn", + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৭/৮/১৪৪৫ যুগ ৯:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+10" + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ৯:১৪ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "28 شعبان 1404 هـ، 5:53:00 م غرينتش+10" + "locale": "bn", + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১১/৪/১৪২২ যুগ ৯:১৪ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "10 رمضان 1472 هـ، 2:47:00 ص غرينتش+10" + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ৩:৫৩ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+10" + "locale": "bn", + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ৩:৫৩ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م غرينتش+10" + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৮/১/১৪৫২ যুগ ১২:৪৭ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+10" + "locale": "bn", + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৮/১/১৪৫২ যুগ ১২:৪৭ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "27 شعبان 1445 هـ، 6:00:01 م غرينتش+10" + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ৮:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش+10" + "locale": "bn", + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ৮:০০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "29 شعبان 1404 هـ، 12:53:00 ص غرينتش+10" + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "28 محرم 1452 هـ، 9:47:00 ص غرينتش+10" + "locale": "bn", + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش+10" + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ৯:৪৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص غرينتش+10" + "locale": "bn", + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ৯:৪৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش+10" + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৭/৯/১৪৪৫ যুগ ৩:৩০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "7 رمضان 1445 هـ، 9:00:00 ص غرينتش+9" + "locale": "bn", + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৭/৯/১৪৪৫ যুগ ৩:৩০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م غرينتش+9" + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ৫:৪৪ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "28 شعبان 1404 هـ، 4:53:00 م غرينتش+9" + "locale": "bn", + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১১/৪/১৪২২ যুগ ৫:৪৪ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "10 رمضان 1472 هـ، 1:47:00 ص غرينتش+9" + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ১১:২৩ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "2 جمادى الأولى 1389 هـ، 9:00:00 ص غرينتش+9" + "locale": "bn", + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ১১:২৩ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+9" + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/১৪৭২ যুগ ৮:১৭ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "21 جمادى الآخرة 1422 هـ، 10:46:40 ص غرينتش+9" + "locale": "bn", + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/১৪৭২ যুগ ৮:১৭ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "27 شعبان 1445 هـ، 5:00:01 م غرينتش+9" + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ৩:৩০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص غرينتش+9" + "locale": "bn", + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ৩:৩০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "28 شعبان 1404 هـ، 11:53:00 م غرينتش+9" + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৫/১১/১৩৮৯ যুগ ৫:১৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "28 محرم 1452 هـ، 8:47:00 ص غرينتش+9" + "locale": "bn", + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৫/১১/১৩৮৯ যুগ ৫:১৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 م غرينتش+9" + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ৬:১৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "6 ذو القعدة 1389 هـ، 6:46:40 ص غرينتش+9" + "locale": "bn", + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ৬:১৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م غرينتش+9" + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৭/৮/১৪৪৫ যুগ ১১:৩০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "6 رمضان 1445 هـ، 9:00:00 م غرينتش-3" + "locale": "bn", + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৭/৮/১৪৪৫ যুগ ১১:৩০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص غرينتش-3" + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১২/৪/১৪২২ যুগ ১২:৪৪ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "28 شعبان 1404 هـ، 4:53:00 ص غرينتش-3" + "locale": "bn", + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১২/৪/১৪২২ যুগ ১২:৪৪ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "9 رمضان 1472 هـ، 1:47:00 م غرينتش-3" + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ৬:২৩ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1 جمادى الأولى 1389 هـ، 9:00:00 م غرينتش-3" + "locale": "bn", + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ৬:২৩ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 ص غرينتش-3" + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৮/১/১৪৫২ যুগ ৩:১৭ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "20 جمادى الآخرة 1422 هـ، 10:46:40 م غرينتش-3" + "locale": "bn", + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৮/১/১৪৫২ যুগ ৩:১৭ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "27 شعبان 1445 هـ، 5:00:01 ص غرينتش-3" + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ১০:৩০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م غرينتش-3" + "locale": "bn", + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ১০:৩০ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش-3" + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৬/১১/১৩৮৯ যুগ ১:১৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "27 محرم 1452 هـ، 8:47:00 م غرينتش-3" + "locale": "bn", + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৬/১১/১৩৮৯ যুগ ১:১৬ AM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 ص غرينتش-3" + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ১:১৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "5 ذو القعدة 1389 هـ، 6:46:40 م غرينتش-3" + "locale": "bn", + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ১:১৬ PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 ص غرينتش-3" + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৭/৯/১৪৪৫ যুগ ২:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "6 رمضان 1445 هـ، 5:00:00 م غرينتش-7" + "locale": "bn", + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৭/৯/১৪৪৫ যুগ ২:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "11 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش-7" + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ৪:১৪ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "28 شعبان 1404 هـ، 12:53:00 ص غرينتش-7" + "locale": "bn", + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১১/৪/১৪২২ যুগ ৪:১৪ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "9 رمضان 1472 هـ، 9:47:00 ص غرينتش-7" + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش-7" + "locale": "bn", + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "5 ذو القعدة 1389 هـ، 5:46:40 ص غرينتش-8" + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/১৪৭২ যুগ ৭:৪৭ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "20 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش-7" + "locale": "bn", + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/১৪৭২ যুগ ৭:৪৭ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "27 شعبان 1445 هـ، 12:00:01 ص غرينتش-8" + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ৩:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "11 ربيع الآخر 1422 هـ، 1:14:15 م غرينتش-7" + "locale": "bn", + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ৩:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "28 شعبان 1404 هـ، 7:53:00 ص غرينتش-7" + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৫/১১/১৩৮৯ যুগ ৪:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "27 محرم 1452 هـ، 4:47:00 م غرينتش-7" + "locale": "bn", + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৫/১১/১৩৮৯ যুগ ৪:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "2 جمادى الأولى 1389 هـ، 12:00:00 ص غرينتش-7" + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ৪:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "5 ذو القعدة 1389 هـ، 1:46:40 م غرينتش-8" + "locale": "bn", + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ৪:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص غرينتش-7" + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৭/৮/১৪৪৫ যুগ ১০:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "7 رمضان 1445 هـ، 1:00:00 ص غرينتش+1" + "locale": "bn", + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৭/৮/১৪৪৫ যুগ ১০:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م غرينتش+1" + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "28 شعبان 1404 هـ، 8:53:00 ص غرينتش+1" + "locale": "bn", + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "9 رمضان 1472 هـ، 5:47:00 م غرينتش+1" + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ৬:৫৩ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "2 جمادى الأولى 1389 هـ، 1:00:00 ص غرينتش+1" + "locale": "bn", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ৬:৫৩ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "5 ذو القعدة 1389 هـ، 2:46:40 م غرينتش+1" + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৮/১/১৪৫২ যুগ ২:৪৭ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "21 جمادى الآخرة 1422 هـ، 2:46:40 ص غرينتش+1" + "locale": "bn", + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৮/১/১৪৫২ যুগ ২:৪৭ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "27 شعبان 1445 هـ، 9:00:01 ص غرينتش+1" + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م غرينتش+1" + "locale": "bn", + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "28 شعبان 1404 هـ، 3:53:00 م غرينتش+1" + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৬/১১/১৩৮৯ যুগ ১২:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "28 محرم 1452 هـ، 12:47:00 ص غرينتش+1" + "locale": "bn", + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৬/১১/১৩৮৯ যুগ ১২:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "2 جمادى الأولى 1389 هـ، 8:00:00 ص غرينتش+1" + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+1" + "locale": "bn", + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص غرينتش+1" + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৭/৯/১৪৪৫ যুগ ১০:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "7 رمضان 1445 هـ، 3:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৭/৯/১৪৪৫ যুগ ১০:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "11 ربيع الآخر 1422 هـ، 5:44:15 م غرينتش+4:30" + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "28 شعبان 1404 هـ، 11:23:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "9 رمضان 1472 هـ، 8:17:00 م غرينتش+3:30" + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ৫:৫৩ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "2 جمادى الأولى 1389 هـ، 3:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ৫:৫৩ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م غرينتش+3:30" + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১০/৯/১৪৭২ যুগ ২:৪৭ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "21 جمادى الآخرة 1422 هـ، 6:16:40 ص غرينتش+4:30" + "locale": "bn", + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১০/৯/১৪৭২ যুগ ২:৪৭ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "27 شعبان 1445 هـ، 11:30:01 ص غرينتش+3:30" + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "12 ربيع الآخر 1422 هـ، 12:44:15 ص غرينتش+4:30" + "locale": "bn", + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "28 شعبان 1404 هـ، 6:23:00 م غرينتش+3:30" + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৫/১১/১৩৮৯ যুগ ১১:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "28 محرم 1452 هـ، 3:17:00 ص غرينتش+3:30" + "locale": "bn", + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৫/১১/১৩৮৯ যুগ ১১:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "2 جمادى الأولى 1389 هـ، 10:30:00 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "6 ذو القعدة 1389 هـ، 1:16:40 ص غرينتش+3:30" + "locale": "bn", + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "21 جمادى الآخرة 1422 هـ، 1:16:40 م غرينتش+4:30" + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৭/৮/১৪৪৫ যুগ ৬:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "7 رمضان 1445 هـ، 2:00:00 ص غرينتش+2" + "locale": "bn", + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৭/৮/১৪৪৫ যুগ ৬:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م غرينتش+3" + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১২/৪/১৪২২ যুগ ৬:১৪ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش+4" + "locale": "bn", + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১২/৪/১৪২২ যুগ ৬:১৪ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "9 رمضان 1472 هـ، 7:47:00 م غرينتش+3" + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৯/৮/১৪০৪ যুগ ১২:৫৩ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "2 جمادى الأولى 1389 هـ، 3:00:00 ص غرينتش+3" + "locale": "bn", + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৯/৮/১৪০৪ যুগ ১২:৫৩ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "5 ذو القعدة 1389 هـ، 4:46:40 م غرينتش+3" + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৮/১/১৪৫২ যুগ ৯:৪৭ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "21 جمادى الآخرة 1422 هـ، 4:46:40 ص غرينتش+3" + "locale": "bn", + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৮/১/১৪৫২ যুগ ৯:৪৭ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "27 شعبان 1445 هـ، 10:00:01 ص غرينتش+2" + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ৫:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+3" + "locale": "bn", + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ৫:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "28 شعبان 1404 هـ، 6:53:00 م غرينتش+4" + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৬/১১/১৩৮৯ যুগ ৭:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "28 محرم 1452 هـ، 2:47:00 ص غرينتش+3" + "locale": "bn", + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৬/১১/১৩৮৯ যুগ ৭:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+3" + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ৬:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "6 ذو القعدة 1389 هـ، 12:46:40 ص غرينتش+3" + "locale": "bn", + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ৬:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+3" + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৭/৯/১৪৪৫ যুগ ৯:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "7 رمضان 1445 هـ، 10:00:00 ص غرينتش+10" + "locale": "bn", + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৭/৯/১৪৪৫ যুগ ৯:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+10" + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ১০:১৪ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "28 شعبان 1404 هـ، 5:53:00 م غرينتش+10" + "locale": "bn", + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১১/৪/১৪২২ যুগ ১০:১৪ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "10 رمضان 1472 هـ، 2:47:00 ص غرينتش+10" + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+10" + "locale": "bn", + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م غرينتش+10" + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১০/৯/১৪৭২ যুগ ১:৪৭ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+10" + "locale": "bn", + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১০/৯/১৪৭২ যুগ ১:৪৭ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "27 شعبان 1445 هـ، 6:00:01 م غرينتش+10" + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ৯:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش+10" + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ৯:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "29 شعبان 1404 هـ، 12:53:00 ص غرينتش+10" + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "28 محرم 1452 هـ، 9:47:00 ص غرينتش+10" + "locale": "bn", + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش+10" + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ১০:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص غرينتش+10" + "locale": "bn", + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ১০:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش+10" + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "7 رمضان 1445 هـ، 9:00:00 ص غرينتش+9" + "locale": "bn", + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م غرينتش+9" + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১২/৪/১৪২২ যুগ ৫:১৪ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "28 شعبان 1404 هـ، 4:53:00 م غرينتش+9" + "locale": "bn", + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১২/৪/১৪২২ যুগ ৫:১৪ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "10 رمضان 1472 هـ، 1:47:00 ص غرينتش+9" + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "2 جمادى الأولى 1389 هـ، 9:00:00 ص غرينتش+9" + "locale": "bn", + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+9" + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৮/১/১৪৫২ যুগ ৮:৪৭ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "21 جمادى الآخرة 1422 هـ، 10:46:40 ص غرينتش+9" + "locale": "bn", + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৮/১/১৪৫২ যুগ ৮:৪৭ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "27 شعبان 1445 هـ، 5:00:01 م غرينتش+9" + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ৪:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص غرينتش+9" + "locale": "bn", + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ৪:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "28 شعبان 1404 هـ، 11:53:00 م غرينتش+9" + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৬/১১/১৩৮৯ যুগ ৬:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "28 محرم 1452 هـ، 8:47:00 ص غرينتش+9" + "locale": "bn", + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৬/১১/১৩৮৯ যুগ ৬:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 م غرينتش+9" + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "6 ذو القعدة 1389 هـ، 6:46:40 ص غرينتش+9" + "locale": "bn", + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م غرينتش+9" + "locale": "bn", + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৬/৯/১৪৪৫ যুগ ৯:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", + "locale": "bn", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "6 رمضان 1445 هـ، 9:00:00 م غرينتش-3" + "dateTimeFormatType": "atTime", + "expected": "৬/৯/১৪৪৫ যুগ ৯:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", + "locale": "bn", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ১০:১৪ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", + "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]", - "expected": "28 شعبان 1404 هـ، 4:53:00 ص غرينتش-3" + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "9 رمضان 1472 هـ، 1:47:00 م غرينتش-3" + "locale": "bn", + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1 جمادى الأولى 1389 هـ، 9:00:00 م غرينتش-3" + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৯/৯/১৪৭২ যুগ ১:৪৭ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 ص غرينتش-3" + "locale": "bn", + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৯/৯/১৪৭২ যুগ ১:৪৭ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "20 جمادى الآخرة 1422 هـ، 10:46:40 م غرينتش-3" + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১/৫/১৩৮৯ যুগ ৯:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "27 شعبان 1445 هـ، 5:00:01 ص غرينتش-3" + "locale": "bn", + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১/৫/১৩৮৯ যুগ ৯:০০ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م غرينتش-3" + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش-3" + "locale": "bn", + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "27 محرم 1452 هـ، 8:47:00 م غرينتش-3" + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২০/৬/১৪২২ যুগ ১০:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 ص غرينتش-3" + "locale": "bn", + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২০/৬/১৪২২ যুগ ১০:৪৬ PM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "5 ذو القعدة 1389 هـ، 6:46:40 م غرينتش-3" + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ AM" }, { - "timeLength": "long", + "dateLength": "short", + "timeLength": "short", "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 ص غرينتش-3" + "locale": "bn", + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ AM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "১৬/৩/২৪ ৫:০০ PM" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১১/৪/১৪২২ যুগ ৫:১৪ PM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "২/৭/০১ ৬:১৪ AM" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১১/৪/১৪২২ যুগ ৫:১৪ PM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৯/৫/৮৪ ১২:৫৩ AM" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "২৯/৫/৫০ ৯:৪৭ AM" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১৫/৭/৬৯ ৫:০০ PM" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৭/১/১৪৫২ যুগ ৮:৪৭ PM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "১২/১/৭০ ৫:৪৬ AM" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৭/১/১৪৫২ যুগ ৮:৪৭ PM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "৮/৯/০১ ৬:৪৬ PM" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২/৫/১৩৮৯ যুগ ৪:০০ AM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "৭/৩/২৪ ১২:০০ AM" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২/৫/১৩৮৯ যুগ ৪:০০ AM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "২/৭/০১ ১:১৪ PM" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৫/১১/১৩৮৯ যুগ ৬:৪৬ PM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৯/৫/৮৪ ৭:৫৩ AM" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৫/১১/১৩৮৯ যুগ ৬:৪৬ PM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৯/৫/৩০ ৪:৪৭ PM" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ AM" }, { "dateLength": "short", "timeLength": "short", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "১৬/৭/৬৯ ১২:০০ AM" + "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": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "১২/১/৭০ ১:৪৬ PM" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "৯/৯/০১ ১:৪৬ AM" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "১৭/৩/২৪ ১:০০ AM" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "২/৭/০১ ২:১৪ PM" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৯/৫/৮৪ ৮:৫৩ AM" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "২৯/৫/৫০ ৫:৪৭ PM" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "১৬/৭/৬৯ ১:০০ AM" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "১২/১/৭০ ২:৪৬ PM" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "৯/৯/০১ ২:৪৬ AM" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "৭/৩/২৪ ৯:০০ AM" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "২/৭/০১ ৯:১৪ PM" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৯/৫/৮৪ ৩:৫৩ PM" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "৩০/৫/৩০ ১২:৪৭ AM" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "১৬/৭/৬৯ ৮:০০ AM" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "১২/১/৭০ ১০:৪৬ PM" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "৯/৯/০১ ৯:৪৬ AM" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "১৭/৩/২৪ ৩:৩০ AM" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "২/৭/০১ ৫:৪৪ PM" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৯/৫/৮৪ ১১:২৩ AM" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "২৯/৫/৫০ ৮:১৭ PM" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "১৬/৭/৬৯ ৩:৩০ AM" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "১২/১/৭০ ৫:১৬ PM" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "৯/৯/০১ ৬:১৬ AM" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "৭/৩/২৪ ১১:৩০ AM" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "৩/৭/০১ ১২:৪৪ AM" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৯/৫/৮৪ ৬:২৩ PM" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "৩০/৫/৩০ ৩:১৭ AM" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "১৬/৭/৬৯ ১০:৩০ AM" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "১৩/১/৭০ ১:১৬ AM" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "৯/৯/০১ ১:১৬ PM" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "১৭/৩/২৪ ২:০০ AM" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "২/৭/০১ ৪:১৪ PM" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৯/৫/৮৪ ১১:৫৩ AM" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "২৯/৫/৫০ ৭:৪৭ PM" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "১৬/৭/৬৯ ৩:০০ AM" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "১২/১/৭০ ৪:৪৬ PM" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "৯/৯/০১ ৪:৪৬ AM" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "৭/৩/২৪ ১০:০০ AM" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "২/৭/০১ ১১:১৪ PM" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৯/৫/৮৪ ৬:৫৩ PM" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "৩০/৫/৩০ ২:৪৭ AM" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "১৬/৭/৬৯ ১০:০০ AM" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "১৩/১/৭০ ১২:৪৬ AM" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "৯/৯/০১ ১১:৪৬ AM" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "১৭/৩/২৪ ১০:০০ AM" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "২/৭/০১ ১১:১৪ PM" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৯/৫/৮৪ ৫:৫৩ PM" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "৩০/৫/৫০ ২:৪৭ AM" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "১৬/৭/৬৯ ১০:০০ AM" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "১২/১/৭০ ১১:৪৬ PM" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "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": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "৯/৯/০১ ১১:৪৬ AM" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "৭/৩/২৪ ৬:০০ PM" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "৩/৭/০১ ৬:১৪ AM" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "৩০/৫/৮৪ ১২:৫৩ AM" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "৩০/৫/৩০ ৯:৪৭ AM" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "১৬/৭/৬৯ ৫:০০ PM" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "১৩/১/৭০ ৭:৪৬ AM" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "৯/৯/০১ ৬:৪৬ PM" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "১৭/৩/২৪ ৯:০০ AM" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "২/৭/০১ ১০:১৪ PM" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৯/৫/৮৪ ৪:৫৩ PM" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "৩০/৫/৫০ ১:৪৭ AM" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "১৬/৭/৬৯ ৯:০০ AM" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "১২/১/৭০ ১০:৪৬ PM" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "৯/৯/০১ ১০:৪৬ AM" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "৭/৩/২৪ ৫:০০ PM" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "৩/৭/০১ ৫:১৪ AM" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৯/৫/৮৪ ১১:৫৩ PM" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "৩০/৫/৩০ ৮:৪৭ AM" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "১৬/৭/৬৯ ৪:০০ PM" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "১৩/১/৭০ ৬:৪৬ AM" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "৯/৯/০১ ৫:৪৬ PM" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "১৬/৩/২৪ ৯:০০ PM" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "২/৭/০১ ১০:১৪ AM" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৯/৫/৮৪ ৪:৫৩ AM" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "২৯/৫/৫০ ১:৪৭ PM" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১৫/৭/৬৯ ৯:০০ PM" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "১২/১/৭০ ১০:৪৬ AM" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "৮/৯/০১ ১০:৪৬ PM" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "৭/৩/২৪ ৫:০০ AM" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "২/৭/০১ ৫:১৪ PM" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৯/৫/৮৪ ১১:৫৩ AM" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৯/৫/৩০ ৮:৪৭ PM" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "১৬/৭/৬৯ ৪:০০ AM" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "১২/১/৭০ ৬:৪৬ PM" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM" }, { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "৯/৯/০১ ৫:৪৬ AM" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "২ জুল, ২০০১ ৬:১৪:১৫ AM" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১৫ জুল, ১৯৬৯ ৫:০০:০০ PM" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "১২ জানু, ১৯৭০ ৫:৪৬:৪০ AM" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "৮ সেপ, ২০০১ ৬:৪৬:৪০ PM" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "৭ মার্চ, ২০২৪ ১২:০০:০১ AM" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "২ জুল, ২০০১ ১:১৪:১৫ PM" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "১৬ জুল, ১৯৬৯ ১২:০০:০০ AM" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "১২ জানু, ১৯৭০ ১:৪৬:৪০ PM" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "৯ সেপ, ২০০১ ১:৪৬:৪০ AM" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "২ জুল, ২০০১ ২:১৪:১৫ PM" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "১৬ জুল, ১৯৬৯ ১:০০:০০ AM" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "১২ জানু, ১৯৭০ ২:৪৬:৪০ PM" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "৯ সেপ, ২০০১ ২:৪৬:৪০ AM" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "২ জুল, ২০০১ ৯:১৪:১৫ PM" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "১৬ জুল, ১৯৬৯ ৮:০০:০০ AM" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ PM" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "৯ সেপ, ২০০১ ৯:৪৬:৪০ AM" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "২ জুল, ২০০১ ৫:৪৪:১৫ PM" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "১৬ জুল, ১৯৬৯ ৩:৩০:০০ AM" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "১২ জানু, ১৯৭০ ৫:১৬:৪০ PM" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "৯ সেপ, ২০০১ ৬:১৬:৪০ AM" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "৩ জুল, ২০০১ ১২:৪৪:১৫ AM" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "১৬ জুল, ১৯৬৯ ১০:৩০:০০ AM" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "১৩ জানু, ১৯৭০ ১:১৬:৪০ AM" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "৯ সেপ, ২০০১ ১:১৬:৪০ PM" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "২ জুল, ২০০১ ৪:১৪:১৫ PM" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "২৯ মে, ২০৫০ ৭:৪৭:০০ PM" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "১৬ জুল, ১৯৬৯ ৩:০০:০০ AM" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "১২ জানু, ১৯৭০ ৪:৪৬:৪০ PM" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "৯ সেপ, ২০০১ ৪:৪৬:৪০ AM" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "২ জুল, ২০০১ ১১:১৪:১৫ PM" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "১৬ জুল, ১৯৬৯ ১০:০০:০০ AM" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "১৩ জানু, ১৯৭০ ১২:৪৬:৪০ AM" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "৯ সেপ, ২০০১ ১১:৪৬:৪০ AM" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "২ জুল, ২০০১ ১১:১৪:১৫ PM" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "১৬ জুল, ১৯৬৯ ১০:০০:০০ AM" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "১২ জানু, ১৯৭০ ১১:৪৬:৪০ PM" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "৯ সেপ, ২০০১ ১১:৪৬:৪০ AM" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "৩ জুল, ২০০১ ৬:১৪:১৫ AM" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "১৬ জুল, ১৯৬৯ ৫:০০:০০ PM" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "১৩ জানু, ১৯৭০ ৭:৪৬:৪০ AM" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "৯ সেপ, ২০০১ ৬:৪৬:৪০ PM" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "২ জুল, ২০০১ ১০:১৪:১৫ PM" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "১৬ জুল, ১৯৬৯ ৯:০০:০০ AM" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ PM" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "৯ সেপ, ২০০১ ১০:৪৬:৪০ AM" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "৩ জুল, ২০০১ ৫:১৪:১৫ AM" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "১৬ জুল, ১৯৬৯ ৪:০০:০০ PM" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "১৩ জানু, ১৯৭০ ৬:৪৬:৪০ AM" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "৯ সেপ, ২০০১ ৫:৪৬:৪০ PM" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "২ জুল, ২০০১ ১০:১৪:১৫ AM" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১৫ জুল, ১৯৬৯ ৯:০০:০০ PM" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ AM" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "৮ সেপ, ২০০১ ১০:৪৬:৪০ PM" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "২ জুল, ২০০১ ৫:১৪:১৫ PM" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "১৬ জুল, ১৯৬৯ ৪:০০:০০ AM" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "১২ জানু, ১৯৭০ ৬:৪৬:৪০ PM" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM" }, { "dateLength": "medium", "timeLength": "medium", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "৯ সেপ, ২০০১ ৫:৪৬:৪০ AM" + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM GMT -৭" + "dateTimeFormatType": "standard", + "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "২ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT -৭" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৬ রমজান, ১৪৪৫ যুগ এ ৫:০০:০০ PM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT -৭" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM GMT -৭" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪:১৫ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -৭" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৫:৪৬:৪০ AM GMT -৮" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩:০০ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "৮ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT -৭" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "৭ মার্চ, ২০২৪ ১২:০০:০১ AM GMT -৮" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৯ রমজান, ১৪৭২ যুগ এ ৯:৪৭:০০ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "২ জুলাই, ২০০১ ১:১৪:১৫ PM GMT -৭" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM GMT -৭" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০:০০ PM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM GMT -৭" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM GMT -৮" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -৭" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:৪৬:৪০ AM GMT -৮" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১:৪৬:৪০ PM GMT -৮" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১:৪৬:৪০ AM GMT -৭" + "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-17T01:00+01:00[Africa/Luanda]", - "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM GMT +১" + "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": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "২ জুলাই, ২০০১ ২:১৪:১৫ PM GMT +১" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ১২:০০:০১ AM GMT -৮" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM GMT +১" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM GMT +১" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ১:১৪:১৫ PM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +১" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM GMT +১" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৭:৫৩:০০ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM GMT +১" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM GMT +১" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২৭ মহররম, ১৪৫২ যুগ এ ৪:৪৭:০০ PM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "২ জুলাই, ২০০১ ৯:১৪:১৫ PM GMT +১" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM GMT +১" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১২:০০:০০ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM GMT +১" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM GMT -৮" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +১" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১:৪৬:৪০ PM GMT -৮" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +১" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM GMT +১" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:৪৬:৪০ AM GMT -৭" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM GMT +৩:৩০" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "২ জুলাই, ২০০১ ৫:৪৪:১৫ PM GMT +৪:৩০" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৭ রমজান, ১৪৪৫ যুগ এ ১:০০:০০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM GMT +৩:৩০" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM GMT +৩:৩০" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ২:১৪:১৫ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +৩:৩০" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM GMT +৩:৩০" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৮:৫৩:০০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM GMT +৪:৩০" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM GMT +৩:৩০" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৯ রমজান, ১৪৭২ যুগ এ ৫:৪৭:০০ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM GMT +৪:৩০" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM GMT +৩:৩০" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১:০০:০০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM GMT +৩:৩০" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +৩:৩০" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ২:৪৬:৪০ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM GMT +৩:৩০" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM GMT +৪:৩০" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ২:৪৬:৪০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM GMT +২" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "২ জুলাই, ২০০১ ৪:১৪:১৫ PM GMT +৩" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ৯:০০:০১ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT +৪" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "২৯ মে, ২০৫০ ৭:৪৭:০০ PM GMT +৩" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ৯:১৪:১৫ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "১৬ জুলাই, ১৯৬৯ ৩:০০:০০ AM GMT +৩" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM GMT +৩" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৩:৫৩:০০ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM GMT +৩" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM GMT +২" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২৮ মহররম, ১৪৫২ যুগ এ ১২:৪৭:০০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +৩" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM GMT +৪" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৮:০০:০০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM GMT +৩" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +৩" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ PM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM GMT +৩" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +৩" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৯:৪৬:৪০ AM GMT +১" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM GMT +১০" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +১০" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৭ রমজান, ১৪৪৫ যুগ এ ৩:৩০:০০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM GMT +১০" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM GMT +৪:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM GMT +১০" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ৫:৪৪:১৫ PM GMT +৪:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM GMT +১০" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ১১:২৩:০০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +১০" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM GMT +১০" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৯ রমজান, ১৪৭২ যুগ এ ৮:১৭:০০ PM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "৩ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT +১০" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT +১০" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:৩০:০০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM GMT +১০" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "১৬ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT +১০" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:১৬:৪০ PM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ৭:৪৬:৪০ AM GMT +১০" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM GMT +৪:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT +১০" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:১৬:৪০ AM GMT +৪:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM GMT +৯" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ PM GMT +৯" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ১১:৩০:০১ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM GMT +৯" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM GMT +৪:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM GMT +৯" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ এ ১২:৪৪:১৫ AM GMT +৪:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +৯" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +৯" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৬:২৩:০০ PM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ AM GMT +৯" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM GMT +৯" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২৮ মহররম, ১৪৫২ যুগ এ ৩:১৭:০০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "৩ জুলাই, ২০০১ ৫:১৪:১৫ AM GMT +৯" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM GMT +৯" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:৩০:০০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM GMT +৯" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +৯" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১:১৬:৪০ AM GMT +৩:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM GMT +৯" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM GMT +৪:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM GMT +৯" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:১৬:৪০ PM GMT +৪:৩০" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM GMT -৩" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM GMT +২" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ AM GMT -৩" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৭ রমজান, ১৪৪৫ যুগ এ ২:০০:০০ AM GMT +২" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM GMT -৩" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM GMT +৩" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM GMT -৩" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ৪:১৪:১৫ PM GMT +৩" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -৩" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT +৪" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM GMT -৩" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ AM GMT +৪" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM GMT -৩" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM GMT +৩" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM GMT -৩" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৯ রমজান, ১৪৭২ যুগ এ ৭:৪৭:০০ PM GMT +৩" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "২ জুলাই, ২০০১ ৫:১৪:১৫ PM GMT -৩" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +৩" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT -৩" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:০০:০০ AM GMT +৩" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM GMT -৩" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM GMT +৩" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -৩" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৪:৪৬:৪০ PM GMT +৩" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM GMT -৩" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM GMT +৩" }, { "dateLength": "long", "timeLength": "long", - "calendar": "gregorian", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ AM GMT -৩" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৪:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM GMT +২" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ১০:০০:০১ AM GMT +২" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪:১৫ PM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -০৭:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM GMT +৪" + }, + { + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৬:৫৩:০০ PM GMT +৪" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১২:০০:০১ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২৮ মহররম, ১৪৫২ যুগ এ ২:৪৭:০০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১:১৪:১৫ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০:০০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "বুধবার, ২৯ মে, ২০৩০ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -০৭:০০" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১২:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৭ রমজান, ১৪৪৫ যুগ এ ১০:০০:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪:১৫ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +০১:০০" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৫:৫৩:০০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১০ রমজান, ১৪৭২ যুগ এ ২:৪৭:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +০১:০০" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১১:৪৬:৪০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬:৪০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM ইরান মানক সময়" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ৬:০০:০১ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:২৩:০০ AM ইরান মানক সময়" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৮:১৭:০০ PM ইরান মানক সময়" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪:১৫ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +০৩:৩০" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM ইরান মানক সময়" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৯ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM ইরান দিবালোক সময়" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১১:৩০:০১ AM ইরান মানক সময়" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২৮ মহররম, ১৪৫২ যুগ এ ৯:৪৭:০০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:২৩:০০ PM ইরান মানক সময়" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০:০০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৩:১৭:০০ AM ইরান মানক সময়" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +০৩:৩০" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৭:৪৬:৪০ AM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM ইরান মানক সময়" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM ইরান দিবালোক সময়" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬:৪০ PM GMT +১০" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৭ রমজান, ১৪৪৫ যুগ এ ৯:০০:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪:১৫ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:০০:০০ AM GMT +০৩:০০" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM মস্কো মানক সময়" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩:০০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১০ রমজান, ১৪৭২ যুগ এ ১:৪৭:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +০৩:০০" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM মস্কো মানক সময়" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬:৪০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০:০১ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "সোমবার, ৩০ মে, ২০৫০ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "১২ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪:১৫ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০:০০" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২৮ মহররম, ১৪৫২ যুগ এ ৮:৪৭:০০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "বুধবার, ৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০:০০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT +১০:০০" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬:৪০ AM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৭:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬:৪০ PM GMT +৯" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৯:০০:০০ AM পালাউ সময়" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪:১৫ PM পালাউ সময়" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৬ রমজান, ১৪৪৫ যুগ এ ৯:০০:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM পালাউ সময়" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "সোমবার, ৩০ মে, ২০৫০ ১:৪৭:০০ AM পালাউ সময়" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪:১৫ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +০৯:০০" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM পালাউ সময়" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩:০০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ AM পালাউ সময়" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০:০১ PM পালাউ সময়" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৯ রমজান, ১৪৭২ যুগ এ ১:৪৭:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৫:১৪:১৫ AM পালাউ সময়" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM পালাউ সময়" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৮:৪৭:০০ AM পালাউ সময়" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +০৯:০০" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM পালাউ সময়" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM পালাউ সময়" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬:৪০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৯:০০:০০ PM উরুগুয়ে মানক সময়" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০:০১ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "রবিবার, ২৯ মে, ২০৫০ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪:১৫ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -০৩:০০" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০:০১ AM উরুগুয়ে মানক সময়" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২৭ মহররম, ১৪৫২ যুগ এ ৮:৪৭:০০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০:০০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "বুধবার, ২৯ মে, ২০৩০ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -০৩:০০" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬:৪০ PM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", + "dateLength": "long", + "timeLength": "long", + "calendar": "islamic", "locale": "bn", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ AM উরুগুয়ে মানক সময়" + "dateTimeFormatType": "atTime", + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬:৪০ AM GMT -৩" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৫:০০ PM" + "dateTimeFormatType": "standard", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৬:১৪ AM" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ এ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১২:৫৩ AM" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৯:৪৭ AM" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৫:০০ PM" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:৪৬ AM" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ৬:৪৬ PM" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১২:০০ AM" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১:১৪ PM" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -০৭:০০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৭:৫৩ AM" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০:০০ PM GMT -০৭:০০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "বুধবার, ২৯ মে, ২০৩০ ৪:৪৭ PM" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১২:০০ AM" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১:৪৬ PM" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:৪৬ AM" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১:০০ AM" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ২:১৪ PM" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১২:০০:০১ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৮:৫৩ AM" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৫:৪৭ PM" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১:১৪:১৫ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১:০০ AM" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ২:৪৬ PM" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ২:৪৬ AM" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৯:০০ AM" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ এ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৯:১৪ PM" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -০৭:০০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৩:৫৩ PM" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১২:০০:০০ AM GMT -০৭:০০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ১২:৪৭ AM" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৮:০০ AM" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ PM" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৯:৪৬ AM" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৩:৩০ AM" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:৪৪ PM" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:২৩ AM" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৮:১৭ PM" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:৩০ AM" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:১৬ PM" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:১৬ AM" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১১:৩০ AM" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ১২:৪৪ AM" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +০১:০০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:২৩ PM" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১:০০:০০ AM GMT +০১:০০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৩:১৭ AM" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:৩০ AM" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১:১৬ AM" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:১৬ PM" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ২:০০ AM" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৪:১৪ PM" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ AM" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৭:৪৭ PM" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:০০ AM" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৪:৪৬ PM" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৪:৪৬ AM" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১০:০০ AM" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪ PM" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +০১:০০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:৫৩ PM" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৮:০০:০০ AM GMT +০১:০০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ২:৪৭ AM" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০ AM" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১২:৪৬ AM" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬ AM" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১০:০০ AM" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪ PM" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ৩:৩০:০০ AM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৫:৫৩ PM" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "সোমবার, ৩০ মে, ২০৫০ ২:৪৭ AM" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০ AM" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১১:৪৬ PM" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:২৩:০০ AM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬ AM" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৬:০০ PM" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৮:১৭:০০ PM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৬:১৪ AM" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +০৩:৩০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "বুধবার, ৩০ মে, ১৯৮৪ ১২:৫৩ AM" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:৩০:০০ AM GMT +০৩:৩০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৯:৪৭ AM" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৫:০০ PM" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:১৬:৪০ PM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৭:৪৬ AM" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM ইরান দিবালোক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:৪৬ PM" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:১৬:৪০ AM ইরান দিবালোক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৯:০০ AM" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪ PM" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১১:৩০:০১ AM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩ PM" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "সোমবার, ৩০ মে, ২০৫০ ১:৪৭ AM" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৯:০০ AM" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ PM" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৬:২৩:০০ PM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১০:৪৬ AM" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০ PM" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৩:১৭:০০ AM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৫:১৪ AM" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +০৩:৩০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ PM" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:৩০:০০ AM GMT +০৩:৩০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৮:৪৭ AM" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০ PM" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১:১৬:৪০ AM ইরান মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৬:৪৬ AM" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM ইরান দিবালোক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬ PM" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:১৬:৪০ PM ইরান দিবালোক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৯:০০ PM" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪ AM" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩ AM" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "রবিবার, ২৯ মে, ২০৫০ ১:৪৭ PM" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৯:০০ PM" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ AM" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ১০:৪৬ PM" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০ AM" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:১৪ PM" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +০৩:০০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ AM" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:০০:০০ AM GMT +০৩:০০" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "বুধবার, ২৯ মে, ২০৩০ ৮:৪৭ PM" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM মস্কো মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০ AM" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৪:৪৬:৪০ PM মস্কো মানক সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৬:৪৬ PM" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬ AM" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM GMT -৭" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "২ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT -৭" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT -৭" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM GMT -৭" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -৭" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৫:৪৬:৪০ AM GMT -৮" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "৮ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT -৭" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "৭ মার্চ, ২০২৪ ১২:০০:০১ AM GMT -৮" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "২ জুলাই, ২০০১ ১:১৪:১৫ PM GMT -৭" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +০৩:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM GMT -৭" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০:০০ AM GMT +০৩:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM GMT -৭" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM মস্কো মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -৭" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১২:৪৬:৪০ AM মস্কো মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১:৪৬:৪০ PM GMT -৮" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১:৪৬:৪০ AM GMT -৭" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM GMT +১" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "২ জুলাই, ২০০১ ২:১৪:১৫ PM GMT +১" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM GMT +১" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM GMT +১" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +১" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM GMT +১" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM GMT +১" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM GMT +১" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ এ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "২ জুলাই, ২০০১ ৯:১৪:১৫ PM GMT +১" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM GMT +১" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০:০০ AM GMT +১০:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM GMT +১" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +১" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +১" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM GMT +১" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM GMT +৩:৩০" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "২ জুলাই, ২০০১ ৫:৪৪:১৫ PM GMT +৪:৩০" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM GMT +৩:৩০" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM GMT +৩:৩০" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +৩:৩০" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM GMT +৩:৩০" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM GMT +৪:৩০" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM GMT +৩:৩০" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM GMT +৪:৩০" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM GMT +৩:৩০" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০:০০ PM GMT +১০:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM GMT +৩:৩০" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +৩:৩০" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৭:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM GMT +৩:৩০" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM GMT +৪:৩০" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM GMT +২" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "২ জুলাই, ২০০১ ৪:১৪:১৫ PM GMT +৩" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ৯:০০:০০ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT +৪" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "২৯ মে, ২০৫০ ৭:৪৭:০০ PM GMT +৩" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪:১৫ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "১৬ জুলাই, ১৯৬৯ ৩:০০:০০ AM GMT +৩" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM GMT +৩" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩:০০ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM GMT +৩" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM GMT +২" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ এ ১:৪৭:০০ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +৩" + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", + "locale": "bn", + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +০৯:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM GMT +৪" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০:০০ AM GMT +০৯:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM GMT +৩" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +৩" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM GMT +৩" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +৩" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬:৪০ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM GMT +১০" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +১০" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০:০১ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM GMT +১০" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM GMT +১০" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪:১৫ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM GMT +১০" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +১০" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM GMT +১০" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৮:৪৭:০০ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "৩ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT +১০" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +০৯:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT +১০" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০:০০ PM GMT +০৯:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM GMT +১০" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "১৬ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT +১০" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬:৪০ AM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ৭:৪৬:৪০ AM GMT +১০" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT +১০" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬:৪০ PM পালাউ সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM GMT +৯" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ PM GMT +৯" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ এ ৯:০০:০০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM GMT +৯" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM GMT +৯" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +৯" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +৯" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ AM GMT +৯" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM GMT +৯" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "৩ জুলাই, ২০০১ ৫:১৪:১৫ AM GMT +৯" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -০৩:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM GMT +৯" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০:০০ PM GMT -০৩:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM GMT +৯" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +৯" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM GMT +৯" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM GMT +৯" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM GMT -৩" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ AM GMT -৩" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০:০১ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM GMT -৩" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM GMT -৩" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -৩" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM GMT -৩" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM GMT -৩" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM GMT -৩" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ এ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "২ জুলাই, ২০০১ ৫:১৪:১৫ PM GMT -৩" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -০৩:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT -৩" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০:০০ AM GMT -০৩:০০" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM GMT -৩" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -৩" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM GMT -৩" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM উরুগুয়ে মানক সময়" }, { - "dateLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "full", + "calendar": "islamic", "locale": "bn", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ AM GMT -৩" + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬:৪০ AM উরুগুয়ে মানক সময়" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM GMT -৭" + "dateTimeFormatType": "standard", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৫:০০ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "২ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT -৭" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ এ ৫:০০ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT -৭" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM GMT -৭" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -৭" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৫:৪৬:৪০ AM GMT -৮" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "৮ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT -৭" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৯:৪৭ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "৭ মার্চ, ২০২৪ ১২:০০:০১ AM GMT -৮" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৯:৪৭ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "২ জুলাই, ২০০১ ১:১৪:১৫ PM GMT -৭" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM GMT -৭" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM GMT -৭" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -৭" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:৪৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১:৪৬:৪০ PM GMT -৮" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬ PM" }, - { - "timeLength": "long", - "calendar": "gregorian", + { + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১:৪৬:৪০ AM GMT -৭" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM GMT +১" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "২ জুলাই, ২০০১ ২:১৪:১৫ PM GMT +১" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১২:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM GMT +১" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১:১৪ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM GMT +১" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১:১৪ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +১" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM GMT +১" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৭:৫৩ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM GMT +১" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৪:৪৭ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM GMT +১" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ এ ৪:৪৭ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "২ জুলাই, ২০০১ ৯:১৪:১৫ PM GMT +১" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM GMT +১" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১২:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM GMT +১" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +১" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১:৪৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +১" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM GMT +১" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:৪৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM GMT +৩:৩০" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "২ জুলাই, ২০০১ ৫:৪৪:১৫ PM GMT +৪:৩০" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ১:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM GMT +৩:৩০" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ২:১৪ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM GMT +৩:৩০" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ২:১৪ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +৩:৩০" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM GMT +৩:৩০" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৮:৫৩ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM GMT +৪:৩০" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৫:৪৭ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM GMT +৩:৩০" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৫:৪৭ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM GMT +৪:৩০" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM GMT +৩:৩০" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM GMT +৩:৩০" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +৩:৩০" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ২:৪৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM GMT +৩:৩০" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM GMT +৪:৩০" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ২:৪৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM GMT +২" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "২ জুলাই, ২০০১ ৪:১৪:১৫ PM GMT +৩" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৯:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT +৪" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "২৯ মে, ২০৫০ ৭:৪৭:০০ PM GMT +৩" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৯:১৪ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "১৬ জুলাই, ১৯৬৯ ৩:০০:০০ AM GMT +৩" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM GMT +৩" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৩:৫৩ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM GMT +৩" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ১২:৪৭ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM GMT +২" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ১২:৪৭ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +৩" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM GMT +৪" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৮:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM GMT +৩" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +৩" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM GMT +৩" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +৩" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৯:৪৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM GMT +১০" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৩:৩০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +১০" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ৩:৩০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM GMT +১০" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM GMT +১০" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৫:৪৪ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM GMT +১০" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:২৩ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +১০" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৮:১৭ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM GMT +১০" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৮:১৭ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "৩ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT +১০" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT +১০" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:৩০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM GMT +১০" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "১৬ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT +১০" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:১৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ৭:৪৬:৪০ AM GMT +১০" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT +১০" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:১৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM GMT +৯" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ PM GMT +৯" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১১:৩০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM GMT +৯" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM GMT +৯" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ১২:৪৪ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +৯" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +৯" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৬:২৩ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ AM GMT +৯" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৩:১৭ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM GMT +৯" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৩:১৭ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "৩ জুলাই, ২০০১ ৫:১৪:১৫ AM GMT +৯" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM GMT +৯" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:৩০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM GMT +৯" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +৯" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১:১৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM GMT +৯" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM GMT +৯" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:১৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM GMT -৩" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ২:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ AM GMT -৩" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ২:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM GMT -৩" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM GMT -৩" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৪:১৪ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -৩" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM GMT -৩" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM GMT -৩" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৭:৪৭ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM GMT -৩" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৭:৪৭ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "২ জুলাই, ২০০১ ৫:১৪:১৫ PM GMT -৩" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT -৩" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:০০ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM GMT -৩" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -৩" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৪:৪৬ PM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM GMT -৩" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬ AM" }, { - "timeLength": "long", - "calendar": "gregorian", + "dateLength": "full", + "timeLength": "short", + "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ AM GMT -৩" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৪:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "৬/৯/১৪৪৫ যুগ ৫:০০ PM" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "১১/৪/১৪২২ যুগ ৬:১৪ AM" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১০:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৮/৮/১৪০৪ যুগ ১২:৫৩ AM" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "৯/৯/১৪৭২ যুগ ৯:৪৭ AM" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১/৫/১৩৮৯ যুগ ৫:০০ PM" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "৫/১১/১৩৮৯ যুগ ৫:৪৬ AM" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৬:৫৩ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "২০/৬/১৪২২ যুগ ৬:৪৬ PM" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ২:৪৭ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "২৭/৮/১৪৪৫ যুগ ১২:০০ AM" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ২:৪৭ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "১১/৪/১৪২২ যুগ ১:১৪ PM" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৮/৮/১৪০৪ যুগ ৭:৫৩ AM" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৭/১/১৪৫২ যুগ ৪:৪৭ PM" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "২/৫/১৩৮৯ যুগ ১২:০০ AM" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১২:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "৫/১১/১৩৮৯ যুগ ১:৪৬ PM" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "২১/৬/১৪২২ যুগ ১:৪৬ AM" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "৭/৯/১৪৪৫ যুগ ১:০০ AM" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১০:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "১১/৪/১৪২২ যুগ ২:১৪ PM" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ১০:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৮/৮/১৪০৪ যুগ ৮:৫৩ AM" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "৯/৯/১৪৭২ যুগ ৫:৪৭ PM" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "২/৫/১৩৮৯ যুগ ১:০০ AM" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "৫/১১/১৩৮৯ যুগ ২:৪৬ PM" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৫:৫৩ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "২১/৬/১৪২২ যুগ ২:৪৬ AM" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ২:৪৭ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "২৭/৮/১৪৪৫ যুগ ৯:০০ AM" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ এ ২:৪৭ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "১১/৪/১৪২২ যুগ ৯:১৪ PM" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৮/৮/১৪০৪ যুগ ৩:৫৩ PM" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "২৮/১/১৪৫২ যুগ ১২:৪৭ AM" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "২/৫/১৩৮৯ যুগ ৮:০০ AM" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১১:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "২১/৬/১৪২২ যুগ ৯:৪৬ AM" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "৭/৯/১৪৪৫ যুগ ৩:৩০ AM" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "১১/৪/১৪২২ যুগ ৫:৪৪ PM" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৬:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৮/৮/১৪০৪ যুগ ১১:২৩ AM" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "৯/৯/১৪৭২ যুগ ৮:১৭ PM" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "২/৫/১৩৮৯ যুগ ৩:৩০ AM" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "৫/১১/১৩৮৯ যুগ ৫:১৬ PM" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "২১/৬/১৪২২ যুগ ৬:১৬ AM" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৯:৪৭ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "২৭/৮/১৪৪৫ যুগ ১১:৩০ AM" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৯:৪৭ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "১২/৪/১৪২২ যুগ ১২:৪৪ AM" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৮/৮/১৪০৪ যুগ ৬:২৩ PM" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "২৮/১/১৪৫২ যুগ ৩:১৭ AM" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "২/৫/১৩৮৯ যুগ ১০:৩০ AM" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৭:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "৬/১১/১৩৮৯ যুগ ১:১৬ AM" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "২১/৬/১৪২২ যুগ ১:১৬ PM" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "৭/৯/১৪৪৫ যুগ ২:০০ AM" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৯:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "১১/৪/১৪২২ যুগ ৪:১৪ PM" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ৯:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "৯/৯/১৪৭২ যুগ ৭:৪৭ PM" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "২/৫/১৩৮৯ যুগ ৩:০০ AM" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "৫/১১/১৩৮৯ যুগ ৪:৪৬ PM" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "২১/৬/১৪২২ যুগ ৪:৪৬ AM" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ১:৪৭ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "২৭/৮/১৪৪৫ যুগ ১০:০০ AM" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ এ ১:৪৭ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৮/৮/১৪০৪ যুগ ৬:৫৩ PM" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "২৮/১/১৪৫২ যুগ ২:৪৭ AM" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "৬/১১/১৩৮৯ যুগ ১২:৪৬ AM" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "৭/৯/১৪৪৫ যুগ ১০:০০ AM" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৮/৮/১৪০৪ যুগ ৫:৫৩ PM" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "১০/৯/১৪৭২ যুগ ২:৪৭ AM" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "৫/১১/১৩৮৯ যুগ ১১:৪৬ PM" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৮:৪৭ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "২৭/৮/১৪৪৫ যুগ ৬:০০ PM" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৮:৪৭ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "১২/৪/১৪২২ যুগ ৬:১৪ AM" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "২৯/৮/১৪০৪ যুগ ১২:৫৩ AM" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "২৮/১/১৪৫২ যুগ ৯:৪৭ AM" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "২/৫/১৩৮৯ যুগ ৫:০০ PM" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "৬/১১/১৩৮৯ যুগ ৭:৪৬ AM" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "২১/৬/১৪২২ যুগ ৬:৪৬ PM" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "৭/৯/১৪৪৫ যুগ ৯:০০ AM" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৯:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "১১/৪/১৪২২ যুগ ১০:১৪ PM" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ এ ৯:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ PM" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "১০/৯/১৪৭২ যুগ ১:৪৭ AM" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "২/৫/১৩৮৯ যুগ ৯:০০ AM" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "২১/৬/১৪২২ যুগ ১০:৪৬ AM" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ১:৪৭ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ PM" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ১:৪৭ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "১২/৪/১৪২২ যুগ ৫:১৪ AM" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ PM" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "২৮/১/১৪৫২ যুগ ৮:৪৭ AM" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "২/৫/১৩৮৯ যুগ ৪:০০ PM" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "৬/১১/১৩৮৯ যুগ ৬:৪৬ AM" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ PM" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "৬/৯/১৪৪৫ যুগ ৯:০০ PM" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "১১/৪/১৪২২ যুগ ১০:১৪ AM" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ AM" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "৯/৯/১৪৭২ যুগ ১:৪৭ PM" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১/৫/১৩৮৯ যুগ ৯:০০ PM" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ AM" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "২০/৬/১৪২২ যুগ ১০:৪৬ PM" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৮:৪৭ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ AM" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ এ ৮:৪৭ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "১১/৪/১৪২২ যুগ ৫:১৪ PM" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৭/১/১৪৫২ যুগ ৮:৪৭ PM" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "২/৫/১৩৮৯ যুগ ৪:০০ AM" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬ PM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "৫/১১/১৩৮৯ যুগ ৬:৪৬ PM" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬ AM" }, { - "dateLength": "short", + "dateLength": "full", "timeLength": "short", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ AM" + "dateTimeFormatType": "atTime", + "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬ AM" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM" + "expected": "৬ রমজান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM" + "expected": "৯ রমজান, ১৪৭২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM" + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM" + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM" + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM" + "expected": "২৭ মহররম, ১৪৫২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM" + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM" + "expected": "৭ রমজান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM" + "expected": "৯ রমজান, ১৪৭২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM" + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM" + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM" + "expected": "২৮ মহররম, ১৪৫২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM" + "expected": "৭ রমজান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM" + "expected": "৯ রমজান, ১৪৭২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM" + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM" + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM" + "expected": "১২ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM" + "expected": "২৮ মহররম, ১৪৫২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM" + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM" + "expected": "৭ রমজান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM" + "expected": "৯ রমজান, ১৪৭২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM" + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM" + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM" + "expected": "২৮ মহররম, ১৪৫২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM" + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM" + "expected": "৭ রমজান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM" + "expected": "১০ রমজান, ১৪৭২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM" + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM" + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM" + "expected": "১২ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM" + "expected": "২৯ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM" + "expected": "২৮ মহররম, ১৪৫২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM" + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM" + "expected": "৭ রমজান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM" + "expected": "১০ রমজান, ১৪৭২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM" + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM" + "expected": "১২ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM" + "expected": "২৮ মহররম, ১৪৫২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM" + "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM" + "expected": "৬ রমজান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM" + "expected": "৯ রমজান, ১৪৭২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM" + "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM" + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM" + "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM" + "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM" + "expected": "১১ রবিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" + "expected": "২৮ শা‘বান, ১৪০৪ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM" + "expected": "২৭ মহররম, ১৪৫২ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM" + "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM" + "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM" + "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM GMT -৭" + "expected": "৫:০০:০০ PM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT -৭" + "expected": "৬:১৪:১৫ AM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT -৭" + "expected": "১২:৫৩:০০ AM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM GMT -৭" + "expected": "৯:৪৭:০০ AM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -৭" + "expected": "৫:০০:০০ PM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM GMT -৮" + "expected": "৫:৪৬:৪০ AM GMT -৮" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT -৭" + "expected": "৬:৪৬:৪০ PM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM GMT -৮" + "expected": "১২:০০:০১ AM GMT -৮" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM GMT -৭" + "expected": "১:১৪:১৫ PM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM GMT -৭" + "expected": "৭:৫৩:০০ AM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM GMT -৭" + "expected": "৪:৪৭:০০ PM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -৭" + "expected": "১২:০০:০০ AM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM GMT -৮" + "expected": "১:৪৬:৪০ PM GMT -৮" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM GMT -৭" + "expected": "১:৪৬:৪০ AM GMT -৭" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM GMT +১" + "expected": "১:০০:০০ AM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM GMT +১" + "expected": "২:১৪:১৫ PM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM GMT +১" + "expected": "৮:৫৩:০০ AM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM GMT +১" + "expected": "৫:৪৭:০০ PM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +১" + "expected": "১:০০:০০ AM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM GMT +১" + "expected": "২:৪৬:৪০ PM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM GMT +১" + "expected": "২:৪৬:৪০ AM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM GMT +১" + "expected": "৯:০০:০১ AM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM GMT +১" + "expected": "৯:১৪:১৫ PM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM GMT +১" + "expected": "৩:৫৩:০০ PM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM GMT +১" + "expected": "১২:৪৭:০০ AM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +১" + "expected": "৮:০০:০০ AM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +১" + "expected": "১০:৪৬:৪০ PM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM GMT +১" + "expected": "৯:৪৬:৪০ AM GMT +১" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM GMT +৩:৩০" + "expected": "৩:৩০:০০ AM GMT +৩:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM GMT +৪:৩০" + "expected": "৫:৪৪:১৫ PM GMT +৪:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM GMT +৩:৩০" + "expected": "১১:২৩:০০ AM GMT +৩:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM GMT +৩:৩০" + "expected": "৮:১৭:০০ PM GMT +৩:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +৩:৩০" + "expected": "৩:৩০:০০ AM GMT +৩:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM GMT +৩:৩০" + "expected": "৫:১৬:৪০ PM GMT +৩:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM GMT +৪:৩০" + "expected": "৬:১৬:৪০ AM GMT +৪:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM GMT +৩:৩০" + "expected": "১১:৩০:০১ AM GMT +৩:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM GMT +৪:৩০" + "expected": "১২:৪৪:১৫ AM GMT +৪:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM GMT +৩:৩০" + "expected": "৬:২৩:০০ PM GMT +৩:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM GMT +৩:৩০" + "expected": "৩:১৭:০০ AM GMT +৩:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +৩:৩০" + "expected": "১০:৩০:০০ AM GMT +৩:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM GMT +৩:৩০" + "expected": "১:১৬:৪০ AM GMT +৩:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM GMT +৪:৩০" + "expected": "১:১৬:৪০ PM GMT +৪:৩০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM GMT +২" + "expected": "২:০০:০০ AM GMT +২" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM GMT +৩" + "expected": "৪:১৪:১৫ PM GMT +৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT +৪" + "expected": "১১:৫৩:০০ AM GMT +৪" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM GMT +৩" + "expected": "৭:৪৭:০০ PM GMT +৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +৩" + "expected": "৩:০০:০০ AM GMT +৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM GMT +৩" + "expected": "৪:৪৬:৪০ PM GMT +৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM GMT +৩" + "expected": "৪:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM GMT +২" + "expected": "১০:০০:০১ AM GMT +২" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +৩" + "expected": "১১:১৪:১৫ PM GMT +৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM GMT +৪" + "expected": "৬:৫৩:০০ PM GMT +৪" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM GMT +৩" + "expected": "২:৪৭:০০ AM GMT +৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +৩" + "expected": "১০:০০:০০ AM GMT +৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM GMT +৩" + "expected": "১২:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +৩" + "expected": "১১:৪৬:৪০ AM GMT +৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM GMT +১০" + "expected": "১০:০০:০০ AM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +১০" + "expected": "১১:১৪:১৫ PM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM GMT +১০" + "expected": "৫:৫৩:০০ PM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM GMT +১০" + "expected": "২:৪৭:০০ AM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০" + "expected": "১০:০০:০০ AM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM GMT +১০" + "expected": "১১:৪৬:৪০ PM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +১০" + "expected": "১১:৪৬:৪০ AM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM GMT +১০" + "expected": "৬:০০:০১ PM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT +১০" + "expected": "৬:১৪:১৫ AM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT +১০" + "expected": "১২:৫৩:০০ AM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM GMT +১০" + "expected": "৯:৪৭:০০ AM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০" + "expected": "৫:০০:০০ PM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM GMT +১০" + "expected": "৭:৪৬:৪০ AM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT +১০" + "expected": "৬:৪৬:৪০ PM GMT +১০" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM GMT +৯" + "expected": "৯:০০:০০ AM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM GMT +৯" + "expected": "১০:১৪:১৫ PM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM GMT +৯" + "expected": "৪:৫৩:০০ PM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM GMT +৯" + "expected": "১:৪৭:০০ AM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +৯" + "expected": "৯:০০:০০ AM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +৯" + "expected": "১০:৪৬:৪০ PM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM GMT +৯" + "expected": "১০:৪৬:৪০ AM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM GMT +৯" + "expected": "৫:০০:০১ PM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM GMT +৯" + "expected": "৫:১৪:১৫ AM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM GMT +৯" + "expected": "১১:৫৩:০০ PM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM GMT +৯" + "expected": "৮:৪৭:০০ AM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +৯" + "expected": "৪:০০:০০ PM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM GMT +৯" + "expected": "৬:৪৬:৪০ AM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM GMT +৯" + "expected": "৫:৪৬:৪০ PM GMT +৯" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM GMT -৩" + "expected": "৯:০০:০০ PM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM GMT -৩" + "expected": "১০:১৪:১৫ AM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM GMT -৩" + "expected": "৪:৫৩:০০ AM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM GMT -৩" + "expected": "১:৪৭:০০ PM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -৩" + "expected": "৯:০০:০০ PM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM GMT -৩" + "expected": "১০:৪৬:৪০ AM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM GMT -৩" + "expected": "১০:৪৬:৪০ PM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM GMT -৩" + "expected": "৫:০০:০১ AM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM GMT -৩" + "expected": "৫:১৪:১৫ PM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT -৩" + "expected": "১১:৫৩:০০ AM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM GMT -৩" + "expected": "৮:৪৭:০০ PM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -৩" + "expected": "৪:০০:০০ AM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM GMT -৩" + "expected": "৬:৪৬:৪০ PM GMT -৩" }, { - "dateLength": "long", "timeLength": "long", "calendar": "islamic", "locale": "bn", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM GMT -৩" + "expected": "৫:৪৬:৪০ AM GMT -৩" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "dateTimeFormatType": "standard", + "expected": "3/16/24 17:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "dateTimeFormatType": "standard", + "expected": "7/2/01 06:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 00:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/50 09:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -০৭:০০" + "dateTimeFormatType": "standard", + "expected": "7/15/69 17:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + "dateTimeFormatType": "standard", + "expected": "1/12/70 05:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "dateTimeFormatType": "standard", + "expected": "9/8/01 18:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + "dateTimeFormatType": "standard", + "expected": "3/7/24 00:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "dateTimeFormatType": "standard", + "expected": "7/2/01 13:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -০৭:০০" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" + "dateTimeFormatType": "atTime", + "expected": "1/12/70 13:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 01:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "3/17/24 01:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "7/2/01 14:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 08:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/50 17:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +০১:০০" + "dateTimeFormatType": "standard", + "expected": "7/16/69 01:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "1/12/70 14:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 02:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "3/7/24 09:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "7/2/01 21:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 15:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/30/30 00:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +০১:০০" + "dateTimeFormatType": "standard", + "expected": "7/16/69 08:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "1/12/70 22:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 09:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM ইরান মানক সময়" + "dateTimeFormatType": "standard", + "expected": "3/17/24 03:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" + "dateTimeFormatType": "standard", + "expected": "7/2/01 17:44" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM ইরান মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 11:23" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM ইরান মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/50 20:17" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +০৩:৩০" + "dateTimeFormatType": "standard", + "expected": "7/16/69 03:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM ইরান মানক সময়" + "dateTimeFormatType": "standard", + "expected": "1/12/70 17:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM ইরান দিবালোক সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 06:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM ইরান মানক সময়" + "dateTimeFormatType": "standard", + "expected": "3/7/24 11:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" + "dateTimeFormatType": "standard", + "expected": "7/3/01 00:44" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM ইরান মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 18:23" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM ইরান মানক সময়" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +০৩:৩০" + "dateTimeFormatType": "atTime", + "expected": "7/16/69 10:30" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM ইরান মানক সময়" + "dateTimeFormatType": "standard", + "expected": "1/13/70 01:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM ইরান দিবালোক সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 13:16" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" + "dateTimeFormatType": "standard", + "expected": "3/17/24 02:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "dateTimeFormatType": "standard", + "expected": "7/2/01 16:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 11:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/50 19:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +০৩:০০" + "dateTimeFormatType": "standard", + "expected": "7/16/69 03:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM মস্কো মানক সময়" + "dateTimeFormatType": "standard", + "expected": "1/12/70 16:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 04:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" + "dateTimeFormatType": "standard", + "expected": "3/7/24 10:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "dateTimeFormatType": "standard", + "expected": "7/2/01 23:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 18:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "dateTimeFormatType": "standard", + "expected": "5/30/30 02:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +০৩:০০" + "dateTimeFormatType": "standard", + "expected": "7/16/69 10:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM মস্কো মানক সময়" + "dateTimeFormatType": "standard", + "expected": "1/13/70 00:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 11:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "3/17/24 10:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "7/2/01 23:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 17:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/30/50 02:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০:০০" + "dateTimeFormatType": "standard", + "expected": "7/16/69 10:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "1/12/70 23:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 11:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "3/7/24 18:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "7/3/01 06:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/30/84 00:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/30/30 09:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০:০০" + "dateTimeFormatType": "atTime", + "expected": "7/16/69 17:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "dateLength": "short", + "timeLength": "short", + "calendar": "gregorian", + "locale": "zu", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "1/13/70 07:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 18:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "3/17/24 09:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "7/2/01 22:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 16:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "5/30/50 01:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +০৯:০০" + "dateTimeFormatType": "standard", + "expected": "7/16/69 09:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "1/12/70 22:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 10:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "3/7/24 17:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "7/3/01 05:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 23:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "5/30/30 08:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +০৯:০০" + "dateTimeFormatType": "standard", + "expected": "7/16/69 16:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "1/13/70 06:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM পালাউ সময়" + "dateTimeFormatType": "standard", + "expected": "9/9/01 17:46" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM উরুগুয়ে মানক সময়" + "dateTimeFormatType": "standard", + "expected": "3/16/24 21:00" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" + "dateTimeFormatType": "standard", + "expected": "7/2/01 10:14" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/84 04:53" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" + "dateTimeFormatType": "standard", + "expected": "5/29/50 13:47" }, { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -০৩:০০" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM উরুগুয়ে মানক সময়" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -০৩:০০" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" + "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": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM উরুগুয়ে মানক সময়" + "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": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৫:০০ PM" + "calendar": "gregorian", + "locale": "zu", + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "7/2/01 17:14" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪ AM" + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "5/29/84 11:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩ AM" + "calendar": "gregorian", + "locale": "zu", + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "5/29/84 11:53" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৯:৪৭ AM" + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "5/29/30 20:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০ PM" + "calendar": "gregorian", + "locale": "zu", + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "5/29/30 20:47" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬ AM" + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "7/16/69 04:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬ PM" + "calendar": "gregorian", + "locale": "zu", + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "7/16/69 04:00" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০ AM" + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "1/12/70 18:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১:১৪ PM" + "calendar": "gregorian", + "locale": "zu", + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "1/12/70 18:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩ AM" + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "9/9/01 05:46" }, { - "dateLength": "full", + "dateLength": "short", "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৪:৪৭ PM" + "calendar": "gregorian", + "locale": "zu", + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "9/9/01 05:46" }, { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ২:১৪ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৫:৪৭ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ১২:৪৭ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৩:৩০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৮:১৭ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৩:১৭ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ২:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৭:৪৭ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ২:৪৭ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১০:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ২:৪৭ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৯:৪৭ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৯:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ১:৪৭ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৮:৪৭ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৯:০০ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ১:৪৭ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৮:৪৭ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০ AM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬ PM" + "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": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬ AM" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM GMT -৮" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM GMT -৮" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM GMT -৮" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM GMT -৭" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM GMT +১" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM GMT +৩:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM GMT +৪:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM GMT +৩:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM GMT +৩:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +৩:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM GMT +৩:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM GMT +৪:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM GMT +৩:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM GMT +৪:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM GMT +৩:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM GMT +৩:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +৩:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM GMT +৩:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM GMT +৪:৩০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM GMT +২" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM GMT +৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT +৪" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM GMT +৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM GMT +৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM GMT +৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM GMT +২" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM GMT +৪" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM GMT +৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM GMT +৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT +১০" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM GMT +৯" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM GMT -৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM GMT -৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM GMT -৩" + "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": "long", - "calendar": "islamic", - "locale": "bn", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM GMT -৩" + "dateTimeFormatType": "atTime", + "expected": "Mey 29, 2050 13:47:00" }, { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", + "dateLength": "medium", + "timeLength": "medium", + "calendar": "gregorian", + "locale": "zu", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -৩" + "dateTimeFormatType": "standard", + "expected": "Jul 15, 1969 21:00:00" }, { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM GMT -৩" + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970 10:46:40" }, { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM GMT -৩" + "dateTimeFormatType": "standard", + "expected": "Sep 8, 2001 22:46:40" }, { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM GMT -৩" + "dateTimeFormatType": "standard", + "expected": "Mas 7, 2024 05:00:01" }, { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM GMT -৩" + "dateTimeFormatType": "standard", + "expected": "Jul 2, 2001 17:14:15" }, { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT -৩" + "dateTimeFormatType": "standard", + "expected": "Mey 29, 1984 11:53:00" }, { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM GMT -৩" + "dateTimeFormatType": "standard", + "expected": "Mey 29, 2030 20:47:00" }, { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -৩" + "dateTimeFormatType": "standard", + "expected": "Jul 16, 1969 04:00:00" }, { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM GMT -৩" + "dateTimeFormatType": "standard", + "expected": "Jan 12, 1970 18:46:40" }, { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", + "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]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM GMT -৩" + "dateTimeFormatType": "standard", + "expected": "Sep 9, 2001 05:46:40" }, { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM GMT -৮" + "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": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM GMT -৮" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM GMT -৮" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM GMT -৭" + "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": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM GMT +১" + "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": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM GMT +৩:৩০" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM GMT +৪:৩০" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM GMT +৩:৩০" + "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": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM GMT +৩:৩০" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +৩:৩০" + "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": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM GMT +৩:৩০" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM GMT +৪:৩০" + "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": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM GMT +৩:৩০" + "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": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM GMT +৪:৩০" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM GMT +৩:৩০" + "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": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM GMT +৩:৩০" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +৩:৩০" + "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": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM GMT +৩:৩০" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM GMT +৪:৩০" + "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": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM GMT +২" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM GMT +৩" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT +৪" + "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": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM GMT +৩" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +৩" + "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": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM GMT +৩" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM GMT +৩" + "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": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM GMT +২" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +৩" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM GMT +৪" + "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": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM GMT +৩" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +৩" + "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": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM GMT +৩" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +৩" + "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": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT +১০" + "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": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM GMT +৯" + "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": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM GMT -৩" + "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": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM GMT -৩" + "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": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "3/16/24 17:00" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Septhemba 9, 2001 04:46:40 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "7/2/01 06:14" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Mashi 7, 2024 10:00:01 GMT+2" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "5/29/84 00:53" + "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Mashi 7, 2024 10:00:01 GMT+2" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "5/29/50 09:47" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Julayi 2, 2001 23:14:15 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "7/15/69 17:00" + "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 2, 2001 23:14:15 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1/12/70 05:46" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Meyi 29, 1984 18:53:00 GMT+4" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "9/8/01 18:46" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 29, 1984 18:53:00 GMT+4" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "3/7/24 00:00" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Meyi 30, 2030 02:47:00 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "7/2/01 13:14" + "input": "2030-05-30T02:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 30, 2030 02:47:00 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "5/29/84 07:53" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Julayi 16, 1969 10:00:00 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "5/29/30 16:47" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 16, 1969 10:00:00 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "7/16/69 00:00" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Januwari 13, 1970 00:46:40 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1/12/70 13:46" + "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Januwari 13, 1970 00:46:40 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9/9/01 01:46" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "Septhemba 9, 2001 11:46:40 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "3/17/24 01:00" + "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "Septhemba 9, 2001 11:46:40 GMT+3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "7/2/01 14:14" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Mashi 17, 2024 10:00:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "5/29/84 08:53" + "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Mashi 17, 2024 10:00:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "5/29/50 17:47" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Julayi 2, 2001 23:14:15 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "7/16/69 01:00" + "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 2, 2001 23:14:15 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1/12/70 14:46" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Meyi 29, 1984 17:53:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9/9/01 02:46" + "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 29, 1984 17:53:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "3/7/24 09:00" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Meyi 30, 2050 02:47:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "7/2/01 21:14" + "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 30, 2050 02:47:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "5/29/84 15:53" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Julayi 16, 1969 10:00:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "5/30/30 00:47" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 16, 1969 10:00:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "7/16/69 08:00" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Januwari 12, 1970 23:46:40 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1/12/70 22:46" + "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Januwari 12, 1970 23:46:40 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9/9/01 09:46" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Septhemba 9, 2001 11:46:40 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "3/17/24 03:30" + "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Septhemba 9, 2001 11:46:40 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "7/2/01 17:44" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Mashi 7, 2024 18:00:01 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "5/29/84 11:23" + "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Mashi 7, 2024 18:00:01 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "5/29/50 20:17" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Julayi 3, 2001 06:14:15 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "7/16/69 03:30" + "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 3, 2001 06:14:15 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1/12/70 17:16" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Meyi 30, 1984 00:53:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9/9/01 06:16" + "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 30, 1984 00:53:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "3/7/24 11:30" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Meyi 30, 2030 09:47:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "7/3/01 00:44" + "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 30, 2030 09:47:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "5/29/84 18:23" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Julayi 16, 1969 17:00:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "5/30/30 03:17" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 16, 1969 17:00:00 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "7/16/69 10:30" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Januwari 13, 1970 07:46:40 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1/13/70 01:16" + "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Januwari 13, 1970 07:46:40 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9/9/01 13:16" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "Septhemba 9, 2001 18:46:40 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "3/17/24 02:00" + "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "Septhemba 9, 2001 18:46:40 GMT+10" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "7/2/01 16:14" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Mashi 17, 2024 09:00:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "5/29/84 11:53" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Mashi 17, 2024 09:00:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "5/29/50 19:47" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Julayi 2, 2001 22:14:15 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "7/16/69 03:00" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 2, 2001 22:14:15 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1/12/70 16:46" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Meyi 29, 1984 16:53:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9/9/01 04:46" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 29, 1984 16:53:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "3/7/24 10:00" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Meyi 30, 2050 01:47:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "7/2/01 23:14" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 30, 2050 01:47:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "5/29/84 18:53" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Julayi 16, 1969 09:00:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "5/30/30 02:47" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 16, 1969 09:00:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "7/16/69 10:00" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Januwari 12, 1970 22:46:40 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1/13/70 00:46" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Januwari 12, 1970 22:46:40 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9/9/01 11:46" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Septhemba 9, 2001 10:46:40 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "3/17/24 10:00" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Septhemba 9, 2001 10:46:40 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "7/2/01 23:14" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Mashi 7, 2024 17:00:01 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "5/29/84 17:53" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Mashi 7, 2024 17:00:01 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "5/30/50 02:47" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Julayi 3, 2001 05:14:15 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "7/16/69 10:00" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 3, 2001 05:14:15 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1/12/70 23:46" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Meyi 29, 1984 23:53:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9/9/01 11:46" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 29, 1984 23:53:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "3/7/24 18:00" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Meyi 30, 2030 08:47:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "7/3/01 06:14" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 30, 2030 08:47:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "5/30/84 00:53" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Julayi 16, 1969 16:00:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "5/30/30 09:47" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 16, 1969 16:00:00 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "7/16/69 17:00" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Januwari 13, 1970 06:46:40 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1/13/70 07:46" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Januwari 13, 1970 06:46:40 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9/9/01 18:46" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "Septhemba 9, 2001 17:46:40 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "3/17/24 09:00" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "Septhemba 9, 2001 17:46:40 GMT+9" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "7/2/01 22:14" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Mashi 16, 2024 21:00:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "5/29/84 16:53" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Mashi 16, 2024 21:00:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "5/30/50 01:47" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Julayi 2, 2001 10:14:15 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "7/16/69 09:00" + "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 2, 2001 10:14:15 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1/12/70 22:46" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Meyi 29, 1984 04:53:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9/9/01 10:46" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 29, 1984 04:53:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "3/7/24 17:00" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Meyi 29, 2050 13:47:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "7/3/01 05:14" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 29, 2050 13:47:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "5/29/84 23:53" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Julayi 15, 1969 21:00:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "5/30/30 08:47" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 15, 1969 21:00:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "7/16/69 16:00" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Januwari 12, 1970 10:46:40 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1/13/70 06:46" + "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Januwari 12, 1970 10:46:40 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9/9/01 17:46" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Septhemba 8, 2001 22:46:40 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "3/16/24 21:00" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Septhemba 8, 2001 22:46:40 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "7/2/01 10:14" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Mashi 7, 2024 05:00:01 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "5/29/84 04:53" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Mashi 7, 2024 05:00:01 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "5/29/50 13:47" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Julayi 2, 2001 17:14:15 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "7/15/69 21:00" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 2, 2001 17:14:15 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1/12/70 10:46" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Meyi 29, 1984 11:53:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "9/8/01 22:46" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 29, 1984 11:53:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "3/7/24 05:00" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Meyi 29, 2030 20:47:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "7/2/01 17:14" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Meyi 29, 2030 20:47:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "5/29/84 11:53" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Julayi 16, 1969 04:00:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "5/29/30 20:47" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Julayi 16, 1969 04:00:00 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "7/16/69 04:00" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "Januwari 12, 1970 18:46:40 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1/12/70 18:46" + "dateTimeFormatType": "atTime", + "expected": "Januwari 12, 1970 18:46:40 GMT-3" }, { - "dateLength": "short", - "timeLength": "short", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9/9/01 05:46" + "dateTimeFormatType": "standard", + "expected": "Septhemba 9, 2001 05:46:40 GMT-3" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "long", + "timeLength": "long", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "Mas 16, 2024 17:00:00" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "Septhemba 9, 2001 05:46:40 GMT-3" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "Jul 2, 2001 06:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "Mey 29, 1984 00:53:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "Mey 29, 2050 09:47:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "Jul 15, 1969 17:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "Jan 12, 1970 05:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "Sep 8, 2001 18:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "Mas 7, 2024 00:00:01" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "Jul 2, 2001 13:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "Mey 29, 1984 07:53:00" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Julayi 15, 1969 17:00:00 GMT-07:00" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "Mey 29, 2030 16:47:00" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Julayi 15, 1969 17:00:00 GMT-07:00" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "Jul 16, 1969 00:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "Jan 12, 1970 13:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "Sep 9, 2001 01:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "Mas 17, 2024 01:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "Jul 2, 2001 14:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "Mey 29, 1984 08:53:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "Mey 29, 2050 17:47:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "Jul 16, 1969 01:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "Jan 12, 1970 14:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "Sep 9, 2001 02:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "Mas 7, 2024 09:00:01" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "Jul 2, 2001 21:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "Mey 29, 1984 15:53:00" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 00:00:00 GMT-07:00" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "Mey 30, 2030 00:47:00" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 00:00:00 GMT-07:00" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "Jul 16, 1969 08:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "Jan 12, 1970 22:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "Sep 9, 2001 09:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "Mas 17, 2024 03:30:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "Jul 2, 2001 17:44:15" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Mashi 17, 2024 01:00:00 Isikhathi esivamile saseNtshonalanga Afrika" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "Mey 29, 1984 11:23:00" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Mashi 17, 2024 01:00:00 Isikhathi esivamile saseNtshonalanga Afrika" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "Mey 29, 2050 20:17:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "Jul 16, 1969 03:30:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "Jan 12, 1970 17:16:40" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 08:53:00 Isikhathi esivamile saseNtshonalanga Afrika" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "Sep 9, 2001 06:16:40" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 08:53:00 Isikhathi esivamile saseNtshonalanga Afrika" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "Mas 7, 2024 11:30:01" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Meyi 29, 2050 17:47:00 Isikhathi esivamile saseNtshonalanga Afrika" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "Jul 3, 2001 00:44:15" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Meyi 29, 2050 17:47:00 Isikhathi esivamile saseNtshonalanga Afrika" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "Mey 29, 1984 18:23:00" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 01:00:00 GMT+01:00" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "Mey 30, 2030 03:17:00" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 01:00:00 GMT+01:00" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "Jul 16, 1969 10:30:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "Jan 13, 1970 01:16:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "Sep 9, 2001 13:16:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "Mas 17, 2024 02:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "Jul 2, 2001 16:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "Mey 29, 1984 11:53:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "Mey 29, 2050 19:47:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "Jul 16, 1969 03:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "Jan 12, 1970 16:46:40" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 15:53:00 Isikhathi esivamile saseNtshonalanga Afrika" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "Sep 9, 2001 04:46:40" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 15:53:00 Isikhathi esivamile saseNtshonalanga Afrika" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "Mas 7, 2024 10:00:01" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesine, Meyi 30, 2030 00:47:00 Isikhathi esivamile saseNtshonalanga Afrika" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "Jul 2, 2001 23:14:15" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesine, Meyi 30, 2030 00:47:00 Isikhathi esivamile saseNtshonalanga Afrika" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "Mey 29, 1984 18:53:00" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 08:00:00 GMT+01:00" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "Mey 30, 2030 02:47:00" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 08:00:00 GMT+01:00" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "Jul 16, 1969 10:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "Jan 13, 1970 00:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "Sep 9, 2001 11:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "Mas 17, 2024 10:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "Jul 2, 2001 23:14:15" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Mashi 17, 2024 03:30:00 Isikhathi sase-Iran esivamile" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "Mey 29, 1984 17:53:00" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Mashi 17, 2024 03:30:00 Isikhathi sase-Iran esivamile" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "Mey 30, 2050 02:47:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "Jul 16, 1969 10:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "Jan 12, 1970 23:46:40" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 11:23:00 Isikhathi sase-Iran esivamile" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "Sep 9, 2001 11:46:40" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 11:23:00 Isikhathi sase-Iran esivamile" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "Mas 7, 2024 18:00:01" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Meyi 29, 2050 20:17:00 Isikhathi sase-Iran esivamile" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "Jul 3, 2001 06:14:15" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Meyi 29, 2050 20:17:00 Isikhathi sase-Iran esivamile" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "Mey 30, 1984 00:53:00" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 03:30:00 GMT+03:30" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "Mey 30, 2030 09:47:00" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 03:30:00 GMT+03:30" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "Jul 16, 1969 17:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "Jan 13, 1970 07:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "Sep 9, 2001 18:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "Mas 17, 2024 09:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "Jul 2, 2001 22:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "Mey 29, 1984 16:53:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "Mey 30, 2050 01:47:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "Jul 16, 1969 09:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "Jan 12, 1970 22:46:40" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 18:23:00 Isikhathi sase-Iran esivamile" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "Sep 9, 2001 10:46:40" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 18:23:00 Isikhathi sase-Iran esivamile" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "Mas 7, 2024 17:00:01" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesine, Meyi 30, 2030 03:17:00 Isikhathi sase-Iran esivamile" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "Jul 3, 2001 05:14:15" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesine, Meyi 30, 2030 03:17:00 Isikhathi sase-Iran esivamile" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "Mey 29, 1984 23:53:00" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 10:30:00 GMT+03:30" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "Mey 30, 2030 08:47:00" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 10:30:00 GMT+03:30" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "Jul 16, 1969 16:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "Jan 13, 1970 06:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "Sep 9, 2001 17:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "Mas 16, 2024 21:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "Jul 2, 2001 10:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "Mey 29, 1984 04:53:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "Mey 29, 2050 13:47:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "Jul 15, 1969 21:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "Jan 12, 1970 10:46:40" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 11:53:00 Isikhathi sasehlobo e-Moscow" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "Sep 8, 2001 22:46:40" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 11:53:00 Isikhathi sasehlobo e-Moscow" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "Mas 7, 2024 05:00:01" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "Jul 2, 2001 17:14:15" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "Mey 29, 1984 11:53:00" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 03:00:00 GMT+03:00" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "Mey 29, 2030 20:47:00" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 03:00:00 GMT+03:00" }, { - "dateLength": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "Jul 16, 1969 04:00:00" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "Jan 12, 1970 18:46:40" + "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": "medium", - "timeLength": "medium", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "Sep 9, 2001 05:46:40" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "Mashi 16, 2024 17:00:00 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "Julayi 2, 2001 06:14:15 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 1984 00:53:00 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 2050 09:47:00 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "Julayi 15, 1969 17:00:00 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "Januwari 12, 1970 05:46:40 GMT-8" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 18:53:00 Isikhathi sasehlobo e-Moscow" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "Septhemba 8, 2001 18:46:40 GMT-7" + "input": "1984-05-29T18:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 18:53:00 Isikhathi sasehlobo e-Moscow" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "Mashi 7, 2024 00:00:01 GMT-8" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "Julayi 2, 2001 13:14:15 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 1984 07:53:00 GMT-7" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 10:00:00 GMT+03:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 2030 16:47:00 GMT-7" + "input": "1969-07-16T10:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 10:00:00 GMT+03:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "Julayi 16, 1969 00:00:00 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "Januwari 12, 1970 13:46:40 GMT-8" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "Septhemba 9, 2001 01:46:40 GMT-7" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "Mashi 17, 2024 01:00:00 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "Julayi 2, 2001 14:14:15 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "Meyi 29, 1984 08:53:00 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "Meyi 29, 2050 17:47:00 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "Julayi 16, 1969 01:00:00 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "Januwari 12, 1970 14:46:40 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "Septhemba 9, 2001 02:46:40 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "Mashi 7, 2024 09:00:01 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "Julayi 2, 2001 21:14:15 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "Meyi 29, 1984 15:53:00 GMT+1" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 10:00:00 GMT+10:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "Meyi 30, 2030 00:47:00 GMT+1" + "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 10:00:00 GMT+10:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "Julayi 16, 1969 08:00:00 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "Januwari 12, 1970 22:46:40 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "Septhemba 9, 2001 09:46:40 GMT+1" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "Mashi 17, 2024 03:30:00 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "Julayi 2, 2001 17:44:15 GMT+4:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "Meyi 29, 1984 11:23:00 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "Meyi 29, 2050 20:17:00 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "Julayi 16, 1969 03:30:00 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "Januwari 12, 1970 17:16:40 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "Septhemba 9, 2001 06:16:40 GMT+4:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "Mashi 7, 2024 11:30:01 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "Julayi 3, 2001 00:44:15 GMT+4:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "Meyi 29, 1984 18:23:00 GMT+3:30" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 17:00:00 GMT+10:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "Meyi 30, 2030 03:17:00 GMT+3:30" + "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 17:00:00 GMT+10:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "Julayi 16, 1969 10:30:00 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "Januwari 13, 1970 01:16:40 GMT+3:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "Septhemba 9, 2001 13:16:40 GMT+4:30" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "Mashi 17, 2024 02:00:00 GMT+2" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "Julayi 2, 2001 16:14:15 GMT+3" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Mashi 17, 2024 09:00:00 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "Meyi 29, 1984 11:53:00 GMT+4" + "input": "2024-03-17T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Mashi 17, 2024 09:00:00 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "Meyi 29, 2050 19:47:00 GMT+3" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Julayi 2, 2001 22:14:15 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "Julayi 16, 1969 03:00:00 GMT+3" + "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Julayi 2, 2001 22:14:15 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "Januwari 12, 1970 16:46:40 GMT+3" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 16:53:00 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "Septhemba 9, 2001 04:46:40 GMT+3" + "input": "1984-05-29T16:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 16:53:00 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "Mashi 7, 2024 10:00:01 GMT+2" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Meyi 30, 2050 01:47:00 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "Julayi 2, 2001 23:14:15 GMT+3" + "input": "2050-05-30T01:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Meyi 30, 2050 01:47:00 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "Meyi 29, 1984 18:53:00 GMT+4" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 09:00:00 GMT+09:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "Meyi 30, 2030 02:47:00 GMT+3" + "input": "1969-07-16T09:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 09:00:00 GMT+09:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "Julayi 16, 1969 10:00:00 GMT+3" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Januwari 12, 1970 22:46:40 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "Januwari 13, 1970 00:46:40 GMT+3" + "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Januwari 12, 1970 22:46:40 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "Septhemba 9, 2001 11:46:40 GMT+3" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Septhemba 9, 2001 10:46:40 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "Mashi 17, 2024 10:00:00 GMT+10" + "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Septhemba 9, 2001 10:46:40 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "Julayi 2, 2001 23:14:15 GMT+10" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ULwesine, Mashi 7, 2024 17:00:01 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "Meyi 29, 1984 17:53:00 GMT+10" + "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ULwesine, Mashi 7, 2024 17:00:01 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 2050 02:47:00 GMT+10" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Julayi 3, 2001 05:14:15 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "Julayi 16, 1969 10:00:00 GMT+10" + "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Julayi 3, 2001 05:14:15 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "Januwari 12, 1970 23:46:40 GMT+10" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 23:53:00 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "Septhemba 9, 2001 11:46:40 GMT+10" + "input": "1984-05-29T23:53+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 23:53:00 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "Mashi 7, 2024 18:00:01 GMT+10" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ULwesine, Meyi 30, 2030 08:47:00 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "Julayi 3, 2001 06:14:15 GMT+10" + "input": "2030-05-30T08:47+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ULwesine, Meyi 30, 2030 08:47:00 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 1984 00:53:00 GMT+10" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 16:00:00 GMT+09:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 2030 09:47:00 GMT+10" + "input": "1969-07-16T16:00+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 16:00:00 GMT+09:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "Julayi 16, 1969 17:00:00 GMT+10" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Januwari 13, 1970 06:46:40 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "Januwari 13, 1970 07:46:40 GMT+10" + "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Januwari 13, 1970 06:46:40 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "Septhemba 9, 2001 18:46:40 GMT+10" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Septhemba 9, 2001 17:46:40 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "Mashi 17, 2024 09:00:00 GMT+9" + "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Septhemba 9, 2001 17:46:40 Isikhathi sase-Palau" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "Julayi 2, 2001 22:14:15 GMT+9" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "UMgqibelo, Mashi 16, 2024 21:00:00 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "Meyi 29, 1984 16:53:00 GMT+9" + "input": "2024-03-16T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "UMgqibelo, Mashi 16, 2024 21:00:00 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "Meyi 30, 2050 01:47:00 GMT+9" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "Julayi 16, 1969 09:00:00 GMT+9" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "Januwari 12, 1970 22:46:40 GMT+9" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 04:53:00 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "Septhemba 9, 2001 10:46:40 GMT+9" + "input": "1984-05-29T04:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 04:53:00 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "Mashi 7, 2024 17:00:01 GMT+9" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Meyi 29, 2050 13:47:00 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "Julayi 3, 2001 05:14:15 GMT+9" + "input": "2050-05-29T13:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Meyi 29, 2050 13:47:00 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "Meyi 29, 1984 23:53:00 GMT+9" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Julayi 15, 1969 21:00:00 GMT-03:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "Meyi 30, 2030 08:47:00 GMT+9" + "input": "1969-07-15T21:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Julayi 15, 1969 21:00:00 GMT-03:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "Julayi 16, 1969 16:00:00 GMT+9" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "Januwari 13, 1970 06:46:40 GMT+9" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "Septhemba 9, 2001 17:46:40 GMT+9" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "Mashi 16, 2024 21:00:00 GMT-3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "Julayi 2, 2001 10:14:15 GMT-3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "Meyi 29, 1984 04:53:00 GMT-3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "Meyi 29, 2050 13:47:00 GMT-3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "Julayi 15, 1969 21:00:00 GMT-3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "Januwari 12, 1970 10:46:40 GMT-3" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 11:53:00 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "Septhemba 8, 2001 22:46:40 GMT-3" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 11:53:00 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "Mashi 7, 2024 05:00:01 GMT-3" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Meyi 29, 2030 20:47:00 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "Julayi 2, 2001 17:14:15 GMT-3" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Meyi 29, 2030 20:47:00 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "Meyi 29, 1984 11:53:00 GMT-3" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 04:00:00 GMT-03:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "Meyi 29, 2030 20:47:00 GMT-3" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 04:00:00 GMT-03:00" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "Julayi 16, 1969 04:00:00 GMT-3" + "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": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "Januwari 12, 1970 18:46:40 GMT-3" + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Januwari 12, 1970 18:46:40 Isikhathi sase-Uruguay esijwayelekile" }, { - "dateLength": "long", - "timeLength": "long", + "dateLength": "full", + "timeLength": "full", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "Septhemba 9, 2001 05:46:40 GMT-3" + "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]", - "expected": "UMgqibelo, Mashi 16, 2024 17:00:00 Isikhathi sase-North American Pacific sasemini" + "dateTimeFormatType": "standard", + "expected": "UMgqibelo, Mashi 16, 2024 17:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "UMsombuluko, Julayi 2, 2001 06:14:15 Isikhathi sase-North American Pacific sasemini" + "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "UMgqibelo, Mashi 16, 2024 17:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "ULwesibili, Meyi 29, 1984 00:53:00 Isikhathi sase-North American Pacific sasemini" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Julayi 2, 2001 06:14" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "ISonto, Meyi 29, 2050 09:47:00 Isikhathi sase-North American Pacific sasemini" + "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Julayi 2, 2001 06:14" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "ULwesibili, Julayi 15, 1969 17:00:00 GMT-07:00" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 00:53" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "UMsombuluko, Januwari 12, 1970 05:46:40 Isikhathi sase-North American Pacific esijwayelekile" + "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 00:53" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "UMgqibelo, Septhemba 8, 2001 18:46:40 Isikhathi sase-North American Pacific sasemini" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Meyi 29, 2050 09:47" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "ULwesine, Mashi 7, 2024 00:00:01 Isikhathi sase-North American Pacific esijwayelekile" + "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Meyi 29, 2050 09:47" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "UMsombuluko, Julayi 2, 2001 13:14:15 Isikhathi sase-North American Pacific sasemini" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Julayi 15, 1969 17:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "ULwesibili, Meyi 29, 1984 07:53:00 Isikhathi sase-North American Pacific sasemini" + "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Julayi 15, 1969 17:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "ULwesithathu, Meyi 29, 2030 16:47:00 Isikhathi sase-North American Pacific sasemini" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Januwari 12, 1970 05:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "ULwesithathu, Julayi 16, 1969 00:00:00 GMT-07:00" + "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Januwari 12, 1970 05:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "UMsombuluko, Januwari 12, 1970 13:46:40 Isikhathi sase-North American Pacific esijwayelekile" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "UMgqibelo, Septhemba 8, 2001 18:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "ISonto, Septhemba 9, 2001 01:46:40 Isikhathi sase-North American Pacific sasemini" + "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "UMgqibelo, Septhemba 8, 2001 18:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "ISonto, Mashi 17, 2024 01:00:00 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "ULwesine, Mashi 7, 2024 00:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "UMsombuluko, Julayi 2, 2001 14:14:15 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "ULwesine, Mashi 7, 2024 00:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "ULwesibili, Meyi 29, 1984 08:53:00 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Julayi 2, 2001 13:14" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "ISonto, Meyi 29, 2050 17:47:00 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Julayi 2, 2001 13:14" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "ULwesithathu, Julayi 16, 1969 01:00:00 GMT+01:00" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 07:53" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "UMsombuluko, Januwari 12, 1970 14:46:40 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 07:53" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "ISonto, Septhemba 9, 2001 02:46:40 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Meyi 29, 2030 16:47" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "ULwesine, Mashi 7, 2024 09:00:01 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Meyi 29, 2030 16:47" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "UMsombuluko, Julayi 2, 2001 21:14:15 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 00:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "ULwesibili, Meyi 29, 1984 15:53:00 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 00:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "ULwesine, Meyi 30, 2030 00:47:00 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Januwari 12, 1970 13:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "ULwesithathu, Julayi 16, 1969 08:00:00 GMT+01:00" + "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Januwari 12, 1970 13:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "UMsombuluko, Januwari 12, 1970 22:46:40 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Septhemba 9, 2001 01:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "ISonto, Septhemba 9, 2001 09:46:40 Isikhathi esivamile saseNtshonalanga Afrika" + "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Septhemba 9, 2001 01:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "ISonto, Mashi 17, 2024 03:30:00 Isikhathi sase-Iran esivamile" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Mashi 17, 2024 01:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "UMsombuluko, Julayi 2, 2001 17:44:15 Isikhathi sase-Iran sasemini" + "input": "2024-03-17T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Mashi 17, 2024 01:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "ULwesibili, Meyi 29, 1984 11:23:00 Isikhathi sase-Iran esivamile" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Julayi 2, 2001 14:14" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "ISonto, Meyi 29, 2050 20:17:00 Isikhathi sase-Iran esivamile" + "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Julayi 2, 2001 14:14" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "ULwesithathu, Julayi 16, 1969 03:30:00 GMT+03:30" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 08:53" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "UMsombuluko, Januwari 12, 1970 17:16:40 Isikhathi sase-Iran esivamile" + "input": "1984-05-29T08:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 08:53" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "ISonto, Septhemba 9, 2001 06:16:40 Isikhathi sase-Iran sasemini" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Meyi 29, 2050 17:47" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "ULwesine, Mashi 7, 2024 11:30:01 Isikhathi sase-Iran esivamile" + "input": "2050-05-29T17:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Meyi 29, 2050 17:47" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "ULwesibili, Julayi 3, 2001 00:44:15 Isikhathi sase-Iran sasemini" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 01:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "ULwesibili, Meyi 29, 1984 18:23:00 Isikhathi sase-Iran esivamile" + "input": "1969-07-16T01:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 01:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "ULwesine, Meyi 30, 2030 03:17:00 Isikhathi sase-Iran esivamile" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Januwari 12, 1970 14:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "ULwesithathu, Julayi 16, 1969 10:30:00 GMT+03:30" + "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Januwari 12, 1970 14:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "ULwesibili, Januwari 13, 1970 01:16:40 Isikhathi sase-Iran esivamile" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Septhemba 9, 2001 02:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "ISonto, Septhemba 9, 2001 13:16:40 Isikhathi sase-Iran sasemini" + "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Septhemba 9, 2001 02:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "ISonto, Mashi 17, 2024 02:00:00 Isikhathi esijwayelekile sase-Eastern Europe" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesine, Mashi 7, 2024 09:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "UMsombuluko, Julayi 2, 2001 16:14:15 Isikhathi sasehlobo sase-Eastern Europe" + "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesine, Mashi 7, 2024 09:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "ULwesibili, Meyi 29, 1984 11:53:00 Isikhathi sasehlobo e-Moscow" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Julayi 2, 2001 21:14" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "ISonto, Meyi 29, 2050 19:47:00 Isikhathi sasehlobo sase-Eastern Europe" + "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Julayi 2, 2001 21:14" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "ULwesithathu, Julayi 16, 1969 03:00:00 GMT+03:00" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 15:53" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "UMsombuluko, Januwari 12, 1970 16:46:40 Isikhathi sase-Moscow esijwayelekile" + "input": "1984-05-29T15:53+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 15:53" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "ISonto, Septhemba 9, 2001 04:46:40 Isikhathi sasehlobo sase-Eastern Europe" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesine, Meyi 30, 2030 00:47" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "ULwesine, Mashi 7, 2024 10:00:01 Isikhathi esijwayelekile sase-Eastern Europe" + "input": "2030-05-30T00:47+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesine, Meyi 30, 2030 00:47" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "UMsombuluko, Julayi 2, 2001 23:14:15 Isikhathi sasehlobo sase-Eastern Europe" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 08:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "ULwesibili, Meyi 29, 1984 18:53:00 Isikhathi sasehlobo e-Moscow" + "input": "1969-07-16T08:00+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 08:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "ULwesine, Meyi 30, 2030 02:47:00 Isikhathi sasehlobo sase-Eastern Europe" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Januwari 12, 1970 22:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "ULwesithathu, Julayi 16, 1969 10:00:00 GMT+03:00" + "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Januwari 12, 1970 22:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "ULwesibili, Januwari 13, 1970 00:46:40 Isikhathi sase-Moscow esijwayelekile" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Septhemba 9, 2001 09:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "ISonto, Septhemba 9, 2001 11:46:40 Isikhathi sasehlobo sase-Eastern Europe" + "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Septhemba 9, 2001 09:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "ISonto, Mashi 17, 2024 10:00:00 Isikhathi esivamile sase-Australian East" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Mashi 17, 2024 03:30" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "UMsombuluko, Julayi 2, 2001 23:14:15 Isikhathi esivamile sase-Australian East" + "input": "2024-03-17T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Mashi 17, 2024 03:30" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "ULwesibili, Meyi 29, 1984 17:53:00 Isikhathi esivamile sase-Australian East" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Julayi 2, 2001 17:44" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "UMsombuluko, Meyi 30, 2050 02:47:00 Isikhathi esivamile sase-Australian East" + "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Julayi 2, 2001 17:44" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "ULwesithathu, Julayi 16, 1969 10:00:00 GMT+10:00" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 11:23" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "UMsombuluko, Januwari 12, 1970 23:46:40 Isikhathi esivamile sase-Australian East" + "input": "1984-05-29T11:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 11:23" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "ISonto, Septhemba 9, 2001 11:46:40 Isikhathi esivamile sase-Australian East" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Meyi 29, 2050 20:17" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "ULwesine, Mashi 7, 2024 18:00:01 Isikhathi esivamile sase-Australian East" + "input": "2050-05-29T20:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Meyi 29, 2050 20:17" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "ULwesibili, Julayi 3, 2001 06:14:15 Isikhathi esivamile sase-Australian East" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 03:30" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "ULwesithathu, Meyi 30, 1984 00:53:00 Isikhathi esivamile sase-Australian East" + "input": "1969-07-16T03:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 03:30" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "ULwesine, Meyi 30, 2030 09:47:00 Isikhathi esivamile sase-Australian East" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Januwari 12, 1970 17:16" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "ULwesithathu, Julayi 16, 1969 17:00:00 GMT+10:00" + "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Januwari 12, 1970 17:16" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "ULwesibili, Januwari 13, 1970 07:46:40 Isikhathi esivamile sase-Australian East" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Septhemba 9, 2001 06:16" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "ISonto, Septhemba 9, 2001 18:46:40 Isikhathi esivamile sase-Australian East" + "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Septhemba 9, 2001 06:16" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "ISonto, Mashi 17, 2024 09:00:00 Isikhathi sase-Palau" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesine, Mashi 7, 2024 11:30" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "UMsombuluko, Julayi 2, 2001 22:14:15 Isikhathi sase-Palau" + "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesine, Mashi 7, 2024 11:30" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "ULwesibili, Meyi 29, 1984 16:53:00 Isikhathi sase-Palau" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Julayi 3, 2001 00:44" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "UMsombuluko, Meyi 30, 2050 01:47:00 Isikhathi sase-Palau" + "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Julayi 3, 2001 00:44" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "ULwesithathu, Julayi 16, 1969 09:00:00 GMT+09:00" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 18:23" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "UMsombuluko, Januwari 12, 1970 22:46:40 Isikhathi sase-Palau" + "input": "1984-05-29T18:23+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 18:23" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "ISonto, Septhemba 9, 2001 10:46:40 Isikhathi sase-Palau" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesine, Meyi 30, 2030 03:17" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "ULwesine, Mashi 7, 2024 17:00:01 Isikhathi sase-Palau" + "input": "2030-05-30T03:17+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesine, Meyi 30, 2030 03:17" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "ULwesibili, Julayi 3, 2001 05:14:15 Isikhathi sase-Palau" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 10:30" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "ULwesibili, Meyi 29, 1984 23:53:00 Isikhathi sase-Palau" + "input": "1969-07-16T10:30+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 10:30" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "ULwesine, Meyi 30, 2030 08:47:00 Isikhathi sase-Palau" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Januwari 13, 1970 01:16" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "ULwesithathu, Julayi 16, 1969 16:00:00 GMT+09:00" + "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Januwari 13, 1970 01:16" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "ULwesibili, Januwari 13, 1970 06:46:40 Isikhathi sase-Palau" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Septhemba 9, 2001 13:16" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "ISonto, Septhemba 9, 2001 17:46:40 Isikhathi sase-Palau" + "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Septhemba 9, 2001 13:16" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "UMgqibelo, Mashi 16, 2024 21:00:00 Isikhathi sase-Uruguay esijwayelekile" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Mashi 17, 2024 02:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "UMsombuluko, Julayi 2, 2001 10:14:15 Isikhathi sase-Uruguay esijwayelekile" + "input": "2024-03-17T02:00+02:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Mashi 17, 2024 02:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "ULwesibili, Meyi 29, 1984 04:53:00 Isikhathi sase-Uruguay esijwayelekile" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Julayi 2, 2001 16:14" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "ISonto, Meyi 29, 2050 13:47:00 Isikhathi sase-Uruguay esijwayelekile" + "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Julayi 2, 2001 16:14" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "ULwesibili, Julayi 15, 1969 21:00:00 GMT-03:00" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 11:53" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "UMsombuluko, Januwari 12, 1970 10:46:40 Isikhathi sase-Uruguay esijwayelekile" + "input": "1984-05-29T11:53+04:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "ULwesibili, Meyi 29, 1984 11:53" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "UMgqibelo, Septhemba 8, 2001 22:46:40 Isikhathi sase-Uruguay esijwayelekile" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Meyi 29, 2050 19:47" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "ULwesine, Mashi 7, 2024 05:00:01 Isikhathi sase-Uruguay esijwayelekile" + "input": "2050-05-29T19:47+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "ISonto, Meyi 29, 2050 19:47" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "UMsombuluko, Julayi 2, 2001 17:14:15 Isikhathi sase-Uruguay esijwayelekile" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 03:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "ULwesibili, Meyi 29, 1984 11:53:00 Isikhathi sase-Uruguay esijwayelekile" + "input": "1969-07-16T03:00+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "ULwesithathu, Julayi 16, 1969 03:00" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "ULwesithathu, Meyi 29, 2030 20:47:00 Isikhathi sase-Uruguay esijwayelekile" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Januwari 12, 1970 16:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "ULwesithathu, Julayi 16, 1969 04:00:00 GMT-03:00" + "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Januwari 12, 1970 16:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "UMsombuluko, Januwari 12, 1970 18:46:40 Isikhathi sase-Uruguay esijwayelekile" + "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Septhemba 9, 2001 04:46" }, { "dateLength": "full", - "timeLength": "full", + "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "ISonto, Septhemba 9, 2001 05:46:40 Isikhathi sase-Uruguay esijwayelekile" + "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-16T17:00-07:00[America/Los_Angeles]", - "expected": "UMgqibelo, Mashi 16, 2024 17:00" + "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": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "UMsombuluko, Julayi 2, 2001 06:14" + "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": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "ULwesibili, Meyi 29, 1984 00:53" + "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": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "ISonto, Meyi 29, 2050 09:47" + "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": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "ULwesibili, Julayi 15, 1969 17:00" + "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": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "UMsombuluko, Januwari 12, 1970 05:46" + "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": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "UMgqibelo, Septhemba 8, 2001 18:46" + "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": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "ULwesine, Mashi 7, 2024 00:00" + "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": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "UMsombuluko, Julayi 2, 2001 13:14" + "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": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "ULwesibili, Meyi 29, 1984 07:53" + "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": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "ULwesithathu, Meyi 29, 2030 16:47" + "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": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "ULwesithathu, Julayi 16, 1969 00:00" + "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": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "UMsombuluko, Januwari 12, 1970 13:46" + "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-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "ISonto, Septhemba 9, 2001 01:46" + "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-17T01:00+01:00[Africa/Luanda]", - "expected": "ISonto, Mashi 17, 2024 01:00" + "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": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "UMsombuluko, Julayi 2, 2001 14:14" + "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": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "ULwesibili, Meyi 29, 1984 08:53" + "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": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "ISonto, Meyi 29, 2050 17:47" + "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": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "ULwesithathu, Julayi 16, 1969 01:00" + "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": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "UMsombuluko, Januwari 12, 1970 14:46" + "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": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "ISonto, Septhemba 9, 2001 02:46" + "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": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "ULwesine, Mashi 7, 2024 09:00" + "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": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "UMsombuluko, Julayi 2, 2001 21:14" + "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": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "ULwesibili, Meyi 29, 1984 15:53" + "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": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "ULwesine, Meyi 30, 2030 00:47" + "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": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "ULwesithathu, Julayi 16, 1969 08:00" + "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": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "UMsombuluko, Januwari 12, 1970 22:46" + "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-09T09:46:40+01:00[Africa/Luanda]", - "expected": "ISonto, Septhemba 9, 2001 09:46" + "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-17T03:30+03:30[Asia/Tehran]", - "expected": "ISonto, Mashi 17, 2024 03:30" + "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": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "UMsombuluko, Julayi 2, 2001 17:44" + "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": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "ULwesibili, Meyi 29, 1984 11:23" + "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": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "ISonto, Meyi 29, 2050 20:17" + "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": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "ULwesithathu, Julayi 16, 1969 03:30" + "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": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "UMsombuluko, Januwari 12, 1970 17:16" + "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": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "ISonto, Septhemba 9, 2001 06:16" + "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": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "ULwesine, Mashi 7, 2024 11:30" + "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": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "ULwesibili, Julayi 3, 2001 00:44" + "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": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "ULwesibili, Meyi 29, 1984 18:23" + "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": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "ULwesine, Meyi 30, 2030 03:17" + "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": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "ULwesithathu, Julayi 16, 1969 10:30" + "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": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "ULwesibili, Januwari 13, 1970 01:16" + "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-09T13:16:40+04:30[Asia/Tehran]", - "expected": "ISonto, Septhemba 9, 2001 13:16" + "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-17T02:00+02:00[Europe/Kiev]", - "expected": "ISonto, Mashi 17, 2024 02:00" + "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": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "UMsombuluko, Julayi 2, 2001 16:14" + "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": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "ULwesibili, Meyi 29, 1984 11:53" + "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": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "ISonto, Meyi 29, 2050 19:47" + "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": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "ULwesithathu, Julayi 16, 1969 03:00" + "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": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "UMsombuluko, Januwari 12, 1970 16:46" + "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": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "ISonto, Septhemba 9, 2001 04:46" + "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": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "ULwesine, Mashi 7, 2024 10:00" + "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": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "UMsombuluko, Julayi 2, 2001 23:14" + "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": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "ULwesibili, Meyi 29, 1984 18:53" + "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": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "ULwesine, Meyi 30, 2030 02:47" + "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": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "ULwesithathu, Julayi 16, 1969 10:00" + "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": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "ULwesibili, Januwari 13, 1970 00:46" + "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-09T11:46:40+03:00[Europe/Kiev]", - "expected": "ISonto, Septhemba 9, 2001 11:46" + "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-17T10:00+10:00[Australia/Brisbane]", - "expected": "ISonto, Mashi 17, 2024 10:00" + "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": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "UMsombuluko, Julayi 2, 2001 23:14" + "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": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "ULwesibili, Meyi 29, 1984 17:53" + "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": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "UMsombuluko, Meyi 30, 2050 02:47" + "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": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "ULwesithathu, Julayi 16, 1969 10:00" + "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": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "UMsombuluko, Januwari 12, 1970 23:46" + "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": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "ISonto, Septhemba 9, 2001 11:46" + "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": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "ULwesine, Mashi 7, 2024 18:00" + "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": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "ULwesibili, Julayi 3, 2001 06:14" + "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": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "ULwesithathu, Meyi 30, 1984 00:53" + "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": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "ULwesine, Meyi 30, 2030 09:47" + "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": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "ULwesithathu, Julayi 16, 1969 17:00" + "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": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "ULwesibili, Januwari 13, 1970 07:46" + "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-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "ISonto, Septhemba 9, 2001 18:46" + "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-17T09:00+09:00[Pacific/Palau]", - "expected": "ISonto, Mashi 17, 2024 09:00" + "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": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "UMsombuluko, Julayi 2, 2001 22:14" + "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": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "ULwesibili, Meyi 29, 1984 16:53" + "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": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "UMsombuluko, Meyi 30, 2050 01:47" + "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": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "ULwesithathu, Julayi 16, 1969 09:00" + "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": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "UMsombuluko, Januwari 12, 1970 22:46" + "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": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "ISonto, Septhemba 9, 2001 10:46" + "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": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "ULwesine, Mashi 7, 2024 17:00" + "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": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "ULwesibili, Julayi 3, 2001 05:14" + "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": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "ULwesibili, Meyi 29, 1984 23:53" + "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": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "ULwesine, Meyi 30, 2030 08:47" + "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": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "ULwesithathu, Julayi 16, 1969 16:00" + "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": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "ULwesibili, Januwari 13, 1970 06:46" + "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-09T17:46:40+09:00[Pacific/Palau]", - "expected": "ISonto, Septhemba 9, 2001 17:46" + "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "UMgqibelo, Septhemba 8, 2001 22:46" }, { "dateLength": "full", "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "UMgqibelo, Mashi 16, 2024 21:00" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ULwesine, Mashi 7, 2024 05:00" }, { "dateLength": "full", "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "UMsombuluko, Julayi 2, 2001 10:14" + "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "ULwesine, Mashi 7, 2024 05:00" }, { "dateLength": "full", "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "ULwesibili, Meyi 29, 1984 04:53" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "UMsombuluko, Julayi 2, 2001 17:14" }, { "dateLength": "full", "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "ISonto, Meyi 29, 2050 13:47" + "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "expected": "UMsombuluko, Julayi 2, 2001 17:14" }, { "dateLength": "full", "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "ULwesibili, Julayi 15, 1969 21:00" + "input": "1984-05-29T11:53-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ULwesibili, Meyi 29, 1984 11:53" }, { "dateLength": "full", "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "UMsombuluko, Januwari 12, 1970 10:46" + "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": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "UMgqibelo, Septhemba 8, 2001 22:46" + "input": "2030-05-29T20:47-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Meyi 29, 2030 20:47" }, { "dateLength": "full", "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "ULwesine, Mashi 7, 2024 05:00" + "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": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "UMsombuluko, Julayi 2, 2001 17:14" + "input": "1969-07-16T04:00-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ULwesithathu, Julayi 16, 1969 04:00" }, { "dateLength": "full", "timeLength": "short", "calendar": "gregorian", "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "ULwesibili, Meyi 29, 1984 11:53" + "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": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "ULwesithathu, Meyi 29, 2030 20:47" + "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": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "ULwesithathu, Julayi 16, 1969 04:00" + "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", + "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]", - "expected": "UMsombuluko, Januwari 12, 1970 18:46" + "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "standard", + "expected": "ISonto, Septhemba 9, 2001 05:46" }, { "dateLength": "full", @@ -56837,6 +110736,7 @@ "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", + "dateTimeFormatType": "atTime", "expected": "ISonto, Septhemba 9, 2001 05:46" }, { @@ -56844,1371 +110744,1371 @@ "calendar": "gregorian", "locale": "zu", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "Mashi 16, 2024 17:00:00 GMT-7" + "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 06:14:15 GMT-7" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 1984 00:53:00 GMT-7" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 2050 09:47:00 GMT-7" + "expected": "Meyi 29, 2050" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "Julayi 15, 1969 17:00:00 GMT-7" + "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 05:46:40 GMT-8" + "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 18:46:40 GMT-7" + "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 00:00:01 GMT-8" + "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 13:14:15 GMT-7" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 1984 07:53:00 GMT-7" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 2030 16:47:00 GMT-7" + "expected": "Meyi 29, 2030" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "Julayi 16, 1969 00:00:00 GMT-7" + "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 13:46:40 GMT-8" + "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 01:46:40 GMT-7" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "Mashi 17, 2024 01:00:00 GMT+1" + "expected": "Mashi 17, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "Julayi 2, 2001 14:14:15 GMT+1" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "Meyi 29, 1984 08:53:00 GMT+1" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "Meyi 29, 2050 17:47:00 GMT+1" + "expected": "Meyi 29, 2050" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "Julayi 16, 1969 01:00:00 GMT+1" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "Januwari 12, 1970 14:46:40 GMT+1" + "expected": "Januwari 12, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "Septhemba 9, 2001 02:46:40 GMT+1" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "Mashi 7, 2024 09:00:01 GMT+1" + "expected": "Mashi 7, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "Julayi 2, 2001 21:14:15 GMT+1" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "Meyi 29, 1984 15:53:00 GMT+1" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "Meyi 30, 2030 00:47:00 GMT+1" + "expected": "Meyi 30, 2030" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "Julayi 16, 1969 08:00:00 GMT+1" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "Januwari 12, 1970 22:46:40 GMT+1" + "expected": "Januwari 12, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "Septhemba 9, 2001 09:46:40 GMT+1" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "Mashi 17, 2024 03:30:00 GMT+3:30" + "expected": "Mashi 17, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "Julayi 2, 2001 17:44:15 GMT+4:30" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "Meyi 29, 1984 11:23:00 GMT+3:30" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "Meyi 29, 2050 20:17:00 GMT+3:30" + "expected": "Meyi 29, 2050" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "Julayi 16, 1969 03:30:00 GMT+3:30" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "Januwari 12, 1970 17:16:40 GMT+3:30" + "expected": "Januwari 12, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "Septhemba 9, 2001 06:16:40 GMT+4:30" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "Mashi 7, 2024 11:30:01 GMT+3:30" + "expected": "Mashi 7, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "Julayi 3, 2001 00:44:15 GMT+4:30" + "expected": "Julayi 3, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "Meyi 29, 1984 18:23:00 GMT+3:30" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "Meyi 30, 2030 03:17:00 GMT+3:30" + "expected": "Meyi 30, 2030" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "Julayi 16, 1969 10:30:00 GMT+3:30" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "Januwari 13, 1970 01:16:40 GMT+3:30" + "expected": "Januwari 13, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "Septhemba 9, 2001 13:16:40 GMT+4:30" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "Mashi 17, 2024 02:00:00 GMT+2" + "expected": "Mashi 17, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "Julayi 2, 2001 16:14:15 GMT+3" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "Meyi 29, 1984 11:53:00 GMT+4" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "Meyi 29, 2050 19:47:00 GMT+3" + "expected": "Meyi 29, 2050" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "Julayi 16, 1969 03:00:00 GMT+3" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "Januwari 12, 1970 16:46:40 GMT+3" + "expected": "Januwari 12, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "Septhemba 9, 2001 04:46:40 GMT+3" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "Mashi 7, 2024 10:00:01 GMT+2" + "expected": "Mashi 7, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "Julayi 2, 2001 23:14:15 GMT+3" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "Meyi 29, 1984 18:53:00 GMT+4" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "Meyi 30, 2030 02:47:00 GMT+3" + "expected": "Meyi 30, 2030" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "Julayi 16, 1969 10:00:00 GMT+3" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "Januwari 13, 1970 00:46:40 GMT+3" + "expected": "Januwari 13, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "Septhemba 9, 2001 11:46:40 GMT+3" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "Mashi 17, 2024 10:00:00 GMT+10" + "expected": "Mashi 17, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "Julayi 2, 2001 23:14:15 GMT+10" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "Meyi 29, 1984 17:53:00 GMT+10" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 2050 02:47:00 GMT+10" + "expected": "Meyi 30, 2050" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "Julayi 16, 1969 10:00:00 GMT+10" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "Januwari 12, 1970 23:46:40 GMT+10" + "expected": "Januwari 12, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "Septhemba 9, 2001 11:46:40 GMT+10" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "Mashi 7, 2024 18:00:01 GMT+10" + "expected": "Mashi 7, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "Julayi 3, 2001 06:14:15 GMT+10" + "expected": "Julayi 3, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 1984 00:53:00 GMT+10" + "expected": "Meyi 30, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 2030 09:47:00 GMT+10" + "expected": "Meyi 30, 2030" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "Julayi 16, 1969 17:00:00 GMT+10" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "Januwari 13, 1970 07:46:40 GMT+10" + "expected": "Januwari 13, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "Septhemba 9, 2001 18:46:40 GMT+10" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "Mashi 17, 2024 09:00:00 GMT+9" + "expected": "Mashi 17, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "Julayi 2, 2001 22:14:15 GMT+9" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "Meyi 29, 1984 16:53:00 GMT+9" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "Meyi 30, 2050 01:47:00 GMT+9" + "expected": "Meyi 30, 2050" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "Julayi 16, 1969 09:00:00 GMT+9" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "Januwari 12, 1970 22:46:40 GMT+9" + "expected": "Januwari 12, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "Septhemba 9, 2001 10:46:40 GMT+9" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "Mashi 7, 2024 17:00:01 GMT+9" + "expected": "Mashi 7, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "Julayi 3, 2001 05:14:15 GMT+9" + "expected": "Julayi 3, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "Meyi 29, 1984 23:53:00 GMT+9" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "Meyi 30, 2030 08:47:00 GMT+9" + "expected": "Meyi 30, 2030" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "Julayi 16, 1969 16:00:00 GMT+9" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "Januwari 13, 1970 06:46:40 GMT+9" + "expected": "Januwari 13, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "Septhemba 9, 2001 17:46:40 GMT+9" + "expected": "Septhemba 9, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "Mashi 16, 2024 21:00:00 GMT-3" + "expected": "Mashi 16, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "Julayi 2, 2001 10:14:15 GMT-3" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "Meyi 29, 1984 04:53:00 GMT-3" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "Meyi 29, 2050 13:47:00 GMT-3" + "expected": "Meyi 29, 2050" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "Julayi 15, 1969 21:00:00 GMT-3" + "expected": "Julayi 15, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "Januwari 12, 1970 10:46:40 GMT-3" + "expected": "Januwari 12, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "Septhemba 8, 2001 22:46:40 GMT-3" + "expected": "Septhemba 8, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "Mashi 7, 2024 05:00:01 GMT-3" + "expected": "Mashi 7, 2024" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "Julayi 2, 2001 17:14:15 GMT-3" + "expected": "Julayi 2, 2001" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "Meyi 29, 1984 11:53:00 GMT-3" + "expected": "Meyi 29, 1984" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "Meyi 29, 2030 20:47:00 GMT-3" + "expected": "Meyi 29, 2030" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "Julayi 16, 1969 04:00:00 GMT-3" + "expected": "Julayi 16, 1969" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "Januwari 12, 1970 18:46:40 GMT-3" + "expected": "Januwari 12, 1970" }, { "dateLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "Septhemba 9, 2001 05:46:40 GMT-3" + "expected": "Septhemba 9, 2001" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "Mashi 16, 2024 17:00:00 GMT-7" + "expected": "17:00:00 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "Julayi 2, 2001 06:14:15 GMT-7" + "expected": "06:14:15 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 1984 00:53:00 GMT-7" + "expected": "00:53:00 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 2050 09:47:00 GMT-7" + "expected": "09:47:00 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "Julayi 15, 1969 17:00:00 GMT-7" + "expected": "17:00:00 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "Januwari 12, 1970 05:46:40 GMT-8" + "expected": "05:46:40 GMT-8" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "Septhemba 8, 2001 18:46:40 GMT-7" + "expected": "18:46:40 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "Mashi 7, 2024 00:00:01 GMT-8" + "expected": "00:00:01 GMT-8" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "Julayi 2, 2001 13:14:15 GMT-7" + "expected": "13:14:15 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 1984 07:53:00 GMT-7" + "expected": "07:53:00 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 2030 16:47:00 GMT-7" + "expected": "16:47:00 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "Julayi 16, 1969 00:00:00 GMT-7" + "expected": "00:00:00 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "Januwari 12, 1970 13:46:40 GMT-8" + "expected": "13:46:40 GMT-8" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "Septhemba 9, 2001 01:46:40 GMT-7" + "expected": "01:46:40 GMT-7" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "Mashi 17, 2024 01:00:00 GMT+1" + "expected": "01:00:00 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "Julayi 2, 2001 14:14:15 GMT+1" + "expected": "14:14:15 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "Meyi 29, 1984 08:53:00 GMT+1" + "expected": "08:53:00 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "Meyi 29, 2050 17:47:00 GMT+1" + "expected": "17:47:00 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "Julayi 16, 1969 01:00:00 GMT+1" + "expected": "01:00:00 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "Januwari 12, 1970 14:46:40 GMT+1" + "expected": "14:46:40 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "Septhemba 9, 2001 02:46:40 GMT+1" + "expected": "02:46:40 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "Mashi 7, 2024 09:00:01 GMT+1" + "expected": "09:00:01 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "Julayi 2, 2001 21:14:15 GMT+1" + "expected": "21:14:15 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "Meyi 29, 1984 15:53:00 GMT+1" + "expected": "15:53:00 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "Meyi 30, 2030 00:47:00 GMT+1" + "expected": "00:47:00 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "Julayi 16, 1969 08:00:00 GMT+1" + "expected": "08:00:00 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "Januwari 12, 1970 22:46:40 GMT+1" + "expected": "22:46:40 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "Septhemba 9, 2001 09:46:40 GMT+1" + "expected": "09:46:40 GMT+1" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "Mashi 17, 2024 03:30:00 GMT+3:30" + "expected": "03:30:00 GMT+3:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "Julayi 2, 2001 17:44:15 GMT+4:30" + "expected": "17:44:15 GMT+4:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "Meyi 29, 1984 11:23:00 GMT+3:30" + "expected": "11:23:00 GMT+3:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "Meyi 29, 2050 20:17:00 GMT+3:30" + "expected": "20:17:00 GMT+3:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "Julayi 16, 1969 03:30:00 GMT+3:30" + "expected": "03:30:00 GMT+3:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "Januwari 12, 1970 17:16:40 GMT+3:30" + "expected": "17:16:40 GMT+3:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "Septhemba 9, 2001 06:16:40 GMT+4:30" + "expected": "06:16:40 GMT+4:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "Mashi 7, 2024 11:30:01 GMT+3:30" + "expected": "11:30:01 GMT+3:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "Julayi 3, 2001 00:44:15 GMT+4:30" + "expected": "00:44:15 GMT+4:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "Meyi 29, 1984 18:23:00 GMT+3:30" + "expected": "18:23:00 GMT+3:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "Meyi 30, 2030 03:17:00 GMT+3:30" + "expected": "03:17:00 GMT+3:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "Julayi 16, 1969 10:30:00 GMT+3:30" + "expected": "10:30:00 GMT+3:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "Januwari 13, 1970 01:16:40 GMT+3:30" + "expected": "01:16:40 GMT+3:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "Septhemba 9, 2001 13:16:40 GMT+4:30" + "expected": "13:16:40 GMT+4:30" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "Mashi 17, 2024 02:00:00 GMT+2" + "expected": "02:00:00 GMT+2" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "Julayi 2, 2001 16:14:15 GMT+3" + "expected": "16:14:15 GMT+3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "Meyi 29, 1984 11:53:00 GMT+4" + "expected": "11:53:00 GMT+4" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "Meyi 29, 2050 19:47:00 GMT+3" + "expected": "19:47:00 GMT+3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "Julayi 16, 1969 03:00:00 GMT+3" + "expected": "03:00:00 GMT+3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "Januwari 12, 1970 16:46:40 GMT+3" + "expected": "16:46:40 GMT+3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "Septhemba 9, 2001 04:46:40 GMT+3" + "expected": "04:46:40 GMT+3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "Mashi 7, 2024 10:00:01 GMT+2" + "expected": "10:00:01 GMT+2" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "Julayi 2, 2001 23:14:15 GMT+3" + "expected": "23:14:15 GMT+3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "Meyi 29, 1984 18:53:00 GMT+4" + "expected": "18:53:00 GMT+4" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "Meyi 30, 2030 02:47:00 GMT+3" + "expected": "02:47:00 GMT+3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "Julayi 16, 1969 10:00:00 GMT+3" + "expected": "10:00:00 GMT+3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "Januwari 13, 1970 00:46:40 GMT+3" + "expected": "00:46:40 GMT+3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "Septhemba 9, 2001 11:46:40 GMT+3" + "expected": "11:46:40 GMT+3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "Mashi 17, 2024 10:00:00 GMT+10" + "expected": "10:00:00 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "Julayi 2, 2001 23:14:15 GMT+10" + "expected": "23:14:15 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "Meyi 29, 1984 17:53:00 GMT+10" + "expected": "17:53:00 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 2050 02:47:00 GMT+10" + "expected": "02:47:00 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "Julayi 16, 1969 10:00:00 GMT+10" + "expected": "10:00:00 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "Januwari 12, 1970 23:46:40 GMT+10" + "expected": "23:46:40 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "Septhemba 9, 2001 11:46:40 GMT+10" + "expected": "11:46:40 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "Mashi 7, 2024 18:00:01 GMT+10" + "expected": "18:00:01 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "Julayi 3, 2001 06:14:15 GMT+10" + "expected": "06:14:15 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 1984 00:53:00 GMT+10" + "expected": "00:53:00 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 2030 09:47:00 GMT+10" + "expected": "09:47:00 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "Julayi 16, 1969 17:00:00 GMT+10" + "expected": "17:00:00 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "Januwari 13, 1970 07:46:40 GMT+10" + "expected": "07:46:40 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "Septhemba 9, 2001 18:46:40 GMT+10" + "expected": "18:46:40 GMT+10" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "Mashi 17, 2024 09:00:00 GMT+9" + "expected": "09:00:00 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "Julayi 2, 2001 22:14:15 GMT+9" + "expected": "22:14:15 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "Meyi 29, 1984 16:53:00 GMT+9" + "expected": "16:53:00 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "Meyi 30, 2050 01:47:00 GMT+9" + "expected": "01:47:00 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "Julayi 16, 1969 09:00:00 GMT+9" + "expected": "09:00:00 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "Januwari 12, 1970 22:46:40 GMT+9" + "expected": "22:46:40 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "Septhemba 9, 2001 10:46:40 GMT+9" + "expected": "10:46:40 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "Mashi 7, 2024 17:00:01 GMT+9" + "expected": "17:00:01 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "Julayi 3, 2001 05:14:15 GMT+9" + "expected": "05:14:15 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "Meyi 29, 1984 23:53:00 GMT+9" + "expected": "23:53:00 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "Meyi 30, 2030 08:47:00 GMT+9" + "expected": "08:47:00 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "Julayi 16, 1969 16:00:00 GMT+9" + "expected": "16:00:00 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "Januwari 13, 1970 06:46:40 GMT+9" + "expected": "06:46:40 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "Septhemba 9, 2001 17:46:40 GMT+9" + "expected": "17:46:40 GMT+9" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "Mashi 16, 2024 21:00:00 GMT-3" + "expected": "21:00:00 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "Julayi 2, 2001 10:14:15 GMT-3" + "expected": "10:14:15 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "Meyi 29, 1984 04:53:00 GMT-3" + "expected": "04:53:00 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "Meyi 29, 2050 13:47:00 GMT-3" + "expected": "13:47:00 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "Julayi 15, 1969 21:00:00 GMT-3" + "expected": "21:00:00 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "Januwari 12, 1970 10:46:40 GMT-3" + "expected": "10:46:40 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "Septhemba 8, 2001 22:46:40 GMT-3" + "expected": "22:46:40 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "Mashi 7, 2024 05:00:01 GMT-3" + "expected": "05:00:01 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "Julayi 2, 2001 17:14:15 GMT-3" + "expected": "17:14:15 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "Meyi 29, 1984 11:53:00 GMT-3" + "expected": "11:53:00 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "Meyi 29, 2030 20:47:00 GMT-3" + "expected": "20:47:00 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "Julayi 16, 1969 04:00:00 GMT-3" + "expected": "04:00:00 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "Januwari 12, 1970 18:46:40 GMT-3" + "expected": "18:46:40 GMT-3" }, { "timeLength": "long", "calendar": "gregorian", "locale": "zu", "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "Septhemba 9, 2001 05:46:40 GMT-3" + "expected": "05:46:40 GMT-3" } ] diff --git a/verifier/check_known_issues.py b/verifier/check_known_issues.py index b12db7f4..7e0e0cb4 100644 --- a/verifier/check_known_issues.py +++ b/verifier/check_known_issues.py @@ -46,6 +46,10 @@ class knownIssueType(Enum): # Relative Date Time Format known_issue_unsupported_unit = 'Unsupported unit' # https://github.com/unicode-org/conformance/issues/274 + # Datetime format + datetime_fmt_at_inserted = 'Alternate formatting with "at" between time and date' + + # TODO! Load known issues from file of known problems rather than hardcoding the detection in each test # Tests for specific kinds of known issues @@ -117,6 +121,32 @@ def unsupported_unit_quarter(test): return None +def dt_check_for_alternate_long_form(actual, expected): + # For datetime_fmt, check if the word for "at" is inserted + # in the actual vs. the expected. + at_inserts = ['at ', 'এ ', 'lúc ', ',', ' এ'] + replacements = {',': ' at', '،': ' في', + } + + sm = SequenceMatcher(None, expected, actual) + sm_opcodes = sm.get_opcodes() + for diff in sm_opcodes: + tag = diff[0] # 'replace', 'delete', 'insert', or 'equal' + old_val = expected[diff[1]:diff[2]] + new_val = actual[diff[3]:diff[4]] + if tag == 'replace': + if old_val in replacements: + if new_val == replacements[old_val]: + return knownIssueType.datetime_fmt_at_inserted + # Does this handle inserts properly? + if tag == 'insert': + if new_val in at_inserts: + return knownIssueType.datetime_fmt_at_inserted + else: + pass + return None + + def check_datetime_known_issues(test): # Examine a single test for date/time isses # Returns known issues identified for this test in this category @@ -135,6 +165,11 @@ def check_datetime_known_issues(test): test['known_issue_id'] = knownIssueType.known_issue_replaced_numerals.value remove_this_one = True + is_ki = dt_check_for_alternate_long_form(result, expected) + if is_ki: + test['known_issue_id'] = is_ki.value + remove_this_one = True + except BaseException as err: # Can't get the info pass From f799e83f106f5773f0ced8eac347687099b5fc24 Mon Sep 17 00:00:00 2001 From: Craig Date: Wed, 13 Nov 2024 17:26:15 -0800 Subject: [PATCH 7/7] Fix reference to datetime.UTC for Python3.10 --- testgen/generators/datetime_fmt.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testgen/generators/datetime_fmt.py b/testgen/generators/datetime_fmt.py index 5627ad63..c15b6a61 100644 --- a/testgen/generators/datetime_fmt.py +++ b/testgen/generators/datetime_fmt.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from datetime import datetime, timezone, UTC +from datetime import datetime, timezone # import pytz import os @@ -85,7 +85,7 @@ def generate_datetime_data_from_cldr(self, dt_json_path, run_limit=-1): options['calendar'] = 'gregory' # Generate UTC time equivalent and get the offset in seconds - u_time = raw_time.astimezone(UTC) + u_time = raw_time.astimezone(timezone.utc) input_string = u_time.isoformat().replace('+00:00', 'Z') tz_offset_secs = raw_time.utcoffset().total_seconds() @@ -100,6 +100,7 @@ def generate_datetime_data_from_cldr(self, dt_json_path, run_limit=-1): verify_cases.append(new_verify) + # Save output as: datetime_fmt_test.json and datetime_fmt_verify.json test_obj['tests'] = test_cases verify_obj['verifications'] = verify_cases