No option to change language for AM/PM

Hello, I am using text with AM/PM tag and I noticed that on some languages it displays very bad. So I tried to set the language only to EN_US but I did not saw such option like for date. Any suggestions?
Screenshot 2024-07-07 134120

I use these Tags for am/PM=12h Opacity of the 12h-Elements: 100-100*[IS_24H] and 24h Element = Opacity of the 24h-Elements: 0+100*[IS_24H]

1 Like

I found the problem, I was using it as text instead of time component and to add just the AM/PM tag, now I can change the language.

with the latest versions beta and stable from WFS you do need to do that any more, it follows system.

Hi,
thats true, some languages display as : AM or PM
and others: A.M or P.M
thats why I use that formula: ([IS_AFTNOON]<1?“AM”:“PM”)

or that one if you dont want AM/PM appear on 24H system:

([IS_24H]<1?[IS_AFTNOON]<1?“AM”:“PM”:" ")

2 Likes

This is actually very usefully, thank you.