mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
feat(post): choose date/time format from translations locale
This commit is contained in:
@@ -1,8 +1,10 @@
|
|||||||
|
import i18next from 'i18next';
|
||||||
|
|
||||||
export const getFormattedDate = (commentTimestamp: number) => {
|
export const getFormattedDate = (commentTimestamp: number) => {
|
||||||
if (commentTimestamp === undefined || isNaN(commentTimestamp)) {
|
if (commentTimestamp === undefined || isNaN(commentTimestamp)) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
const locale = Intl.DateTimeFormat().resolvedOptions().locale;
|
const locale = i18next.language || 'en';
|
||||||
const string = new Intl.DateTimeFormat(locale, {
|
const string = new Intl.DateTimeFormat(locale, {
|
||||||
hour12: false,
|
hour12: false,
|
||||||
year: '2-digit',
|
year: '2-digit',
|
||||||
|
|||||||
Reference in New Issue
Block a user