In a Xamarin.Forms app, I calling Humanizer from the Core (.Net Standard project)
I'm using the Nugets Humanizer.Core and Humanizer.Core.ru package for Russian
And calling it
DateTime.UtcNow.AddMinutes(-3).Humanize(culture: new CultureInfo("ru-Ru"));
And always I get english like 3 minutes ago
I tried apply:
CultureInfo ci = new CultureInfo("ru-Ru");
Thread.CurrentThread.CurrentCulture = ci;
Thread.CurrentThread.CurrentUICulture = ci;
And these not infleunt on a result, I get again english.
I resolved the issue with the workaround.
After the dll files were added I got localized text into my project.