Merge pull request #17637 from IDisposable/fix/de-localization-test-error

Fix other two unit test for localization of Artists in DE
This commit is contained in:
Cody Robibero
2026-08-14 07:05:50 -04:00
committed by GitHub
@@ -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
{