Humanizr / Humanizer

Humanizer meets all your .NET needs for manipulating and displaying strings, enums, dates, times, timespans, numbers and quantities
Other
8.52k stars 947 forks source link

Incorrect language with only core #1521

Open Martin12350 opened 1 week ago

Martin12350 commented 1 week ago

I have installed NuGet Humanizer.Core, I would expect that all the results will be in English (as said in the readme). Yet, when I call this:

DateOnly now = DateOnly.FromDateTime(DateTime.Today);
string myText = now.ToOrdinalWords();

I will get it in my native language.

image

First of all things, I am not sure where it is taking the language, but more importantly, there is no overload to specify culture info or language.

Any suggestions would be appreciated.