mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Make screensaver names translateable
This commit is contained in:
parent
a6a1a39eaf
commit
2c608aa7d6
4 changed files with 5 additions and 3 deletions
|
@ -36,7 +36,7 @@ function loadScreensavers(context, userSettings) {
|
|||
const selectScreensaver = context.querySelector('.selectScreensaver');
|
||||
const options = pluginManager.ofType(PluginType.Screensaver).map(plugin => {
|
||||
return {
|
||||
name: plugin.name,
|
||||
name: globalize.translate(plugin.name),
|
||||
value: plugin.id
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue