diff options
| author | Bond-009 <bond.009@outlook.com> | 2023-07-20 23:55:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-20 23:55:03 +0200 |
| commit | db347eb7d862f00b3d3dd228fff4ad86edf79e23 (patch) | |
| tree | 0675019d6b7044335720c24de62e6fd927ee49b5 | |
| parent | bdaf0b4afe5905fd6f850efb636403536a2befcc (diff) | |
| parent | 48eb6f655b3b8a1743846c941c7031d14ff24a67 (diff) | |
Merge pull request #9992 from Blackskyliner/patch-1
| -rw-r--r-- | Emby.Server.Implementations/Localization/Ratings/de.csv | 5 | ||||
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Localization/Ratings/de.csv b/Emby.Server.Implementations/Localization/Ratings/de.csv index d633a5dab..f6181575e 100644 --- a/Emby.Server.Implementations/Localization/Ratings/de.csv +++ b/Emby.Server.Implementations/Localization/Ratings/de.csv @@ -1,12 +1,17 @@ Educational,0 Infoprogramm,0 FSK-0,0 +FSK 0,0 0,0 FSK-6,6 +FSK 6,6 6,6 FSK-12,12 +FSK 12,12 12,12 FSK-16,16 +FSK 16,16 16,16 FSK-18,18 +FSK 18,18 18,18 diff --git a/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs b/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs index 7fabe9904..09e4709da 100644 --- a/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs +++ b/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs @@ -100,7 +100,7 @@ namespace Jellyfin.Server.Implementations.Tests.Localization await localizationManager.LoadAll(); var ratings = localizationManager.GetParentalRatings().ToList(); - Assert.Equal(19, ratings.Count); + Assert.Equal(24, ratings.Count); var fsk = ratings.FirstOrDefault(x => x.Name.Equals("FSK-12", StringComparison.Ordinal)); Assert.NotNull(fsk); |
