Итак, моя проблема такова: MAUI Blazor не учитывает язык устройства на iOS
Но с Android. .
Я уже безуспешно тестировал это в MainActivity.cs:
Код: Выделить всё
protected override void OnCreate(Bundle? savedInstanceState)
{
base.OnCreate(savedInstanceState);
this.SetLocale();
}
void SetLocale()
{
CultureInfo ci = new CultureInfo("it-IT");
Thread.CurrentThread.CurrentCulture = ci;
Thread.CurrentThread.CurrentUICulture = ci;
Console.WriteLine("CurrentCulture set: " + ci.Name);
}
Подробнее здесь: https://stackoverflow.com/questions/792 ... on-android