diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-08-14 07:05:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-14 07:05:50 -0400 |
| commit | 6a021d5daee819a186ef44e342eafaf088efc3ca (patch) | |
| tree | 4907150be61a92b90f5f4af70b75a4bf45c82f03 | |
| parent | 6ebe66c19d9d9a53669622c04f8aa44832e3adc7 (diff) | |
| parent | b557dcfa45ed7a9b366b624e52a60a5db52ed34b (diff) | |
Merge pull request #17637 from IDisposable/fix/de-localization-test-error
Fix other two unit test for localization of Artists in DE
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs b/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs index 7d7de94348..d973076ed3 100644 --- a/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs +++ b/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs @@ -349,7 +349,7 @@ namespace Jellyfin.Server.Implementations.Tests.Localization }); var translated = localizationManager.GetLocalizedString("Artists", "de"); - Assert.Equal("Interpreten", translated); + Assert.Equal("Künstler", translated); } [Fact] @@ -406,7 +406,7 @@ namespace Jellyfin.Server.Implementations.Tests.Localization { CultureInfo.CurrentUICulture = CultureInfo.GetCultureInfo("fr"); var translated = localizationManager.GetServerLocalizedString("Artists"); - Assert.Equal("Interpreten", translated); + Assert.Equal("Künstler", translated); } finally { |
