Merge pull request #1260 from hishamco/supported-cultures

Remove supported cultures entry from appsettings.json
This commit is contained in:
Shaun Walker 2021-04-20 17:14:21 -04:00 committed by GitHub
commit f9f0999315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -16,7 +16,6 @@
"DefaultContainer": ""
},
"Localization": {
"DefaultCulture": "",
"SupportedCultures": []
"DefaultCulture": "en"
}
}

View File

@ -71,6 +71,6 @@ namespace Oqtane.Shared {
public static readonly string SatelliteAssemblyExtension = ".resources.dll";
public static readonly string DefaultCulture = CultureInfo.InstalledUICulture.Name;
public static readonly string DefaultCulture = "en";
}
}