Skip to content

Commit

Permalink
Merge pull request #4791 from KucharczykL/master
Browse files Browse the repository at this point in the history
  • Loading branch information
thornbill authored Sep 21, 2023
2 parents 46bb8cb + aad5f9d commit 6827208
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/displaySettings/displaySettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
});
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/backdropScreensaver/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as userSettings from '../../scripts/settings/userSettings';

class BackdropScreensaver {
constructor() {
this.name = 'Backdrop ScreenSaver';
this.name = 'BackdropScreensaver';
this.type = PluginType.Screensaver;
this.id = 'backdropscreensaver';
this.supportsAnonymous = false;
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/logoScreensaver/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { randomInt } from '../../utils/number.ts';
export default function () {
const self = this;

self.name = 'Logo ScreenSaver';
self.name = 'LogoScreensaver';
self.type = PluginType.Screensaver;
self.id = 'logoscreensaver';
self.supportsAnonymous = true;
Expand Down
2 changes: 2 additions & 0 deletions src/strings/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"Auto": "Auto",
"Backdrop": "Backdrop",
"Backdrops": "Backdrops",
"BackdropScreensaver": "Backdrop Screensaver",
"Banner": "Banner",
"BirthDateValue": "Born: {0}",
"BirthLocation": "Birth location",
Expand Down Expand Up @@ -1016,6 +1017,7 @@
"LogLevel.Critical": "Critical",
"LogLevel.None": "None",
"Logo": "Logo",
"LogoScreensaver": "Logo Screensaver",
"Lyricist": "Lyricist",
"ManageLibrary": "Manage library",
"ManageRecording": "Manage recording",
Expand Down

0 comments on commit 6827208

Please sign in to comment.