Fix other two missing DE localization DE updates

Turns out there were two more instances of test broken by commit 21fec95b07
This commit is contained in:
Marc Brooks
2026-08-13 22:31:28 -05:00
parent 7f3bbd5654
commit b557dcfa45
@@ -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
{