Scheduler name of days

Hi guys,
for a strange reason, Tuesday on the PC literally becomes "GUASTARE" in Italian language, while it should appear "MAR". Is it possible to change only the day heading "Tuesday"? A thousand thanks.
Attach image with strange issue.

Hi @Roberto_Daniele,

RadzenScheduler uses the CultureInfo provided by .NET. Here is the actual code:

The HeaderFormat property is set like this: radzen-blazor/Radzen.Blazor/RadzenWeekView.razor.cs at master · radzenhq/radzen-blazor · GitHub

You can probably change it to a different value according to the .N

Hi everybody,
it's possible to change only the name of "Tuesday"? I still can't to change it, because in italian language is displayed as "GUASTARE" and not "MAR" as "MARTEDI".
I was thinking of inserting a "< d i v >" with a z-index lower than the scheduler, but the trick doesn't work.
Tks everybody and I hope to resolve this strange issue. Bye.

Roberto.

I tried it in debug using the radzen demo project and it work as expected.

The only thing i changed is the program.cs, i added the code to use the italian culture info

CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("it-IT");
CultureInfo.DefaultThreadCurrentUICulture = new CultureInfo("it-IT");
CultureInfo.CurrentCulture = new CultureInfo("it-IT");
CultureInfo.CurrentUICulture = new CultureInfo("it-IT");
Thread.CurrentThread.CurrentCulture = new CultureInfo("it-IT");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("it-IT");

Try clean the cache or check if ur browser (or maybe some extensions) have an
auto-traslate feature

Spero ti possa essere d'aiuto! Buon lavoro!

Ti ringrazio, proverò questo trix :wink: