Skip to content

Commit 2dbf5fb

Browse files
committed
chore: update some strings
1 parent 4602b65 commit 2dbf5fb

2 files changed

Lines changed: 20 additions & 20 deletions

File tree

package/contents/ui/config.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ ColumnLayout {
272272
id: warningCrashes
273273
Layout.fillWidth: true
274274
type: Kirigami.MessageType.Warning
275-
text: i18nd("plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn", "Crashes/Black screen? Try changing the Qt Media Backend to gstreamer.<br>To recover from crash remove the videos from the configuration using this enabled below in terminal/tty then reboot:<br><strong><code>sed -i 's/^VideoUrls=.*$/VideoUrls=/g' $HOME/.config/plasma-org.kde.plasma.desktop-appletsrc $HOME/.config/kscreenlockerrc</code></strong>")
275+
text: i18nd("plasma_wallpaper_luisbocanegra.smart.video.wallpaper.reborn", "Crashes/Black screen? Try changing the Qt Media Backend to gstreamer.<br>To recover from crash remove the videos from the configuration using the command below in a terminal/tty then reboot:<br><strong><code>sed -i 's/^VideoUrls=.*$/VideoUrls=/g' $HOME/.config/plasma-org.kde.plasma.desktop-appletsrc $HOME/.config/kscreenlockerrc</code></strong>")
276276
visible: root.showWarningMessage
277277
actions: [
278278
Kirigami.Action {

package/contents/ui/main.qml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -350,25 +350,25 @@ WallpaperItem {
350350
text: {
351351
let text = `filename: ${main.currentSource.filename}\n`;
352352
text += `loops: ${main.currentSource.loop ?? false}\n`;
353-
text += `currentVideoIndex ${main.currentVideoIndex}\n`;
354-
text += `changeWallpaperMode ${main.changeWallpaperMode}\n`;
355-
text += `crossfade ${main.crossfadeEnabled}\n`;
356-
text += `crossfadeDuration ${player.crossfadeDuration} ${player.crossfadeMinDurationLast} ${player.crossfadeMinDurationCurrent}\n`;
357-
text += `multipleVideos ${player.multipleVideos}\n`;
358-
text += `player ${player.player.objectName}\n`;
359-
text += `media status ${player.player.mediaStatus}\n`;
360-
text += `player1 playing ${player.player1.playing}\n`;
361-
text += `player2 playing ${player.player2.playing}\n`;
362-
text += `position ${player.player.position}\n`;
363-
text += `duration ${player.player.duration}\n`;
364-
text += `resumeLastVideo ${player.resumeLastVideo}\n`;
365-
text += `pause screen off: ${main.screenOffPausesVideo} paused ${main.screenIsOff}\n`;
366-
text += `pause Battery: ${main.pauseBattery} ${main.pauseBatteryLevel}%\n`;
367-
text += `should play: ${main.playing}\n`;
368-
text += `is lock screen: ${main.lockScreenMode}\n`;
369-
text += `screen locked: ${main.screenLocked}\n`;
370-
text += `blur: ${main.showBlur}\n`;
371-
text += `id ${Plasmoid.id}`;
353+
text += `currentVideoIndex: ${main.currentVideoIndex}\n`;
354+
text += `changeWallpaperMode: ${main.changeWallpaperMode}\n`;
355+
text += `crossfade: ${main.crossfadeEnabled}\n`;
356+
text += `crossfadeDuration: ${player.crossfadeDuration} ${player.crossfadeMinDurationLast} ${player.crossfadeMinDurationCurrent}\n`;
357+
text += `multipleVideos: ${player.multipleVideos}\n`;
358+
text += `player: ${player.player.objectName}\n`;
359+
text += `mediaStatus: ${player.player.mediaStatus}\n`;
360+
text += `player1 playing: ${player.player1.playing}\n`;
361+
text += `player2 playing: ${player.player2.playing}\n`;
362+
text += `position: ${player.player.position}\n`;
363+
text += `duration: ${player.player.duration}\n`;
364+
text += `resumeLastVideo: ${player.resumeLastVideo}\n`;
365+
text += `screenOffPausesVideo: ${main.screenOffPausesVideo} off ${main.screenIsOff}\n`;
366+
text += `pauseBattery: below ${main.pauseBatteryLevel}% ${main.pauseBattery}\n`;
367+
text += `playing: ${main.playing}\n`;
368+
text += `inLockScreen: ${main.lockScreenMode}\n`;
369+
text += `screenLocked: ${main.screenLocked}\n`;
370+
text += `showBlur: ${main.showBlur}\n`;
371+
text += `id: ${Plasmoid.id}`;
372372
return text;
373373
}
374374
}

0 commit comments

Comments
 (0)