Make English default culture instead of current installed culture

This commit is contained in:
hishamco 2021-04-20 16:27:18 +03:00
parent e33c9e417d
commit 0b32dcf9b3
2 changed files with 2 additions and 2 deletions

View File

@ -13,6 +13,6 @@
"DefaultContainer": "" "DefaultContainer": ""
}, },
"Localization": { "Localization": {
"DefaultCulture": "" "DefaultCulture": "en"
} }
} }

View File

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