소스 검색

Fix typo and migration description

Shadowghost 2 년 전
부모
커밋
15efb9935c
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      Emby.Server.Implementations/Localization/LocalizationManager.cs
  2. 1 1
      Jellyfin.Server/Migrations/Routines/MigrateRatingLevels.cs

+ 1 - 1
Emby.Server.Implementations/Localization/LocalizationManager.cs

@@ -194,7 +194,7 @@ namespace Emby.Server.Implementations.Localization
                 ratings.Add(new ParentalRating("Approved", 0));
             }
 
-            // Matches PG (this has differnet age restrictions depending on country)
+            // Matches PG (this has different age restrictions depending on country)
             if (!ratings.Any(x => x.Value == 10))
             {
                 ratings.Add(new ParentalRating("10", 10));

+ 1 - 1
Jellyfin.Server/Migrations/Routines/MigrateRatingLevels.cs

@@ -9,7 +9,7 @@ using SQLitePCL.pretty;
 namespace Jellyfin.Server.Migrations.Routines
 {
     /// <summary>
-    /// Remove duplicate entries which were caused by a bug where a file was considered to be an "Extra" to itself.
+    /// Migrate rating levels to new rating level system.
     /// </summary>
     internal class MigrateRatingLevels : IMigrationRoutine
     {