Powerful date & time formatting with luxon not respecting my LOCALTIME language

Hi Team,

I use the DATA formatting options Experimental to get more simplifier presentation, but the result a month are not respecting my local navigation and computer setting.
It’s always in english
timestamp format to MMM
janvier. january
enero. january

Can you see please

So both your computer and browser settings are using the correct language? I don’t know if the luxon formatting will do other languages. I can’t find it right now, but I remember seeing a post where someone used a template column to replace any words in the date with the translated word.

Here’s an alternative using JS.

let date = new Date(p1);
return new Intl.DateTimeFormat('fr', { dateStyle: 'full' }).format(date)
2 Likes

Hi,
I confirm in the same Page in a phone or any other device Calendar (janvier) is respecting local setting, Luxon tool from experimental code is NOT( january). He need a fix somewhere to work.MY local setting are ‘fr’

It’s an option, but how can I preserve users’ settings? This option would default to my settings or need more columns. I need an internationalized solution that respects users’ local time and preferences. Some workaround?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.