diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-08-13 18:37:14 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-13 18:37:14 -0400 |
| commit | 7f3bbd5654516e72e38e49e3316200dca89f91d3 (patch) | |
| tree | 5d44b4ba5c45af58b2bc0e31c4e09e9b2b6cc9bf | |
| parent | e1a619b79ea55661c26447f89f9fb8634e5d993c (diff) | |
| parent | a7c0c92019e250aec739b10c66d426404825a75d (diff) | |
Merge pull request #17633 from IDisposable/chore/fix-de-localization-unit-test
Fix unit test for localization of Artists in DE
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs b/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs index 2ed880ed9c..7d7de94348 100644 --- a/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs +++ b/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs @@ -427,7 +427,7 @@ namespace Jellyfin.Server.Implementations.Tests.Localization { CultureInfo.CurrentUICulture = CultureInfo.GetCultureInfo("de"); var translated = localizationManager.GetLocalizedString("Artists"); - Assert.Equal("Interpreten", translated); + Assert.Equal("Künstler", translated); } finally { |
