diff --git a/src/locales/helpers.ts b/src/locales/helpers.ts index ede373ef..beba7a30 100644 --- a/src/locales/helpers.ts +++ b/src/locales/helpers.ts @@ -1805,7 +1805,7 @@ export function useI18n() { function formatDateTimeToGregorianLikeYearQuarter(dateTime: DateTime): string { const gregorianLikeCalendarType = getGregorianLikeCalendarType(); const dateTimeFormatOptions = getDateTimeFormatOptions({ calendarType: gregorianLikeCalendarType }); - const year = dateTime.getLocalizedCalendarYear(dateTimeFormatOptions); + const year = formatDateTime(dateTime, getLocalizedShortYearFormat(), dateTimeFormatOptions); const quarter = dateTime.getLocalizedCalendarQuarter(dateTimeFormatOptions); return formatYearQuarter(year, quarter); }