1 write to LocalizedCultures
Aspire.Dashboard (1)
Utils\GlobalizationHelpers.cs (1)
30LocalizedCultures = localizedCultureNames.Select(CultureInfo.GetCultureInfo).ToList();
3 references to LocalizedCultures
Aspire.Dashboard (3)
Components\Dialogs\SettingsDialog.razor.cs (1)
29_languageOptions = [.. GlobalizationHelpers.LocalizedCultures.OrderBy(c => c.NativeName, StringComparer.InvariantCultureIgnoreCase)];
DashboardEndpointsBuilder.cs (1)
50var newLanguage = GlobalizationHelpers.LocalizedCultures.SingleOrDefault(c => string.Equals(c.Name, language, StringComparisons.CultureName));
Utils\GlobalizationHelpers.cs (1)
34ExpandedLocalizedCultures = GetExpandedLocalizedCultures(LocalizedCultures, AllCultures);