Parcourir la source

Fix default language
The default preferred language in the startup wizard now defaults to
English (United States).

Andrew Rabert il y a 6 ans
Parent
commit
4929ee9ab6
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      MediaBrowser.Model/Configuration/ServerConfiguration.cs

+ 2 - 2
MediaBrowser.Model/Configuration/ServerConfiguration.cs

@@ -246,7 +246,7 @@ namespace MediaBrowser.Model.Configuration
             SortRemoveCharacters = new[] { ",", "&", "-", "{", "}", "'" };
             SortRemoveWords = new[] { "the", "a", "an" };
 
-            UICulture = "en-us";
+            UICulture = "en-US";
 
             MetadataOptions = new[]
             {
@@ -310,4 +310,4 @@ namespace MediaBrowser.Model.Configuration
         public string From { get; set; }
         public string To { get; set; }
     }
-}
+}