diff --git a/assets/js/datelocale.ts b/assets/js/datelocale.ts index e0adfd35..f26a0fea 100644 --- a/assets/js/datelocale.ts +++ b/assets/js/datelocale.ts @@ -4,18 +4,16 @@ function formatDate(date: string | null) { year: 'numeric', month: 'long', day: 'numeric', - // hour:'2-digit', - // minute: '2-digit', }).format(new Date(date)); } if ('Intl' in window) { window.addEventListener('load', () => { for(const span of [...document.querySelectorAll('.localizable-date')]) { - var persianDate = formatDate(span.getAttribute('title')); - if (persianDate) { - span.innerHTML = persianDate; + const localizedDate = formatDate(span.getAttribute('title')); + if (localizedDate) { + span.innerHTML = localizedDate; } } }); -} \ No newline at end of file +}