From c281ec55994e4b0e120c71202663df19852a90a4 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 20 Jan 2022 16:37:07 +0100 Subject: [PATCH] Add our own Dialog and Popup with blur background Remove all => for now because the qml formatter does not like the new syntax Fix states auf mute/play all buttons Remove useless playback speed option --- ScreenPlay/CMakeLists.txt | 3 + ScreenPlay/main.qml | 267 ++- ScreenPlay/qml/Common/Dialog.qml | 29 + .../qml/Common/Dialogs/CriticalError.qml | 24 +- .../Common/Dialogs/MonitorConfiguration.qml | 20 +- .../qml/Common/Dialogs/SteamNotAvailable.qml | 12 +- ScreenPlay/qml/Common/ModalBackgroundBlur.qml | 5 +- ScreenPlay/qml/Common/Popup.qml | 26 + ScreenPlay/qml/Common/Search.qml | 3 +- ScreenPlay/qml/Common/TextField.qml | 1 + ScreenPlay/qml/Common/TrayIcon.qml | 46 +- ScreenPlay/qml/Community/Community.qml | 2 +- ScreenPlay/qml/Create/Create.qml | 2 +- .../ImportVideoAndConvert/CreateWallpaper.qml | 36 +- .../Create/Wizards/ImportWebm/ImportWebm.qml | 20 +- .../Create/Wizards/Importh264/Importh264.qml | 20 +- .../Wizards/Importh264/Importh264Init.qml | 2 +- ScreenPlay/qml/Installed/Installed.qml | 73 +- ScreenPlay/qml/Installed/ScreenPlayItem.qml | 9 +- .../qml/Monitors/DefaultVideoControls.qml | 16 +- ScreenPlay/qml/Monitors/MonitorSelection.qml | 96 +- ScreenPlay/qml/Monitors/Monitors.qml | 84 +- ScreenPlay/qml/Navigation/Navigation.qml | 173 +- .../qml/Navigation/WindowNavigation.qml | 92 + ScreenPlay/qml/Settings/SettingBool.qml | 25 +- ScreenPlay/qml/Settings/Settings.qml | 261 +-- ScreenPlay/qml/Workshop/PopupOffline.qml | 2 +- ScreenPlay/qml/Workshop/SteamWorkshop.qml | 2 +- .../qml/Workshop/SteamWorkshopStartPage.qml | 4 +- ScreenPlay/qml/Workshop/Workshop.qml | 2 +- .../upload/PopupSteamWorkshopAgreement.qml | 2 +- ScreenPlay/translations/ScreenPlay_.ts | 30 +- ScreenPlay/translations/ScreenPlay_de_DE.ts | 2000 ++++++++-------- ScreenPlay/translations/ScreenPlay_es_ES.ts | 2000 ++++++++-------- ScreenPlay/translations/ScreenPlay_fr_FR.ts | 2002 +++++++++-------- ScreenPlay/translations/ScreenPlay_it_IT.ts | 2000 ++++++++-------- ScreenPlay/translations/ScreenPlay_ko_KR.ts | 2000 ++++++++-------- ScreenPlay/translations/ScreenPlay_nl_NL.ts | 2000 ++++++++-------- ScreenPlay/translations/ScreenPlay_pl_PL.ts | 2000 ++++++++-------- ScreenPlay/translations/ScreenPlay_pt_BR.ts | 2000 ++++++++-------- ScreenPlay/translations/ScreenPlay_ru_RU.ts | 2000 ++++++++-------- ScreenPlay/translations/ScreenPlay_tr_TR.ts | 2000 ++++++++-------- ScreenPlay/translations/ScreenPlay_vi_VN.ts | 2000 ++++++++-------- ScreenPlay/translations/ScreenPlay_zh_CN.ts | 2000 ++++++++-------- ScreenPlayWallpaper/qml/MultimediaWebView.qml | 9 +- ScreenPlayWidget/qml/Widget.qml | 67 +- 46 files changed, 12792 insertions(+), 12675 deletions(-) create mode 100644 ScreenPlay/qml/Common/Dialog.qml create mode 100644 ScreenPlay/qml/Common/Popup.qml create mode 100644 ScreenPlay/qml/Navigation/WindowNavigation.qml diff --git a/ScreenPlay/CMakeLists.txt b/ScreenPlay/CMakeLists.txt index d70b4006..54ad6565 100644 --- a/ScreenPlay/CMakeLists.txt +++ b/ScreenPlay/CMakeLists.txt @@ -72,9 +72,12 @@ set(QML qml/Navigation/Navigation.qml qml/Navigation/NavigationItem.qml qml/Navigation/WindowNavButton.qml + qml/Navigation/WindowNavigation.qml qml/Monitors/DefaultVideoControls.qml qml/Common/TagSelector.qml qml/Common/Tag.qml + qml/Common/Popup.qml + qml/Common/Dialog.qml qml/Common/ImageSelector.qml qml/Common/Slider.qml qml/Common/RippleEffect.qml diff --git a/ScreenPlay/main.qml b/ScreenPlay/main.qml index 13f8f552..2178b9ca 100644 --- a/ScreenPlay/main.qml +++ b/ScreenPlay/main.qml @@ -83,34 +83,7 @@ ApplicationWindow { } Item { - id: content - anchors.fill: parent - anchors.margins: 1 - - Connections { - function onThemeChanged(theme) { - setTheme(theme) - } - - target: ScreenPlay.settings - } - - Connections { - function onRequestNavigation(nav) { - switchPage(nav) - } - - target: ScreenPlay.util - } - - Connections { - function onRequestRaise() { - root.show() - } - - target: ScreenPlay.screenPlayManager - } - + id: noneContentItems Dialogs.SteamNotAvailable { id: dialogSteam modalSource: content @@ -125,107 +98,151 @@ ApplicationWindow { modalSource: content } - Common.TrayIcon { - window: root - } - - StackView { - id: stackView - objectName: "stackView" - property int duration: 300 - - anchors { - top: nav.bottom - right: parent.right - bottom: parent.bottom - left: parent.left - } - - replaceEnter: Transition { - OpacityAnimator { - from: 0 - to: 1 - duration: stackView.duration - easing.type: Easing.InOutQuart - } - - ScaleAnimator { - from: 0.8 - to: 1 - duration: stackView.duration - easing.type: Easing.InOutQuart - } - } - - replaceExit: Transition { - OpacityAnimator { - from: 1 - to: 0 - duration: stackView.duration - easing.type: Easing.InOutQuart - } - - ScaleAnimator { - from: 1 - to: 0.8 - duration: stackView.duration - easing.type: Easing.InOutQuart - } - } - } - - Connections { - function onSetSidebarActive(active) { - if (active) - sidebar.state = "active" - else - sidebar.state = "inactive" - } - - function onSetNavigationItem(pos) { - if (pos === 0) - nav.onPageChanged("Create") - else - nav.onPageChanged("Workshop") - } - - target: stackView.currentItem - ignoreUnknownSignals: true - } - - Installed.Sidebar { - id: sidebar - objectName: "installedSidebar" - navHeight: nav.height - - anchors { - top: parent.top - right: parent.right - bottom: parent.bottom - } - } - - Navigation.Navigation { - id: nav - window: root - width: parent.width - modalSource: content - anchors { - top: parent.top - right: parent.right - left: parent.left - } - - onChangePage: function (name) { - monitors.close() - switchPage(name) - } - } - Monitors.Monitors { id: monitors modalSource: content } + Common.TrayIcon { + window: root + } + } + + Item { + anchors.fill: parent + anchors.margins: 1 + Navigation.WindowNavigation { + id: windowNav + z:5 + modalSource: content + width: parent.width + window: root + } + + Item { + id: content + anchors { + top: windowNav.bottom + right: parent.right + bottom: parent.bottom + left: parent.left + } + + + Connections { + function onThemeChanged(theme) { + setTheme(theme) + } + + target: ScreenPlay.settings + } + + Connections { + function onRequestNavigation(nav) { + switchPage(nav) + } + + target: ScreenPlay.util + } + + Connections { + function onRequestRaise() { + root.show() + } + + target: ScreenPlay.screenPlayManager + } + + StackView { + id: stackView + objectName: "stackView" + property int duration: 300 + + anchors { + top: nav.bottom + right: parent.right + bottom: parent.bottom + left: parent.left + } + + replaceEnter: Transition { + OpacityAnimator { + from: 0 + to: 1 + duration: stackView.duration + easing.type: Easing.InOutQuart + } + + ScaleAnimator { + from: 0.8 + to: 1 + duration: stackView.duration + easing.type: Easing.InOutQuart + } + } + + replaceExit: Transition { + OpacityAnimator { + from: 1 + to: 0 + duration: stackView.duration + easing.type: Easing.InOutQuart + } + + ScaleAnimator { + from: 1 + to: 0.8 + duration: stackView.duration + easing.type: Easing.InOutQuart + } + } + } + + Connections { + function onSetSidebarActive(active) { + if (active) + sidebar.state = "active" + else + sidebar.state = "inactive" + } + + function onSetNavigationItem(pos) { + if (pos === 0) + nav.onPageChanged("Create") + else + nav.onPageChanged("Workshop") + } + + target: stackView.currentItem + ignoreUnknownSignals: true + } + + Installed.Sidebar { + id: sidebar + objectName: "installedSidebar" + navHeight: nav.height + + anchors { + top: parent.top + right: parent.right + bottom: parent.bottom + } + } + + Navigation.Navigation { + id: nav + modalSource: content + anchors { + top: parent.top + right: parent.right + left: parent.left + } + + onChangePage: function (name) { + monitors.close() + switchPage(name) + } + } + } } Rectangle { diff --git a/ScreenPlay/qml/Common/Dialog.qml b/ScreenPlay/qml/Common/Dialog.qml new file mode 100644 index 00000000..a92cf335 --- /dev/null +++ b/ScreenPlay/qml/Common/Dialog.qml @@ -0,0 +1,29 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Qt5Compat.GraphicalEffects +import QtQuick.Controls.Material.impl +import QtQuick.Controls.Material +import ScreenPlay 1.0 + +Dialog { + id: root + property Item modalSource + dim: true + anchors.centerIn: Overlay.overlay + modal: true + focus: true + + + + Overlay.modal: ModalBackgroundBlur { + id: blurBg + sourceItem: root.modalSource + hideSource: root.hideSource + } + // Workaround for missing animation on hide + // when using hideSource + property bool hideSource: true + onAboutToHide: root.hideSource = false + onAboutToShow: root.hideSource = true +} diff --git a/ScreenPlay/qml/Common/Dialogs/CriticalError.qml b/ScreenPlay/qml/Common/Dialogs/CriticalError.qml index 3ef27f01..3543e4a0 100644 --- a/ScreenPlay/qml/Common/Dialogs/CriticalError.qml +++ b/ScreenPlay/qml/Common/Dialogs/CriticalError.qml @@ -5,29 +5,24 @@ import QtQuick.Controls.Material import QtQuick.Window import Qt5Compat.GraphicalEffects import ScreenPlay 1.0 -import "../" +import "../" as Common -Dialog { +Common.Dialog { id: root property ApplicationWindow window property string message - property var modalSource - - Overlay.modal: ModalBackgroundBlur { - sourceItem: root.modalSource - } - anchors.centerIn: Overlay.overlay standardButtons: Dialog.Ok | Dialog.Help onHelpRequested: { - Qt.openUrlExternally("https://forum.screen-play.app/category/7/troubleshooting"); + Qt.openUrlExternally( + "https://forum.screen-play.app/category/7/troubleshooting") } Connections { function onDisplayErrorPopup(msg) { - root.message = msg; - root.window.show(); - root.open(); + root.message = msg + root.window.show() + root.open() } target: ScreenPlay.screenPlayManager @@ -55,9 +50,7 @@ Dialog { effect: ColorOverlay { color: Material.color(Material.DeepOrange) } - } - } Text { @@ -71,9 +64,6 @@ Dialog { font.pointSize: 16 color: Material.primaryTextColor } - } - } - } diff --git a/ScreenPlay/qml/Common/Dialogs/MonitorConfiguration.qml b/ScreenPlay/qml/Common/Dialogs/MonitorConfiguration.qml index 8b155c7a..e95096ab 100644 --- a/ScreenPlay/qml/Common/Dialogs/MonitorConfiguration.qml +++ b/ScreenPlay/qml/Common/Dialogs/MonitorConfiguration.qml @@ -3,25 +3,17 @@ import QtQuick.Controls import QtQuick.Layouts import QtQuick.Controls.Material import ScreenPlay 1.0 -import "../" +import "../" as Common -Dialog { - id: dialogMonitorConfigurationChanged +Common.Dialog { + id: root - property var modalSource - modal: true - - anchors.centerIn: Overlay.overlay standardButtons: Dialog.Ok contentHeight: 250 - Overlay.modal: ModalBackgroundBlur { - sourceItem: root.modalSource - } - Connections { function onMonitorConfigurationChanged() { - dialogMonitorConfigurationChanged.open(); + root.open() } target: ScreenPlay.monitorListModel @@ -51,10 +43,6 @@ Dialog { font.pointSize: 16 color: Material.primaryTextColor } - } - } - } - diff --git a/ScreenPlay/qml/Common/Dialogs/SteamNotAvailable.qml b/ScreenPlay/qml/Common/Dialogs/SteamNotAvailable.qml index 3741388b..ce0b2982 100644 --- a/ScreenPlay/qml/Common/Dialogs/SteamNotAvailable.qml +++ b/ScreenPlay/qml/Common/Dialogs/SteamNotAvailable.qml @@ -1,19 +1,11 @@ import QtQuick import QtQuick.Controls import QtQuick.Layouts -import "../" +import "../" as Common -Dialog { +Common.Dialog { id: root - property var modalSource - Overlay.modal: ModalBackgroundBlur { - sourceItem: root.modalSource - } - modal: true - anchors.centerIn: Overlay.overlay standardButtons: Dialog.Ok title: qsTr("Could not load steam integration!") - - } diff --git a/ScreenPlay/qml/Common/ModalBackgroundBlur.qml b/ScreenPlay/qml/Common/ModalBackgroundBlur.qml index cb803186..9b3821b8 100644 --- a/ScreenPlay/qml/Common/ModalBackgroundBlur.qml +++ b/ScreenPlay/qml/Common/ModalBackgroundBlur.qml @@ -3,10 +3,13 @@ import Qt5Compat.GraphicalEffects FastBlur { id: root - property var sourceItem + property Item sourceItem + property bool hideSource: true source: ShaderEffectSource { + id: effectSource sourceItem: root.sourceItem live: false + hideSource: root.hideSource } radius: 64 transparentBorder: true diff --git a/ScreenPlay/qml/Common/Popup.qml b/ScreenPlay/qml/Common/Popup.qml new file mode 100644 index 00000000..19f07188 --- /dev/null +++ b/ScreenPlay/qml/Common/Popup.qml @@ -0,0 +1,26 @@ +import QtQuick +import QtQuick.Controls +import Qt5Compat.GraphicalEffects +import QtQuick.Controls.Material +import QtQuick.Layouts + + +Popup { + id: root + property Item modalSource + // Workaround for missing animation on hide + // when using hideSource + property bool aboutToHide: false + dim: true + anchors.centerIn: Overlay.overlay + modal: true + focus: true + + Overlay.modal: ModalBackgroundBlur { + id: blurBg + sourceItem: root.modalSource + hideSource: root.aboutToHide + } + onAboutToHide: root.aboutToHide = false + onClosed: root.aboutToHide = true +} diff --git a/ScreenPlay/qml/Common/Search.qml b/ScreenPlay/qml/Common/Search.qml index 46ec1108..b1cdcf70 100644 --- a/ScreenPlay/qml/Common/Search.qml +++ b/ScreenPlay/qml/Common/Search.qml @@ -27,9 +27,10 @@ Item { TextField { id: txtSearch - + placeholderTextColor: Material.secondaryTextColor width: 250 height: 40 + color: Material.secondaryTextColor placeholderText: qsTr("Search for Wallpaper & Widgets") onTextChanged: { if (txtSearch.text.length === 0) diff --git a/ScreenPlay/qml/Common/TextField.qml b/ScreenPlay/qml/Common/TextField.qml index 78c1e9c7..3612ba51 100644 --- a/ScreenPlay/qml/Common/TextField.qml +++ b/ScreenPlay/qml/Common/TextField.qml @@ -68,6 +68,7 @@ Item { font.family: ScreenPlay.settings.font color: Material.secondaryTextColor + placeholderTextColor: Material.secondaryTextColor width: parent.width Keys.onEscapePressed: resetState() onTextEdited: { diff --git a/ScreenPlay/qml/Common/TrayIcon.qml b/ScreenPlay/qml/Common/TrayIcon.qml index 609b67cc..7b4eecc9 100644 --- a/ScreenPlay/qml/Common/TrayIcon.qml +++ b/ScreenPlay/qml/Common/TrayIcon.qml @@ -10,19 +10,19 @@ SystemTrayIcon { visible: true icon.source: "qrc:/assets/icons/app.ico" tooltip: qsTr("ScreenPlay - Double click to change you settings.") - onActivated: (reason)=>{ + onActivated: function (reason) { switch (reason) { case SystemTrayIcon.Unknown: - break; + break case SystemTrayIcon.Context: - break; + break case SystemTrayIcon.DoubleClick: - window.show(); - break; + window.show() + break case SystemTrayIcon.Trigger: - break; + break case SystemTrayIcon.MiddleClick: - break; + break } } @@ -30,7 +30,7 @@ SystemTrayIcon { MenuItem { text: qsTr("Open ScreenPlay") onTriggered: { - window.show(); + window.show() } } @@ -42,13 +42,15 @@ SystemTrayIcon { text: qsTr("Mute all") onTriggered: { if (miMuteAll.isMuted) { - isMuted = false; - miMuteAll.text = qsTr("Mute all"); - ScreenPlay.screenPlayManager.setAllWallpaperValue("muted", "true"); + isMuted = false + miMuteAll.text = qsTr("Mute all") + ScreenPlay.screenPlayManager.setAllWallpaperValue("muted", + "true") } else { - isMuted = true; - miMuteAll.text = qsTr("Unmute all"); - ScreenPlay.screenPlayManager.setAllWallpaperValue("muted", "false"); + isMuted = true + miMuteAll.text = qsTr("Unmute all") + ScreenPlay.screenPlayManager.setAllWallpaperValue("muted", + "false") } } } @@ -61,13 +63,15 @@ SystemTrayIcon { text: qsTr("Pause all") onTriggered: { if (miStopAll.isPlaying) { - isPlaying = false; - miStopAll.text = qsTr("Pause all"); - ScreenPlay.screenPlayManager.setAllWallpaperValue("isPlaying", "true"); + isPlaying = false + miStopAll.text = qsTr("Pause all") + ScreenPlay.screenPlayManager.setAllWallpaperValue( + "isPlaying", "true") } else { - isPlaying = true; - miStopAll.text = qsTr("Play all"); - ScreenPlay.screenPlayManager.setAllWallpaperValue("isPlaying", "false"); + isPlaying = true + miStopAll.text = qsTr("Play all") + ScreenPlay.screenPlayManager.setAllWallpaperValue( + "isPlaying", "false") } } } @@ -76,7 +80,5 @@ SystemTrayIcon { text: qsTr("Quit") onTriggered: ScreenPlay.exit() } - } - } diff --git a/ScreenPlay/qml/Community/Community.qml b/ScreenPlay/qml/Community/Community.qml index 93d1a909..31b05c20 100644 --- a/ScreenPlay/qml/Community/Community.qml +++ b/ScreenPlay/qml/Community/Community.qml @@ -8,7 +8,7 @@ import ScreenPlay 1.0 Item { id: root - required property var modalSource + required property Item modalSource XMLNewsfeed { anchors { diff --git a/ScreenPlay/qml/Create/Create.qml b/ScreenPlay/qml/Create/Create.qml index c1a9a909..05d93059 100644 --- a/ScreenPlay/qml/Create/Create.qml +++ b/ScreenPlay/qml/Create/Create.qml @@ -12,7 +12,7 @@ import ScreenPlay.QMLUtilities 1.0 Item { id: root - required property var modalSource + required property Item modalSource Component.onCompleted: { wizardContentWrapper.state = "in"; diff --git a/ScreenPlay/qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaper.qml b/ScreenPlay/qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaper.qml index 06e55608..7aeea059 100644 --- a/ScreenPlay/qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaper.qml +++ b/ScreenPlay/qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaper.qml @@ -21,25 +21,25 @@ Item { clip: true CreateWallpaperInit { - onNext: (filePath, codec) => { - startConvert(filePath, codec) - } + onNext: function (filePath, codec) { + startConvert(filePath, codec) + } - function startConvert(filePath, codec) { - root.wizardStarted() - swipeView.currentIndex = 1 - createWallpaperVideoImportConvert.codec = codec - createWallpaperVideoImportConvert.filePath = filePath - ScreenPlay.create.createWallpaperStart(filePath, codec, quality) + function startConvert(filePath, codec) { + root.wizardStarted() + swipeView.currentIndex = 1 + createWallpaperVideoImportConvert.codec = codec + createWallpaperVideoImportConvert.filePath = filePath + ScreenPlay.create.createWallpaperStart(filePath, codec, quality) + } } + + CreateWallpaperVideoImportConvert { + id: createWallpaperVideoImportConvert + + onAbort: root.wizardExited() + } + + CreateWallpaperResult {} } - - CreateWallpaperVideoImportConvert { - id: createWallpaperVideoImportConvert - - onAbort: root.wizardExited() - } - - CreateWallpaperResult {} -} } diff --git a/ScreenPlay/qml/Create/Wizards/ImportWebm/ImportWebm.qml b/ScreenPlay/qml/Create/Wizards/ImportWebm/ImportWebm.qml index 0ba316b6..d70a9293 100644 --- a/ScreenPlay/qml/Create/Wizards/ImportWebm/ImportWebm.qml +++ b/ScreenPlay/qml/Create/Wizards/ImportWebm/ImportWebm.qml @@ -9,9 +9,9 @@ import ScreenPlay.Create 1.0 Item { id: root - signal wizardStarted() - signal wizardExited() - signal next() + signal wizardStarted + signal wizardExited + signal next SwipeView { id: swipeView @@ -21,12 +21,12 @@ Item { clip: true ImportWebmInit { - onNext: (filePath) =>{ - root.wizardStarted(); - swipeView.currentIndex = 1; - createWallpaperVideoImportConvert.filePath = filePath; - ScreenPlay.util.setNavigationActive(false); - ScreenPlay.create.createWallpaperStart(filePath); + onNext: function (filePath) { + root.wizardStarted() + swipeView.currentIndex = 1 + createWallpaperVideoImportConvert.filePath = filePath + ScreenPlay.util.setNavigationActive(false) + ScreenPlay.create.createWallpaperStart(filePath) } } @@ -35,7 +35,5 @@ Item { onExit: root.wizardExited() } - } - } diff --git a/ScreenPlay/qml/Create/Wizards/Importh264/Importh264.qml b/ScreenPlay/qml/Create/Wizards/Importh264/Importh264.qml index a9830f67..8583ae7c 100644 --- a/ScreenPlay/qml/Create/Wizards/Importh264/Importh264.qml +++ b/ScreenPlay/qml/Create/Wizards/Importh264/Importh264.qml @@ -9,9 +9,9 @@ import ScreenPlay.Create 1.0 Item { id: root - signal wizardStarted() - signal wizardExited() - signal next() + signal wizardStarted + signal wizardExited + signal next SwipeView { id: swipeView @@ -21,12 +21,12 @@ Item { clip: true Importh264Init { - onNext: (filePath) =>{ - root.wizardStarted(); - swipeView.currentIndex = 1; - createWallpaperVideoImportConvert.filePath = filePath; - ScreenPlay.util.setNavigationActive(false); - ScreenPlay.create.importH264(filePath); + onNext: function (filePath) { + root.wizardStarted() + swipeView.currentIndex = 1 + createWallpaperVideoImportConvert.filePath = filePath + ScreenPlay.util.setNavigationActive(false) + ScreenPlay.create.importH264(filePath) } } @@ -35,7 +35,5 @@ Item { onExit: root.wizardExited() } - } - } diff --git a/ScreenPlay/qml/Create/Wizards/Importh264/Importh264Init.qml b/ScreenPlay/qml/Create/Wizards/Importh264/Importh264Init.qml index a458ba40..3adb19bd 100644 --- a/ScreenPlay/qml/Create/Wizards/Importh264/Importh264Init.qml +++ b/ScreenPlay/qml/Create/Wizards/Importh264/Importh264Init.qml @@ -119,7 +119,7 @@ Item { id: btnOpenDocs text: qsTr("Open Documentation") - Material.background: Material.LightGreen + Material.accent: Material.color(Material.LightGreen) highlighted: true icon.source: "qrc:/assets/icons/icon_document.svg" icon.color: "white" diff --git a/ScreenPlay/qml/Installed/Installed.qml b/ScreenPlay/qml/Installed/Installed.qml index 5797083e..4e2798a2 100644 --- a/ScreenPlay/qml/Installed/Installed.qml +++ b/ScreenPlay/qml/Installed/Installed.qml @@ -6,6 +6,7 @@ import QtQuick.Controls.Material.impl import ScreenPlay 1.0 import ScreenPlay.Enums.InstalledType 1.0 import ScreenPlay.Enums.SearchType 1.0 +import "../Common" as Common Item { id: root @@ -20,24 +21,24 @@ Item { function checkIsContentInstalled() { if (ScreenPlay.installedListModel.count === 0) { - loaderHelp.active = true; - gridView.footerItem.isVisible = true; - gridView.visible = false; - navWrapper.visible = false; + loaderHelp.active = true + gridView.footerItem.isVisible = true + gridView.visible = false + navWrapper.visible = false } else { - loaderHelp.active = false; - gridView.footerItem.isVisible = false; - refresh = false; - gridView.contentY = -82; - gridView.visible = true; - navWrapper.visible = true; + loaderHelp.active = false + gridView.footerItem.isVisible = false + refresh = false + gridView.contentY = -82 + gridView.visible = true + navWrapper.visible = true } } Component.onCompleted: { - navWrapper.state = "in"; - ScreenPlay.installedListFilter.sortBySearchType(SearchType.All); - checkIsContentInstalled(); + navWrapper.state = "in" + ScreenPlay.installedListFilter.sortBySearchType(SearchType.All) + checkIsContentInstalled() } Action { @@ -47,7 +48,7 @@ Item { Connections { function onHelperButtonPressed(pos) { - setNavigationItem(pos); + setNavigationItem(pos) } target: loaderHelp.item @@ -55,13 +56,12 @@ Item { Connections { function onInstalledLoadingFinished() { - checkIsContentInstalled(); + checkIsContentInstalled() } function onCountChanged(count) { if (count === 0) - checkIsContentInstalled(); - + checkIsContentInstalled() } target: ScreenPlay.installedListModel @@ -78,7 +78,7 @@ Item { Connections { function onSortChanged() { - gridView.positionViewAtBeginning(); + gridView.positionViewAtBeginning() } target: ScreenPlay.installedListFilter @@ -135,13 +135,12 @@ Item { } onContentYChanged: { if (contentY <= -180) - gridView.headerItem.isVisible = true; + gridView.headerItem.isVisible = true else - gridView.headerItem.isVisible = false; + gridView.headerItem.isVisible = false //Pull to refresh if (contentY <= -180 && !refresh && !isDragging) - ScreenPlay.installedListModel.reset(); - + ScreenPlay.installedListModel.reset() } anchors { @@ -158,11 +157,11 @@ Item { opacity: 0 onIsVisibleChanged: { if (isVisible) { - txtHeader.color = Material.accent; - txtHeader.text = qsTr("Refreshing!"); + txtHeader.color = Material.accent + txtHeader.text = qsTr("Refreshing!") } else { - txtHeader.color = "gray"; - txtHeader.text = qsTr("Pull to refresh!"); + txtHeader.color = "gray" + txtHeader.text = qsTr("Pull to refresh!") } } @@ -170,7 +169,7 @@ Item { interval: 150 running: true onTriggered: { - animFadeIn.start(); + animFadeIn.start() } } @@ -192,7 +191,6 @@ Item { running: false duration: 1000 } - } footer: Item { @@ -215,7 +213,7 @@ Item { interval: 400 running: true onTriggered: { - animFadeInTxtFooter.start(); + animFadeInTxtFooter.start() } } @@ -227,9 +225,7 @@ Item { running: false duration: 1000 } - } - } delegate: ScreenPlayItem { @@ -244,24 +240,23 @@ Item { publishedFileID: m_publishedFileID itemIndex: index isScrolling: gridView.isScrolling - onOpenContextMenu: (position)=>{ + onOpenContextMenu: function (position) { // Set the menu to the current item informations - contextMenu.publishedFileID = delegate.publishedFileID; - contextMenu.absoluteStoragePath = delegate.absoluteStoragePath; - const pos = delegate.mapToItem(root, position.x, position.y); + contextMenu.publishedFileID = delegate.publishedFileID + contextMenu.absoluteStoragePath = delegate.absoluteStoragePath + const pos = delegate.mapToItem(root, position.x, position.y) // Disable duplicate opening. The can happen if we // call popup when we are in the closing animtion. if (contextMenu.visible || contextMenu.opened) - return ; + return - contextMenu.popup(pos.x, pos.y); + contextMenu.popup(pos.x, pos.y) } } ScrollBar.vertical: ScrollBar { snapMode: ScrollBar.SnapOnRelease } - } Menu { @@ -302,7 +297,7 @@ Item { } } - Dialog { + Common.Dialog { id: deleteDialog title: qsTr("Are you sure you want to delete this item?") standardButtons: Dialog.Ok | Dialog.Cancel diff --git a/ScreenPlay/qml/Installed/ScreenPlayItem.qml b/ScreenPlay/qml/Installed/ScreenPlayItem.qml index 1f0d5ba6..fb70d8fd 100644 --- a/ScreenPlay/qml/Installed/ScreenPlayItem.qml +++ b/ScreenPlay/qml/Installed/ScreenPlayItem.qml @@ -173,14 +173,13 @@ Item { } } - Rectangle { width: 120 height: 20 - anchors{ - top:parent.top - right:parent.right + anchors { + top: parent.top + right: parent.right rightMargin: -60 topMargin: -20 } @@ -224,7 +223,7 @@ Item { screenPlayItemImage.state = "loaded" screenPlayItemImage.exit() } - onClicked: (mouse)=> { + onClicked: function (mouse) { if (mouse.button === Qt.LeftButton) ScreenPlay.util.setSidebarItem(root.screenId, root.type) else if (mouse.button === Qt.RightButton) diff --git a/ScreenPlay/qml/Monitors/DefaultVideoControls.qml b/ScreenPlay/qml/Monitors/DefaultVideoControls.qml index 70176db2..13b6bc85 100644 --- a/ScreenPlay/qml/Monitors/DefaultVideoControls.qml +++ b/ScreenPlay/qml/Monitors/DefaultVideoControls.qml @@ -48,17 +48,6 @@ ColumnLayout { } } - SP.Slider { - id: slPlaybackRate - - headline: qsTr("Playback rate") - slider.onValueChanged: ScreenPlay.screenPlayManager.setWallpaperValueAtMonitorIndex(activeMonitorIndex, "playbackRate", (Math.round(slPlaybackRate.slider.value * 100) / 100)) - Layout.fillWidth: true - slider.stepSize: 0.1 - slider.to: 1 - Layout.leftMargin: 10 - Layout.rightMargin: 10 - } SP.Slider { id: slCurrentVideoTime @@ -118,6 +107,11 @@ ColumnLayout { } } + Item { + Layout.fillHeight: true + Layout.fillWidth: true + } + } states: [ diff --git a/ScreenPlay/qml/Monitors/MonitorSelection.qml b/ScreenPlay/qml/Monitors/MonitorSelection.qml index 38c8e65f..d6be1403 100644 --- a/ScreenPlay/qml/Monitors/MonitorSelection.qml +++ b/ScreenPlay/qml/Monitors/MonitorSelection.qml @@ -22,96 +22,96 @@ Rectangle { function selectOnly(index) { for (var i = 0; i < rp.count; i++) { if (i === index) { - rp.itemAt(i).isSelected = true; - continue; + rp.itemAt(i).isSelected = true + continue } - rp.itemAt(i).isSelected = false; + rp.itemAt(i).isSelected = false } } function reset() { for (var i = 0; i < rp.count; i++) { - rp.itemAt(i).isSelected = false; + rp.itemAt(i).isSelected = false } - rp.itemAt(0).isSelected = true; - getActiveMonitors(); + rp.itemAt(0).isSelected = true + getActiveMonitors() } function getActiveMonitors() { - root.activeMonitors = []; + root.activeMonitors = [] for (var i = 0; i < rp.count; i++) { if (rp.itemAt(i).isSelected) - root.activeMonitors.push(rp.itemAt(i).index); - + root.activeMonitors.push(rp.itemAt(i).index) } // Must be called manually. When QML properties are getting altered in js the // property binding breaks - root.activeMonitorsChanged(); - return root.activeMonitors; + root.activeMonitorsChanged() + return root.activeMonitors } function selectMonitorAt(index) { if (!multipleMonitorsSelectable) - selectOnly(index); + selectOnly(index) else - rp.itemAt(index).isSelected = !rp.itemAt(index).isSelected; - getActiveMonitors(); + rp.itemAt(index).isSelected = !rp.itemAt(index).isSelected + getActiveMonitors() if (rp.itemAt(index).hasContent) - root.requestProjectSettings(index, rp.itemAt(index).installedType, rp.itemAt(index).appID); - + root.requestProjectSettings(index, rp.itemAt(index).installedType, + rp.itemAt(index).appID) } function resize() { - var absoluteDesktopSize = ScreenPlay.monitorListModel.absoluteDesktopSize(); - var isWidthGreaterThanHeight = false; - var windowsDelta = 0; + var absoluteDesktopSize = ScreenPlay.monitorListModel.absoluteDesktopSize() + var isWidthGreaterThanHeight = false + var windowsDelta = 0 if (absoluteDesktopSize.width < absoluteDesktopSize.height) { - windowsDelta = absoluteDesktopSize.width / absoluteDesktopSize.height; - isWidthGreaterThanHeight = false; + windowsDelta = absoluteDesktopSize.width / absoluteDesktopSize.height + isWidthGreaterThanHeight = false } else { - windowsDelta = absoluteDesktopSize.height / absoluteDesktopSize.width; - isWidthGreaterThanHeight = true; + windowsDelta = absoluteDesktopSize.height / absoluteDesktopSize.width + isWidthGreaterThanHeight = true } if (rp.count === 1) - availableWidth = availableWidth * 0.66; + availableWidth = availableWidth * 0.66 - var dynamicHeight = availableWidth * windowsDelta; - var dynamicWidth = availableHeight * windowsDelta; + var dynamicHeight = availableWidth * windowsDelta + var dynamicWidth = availableHeight * windowsDelta // Delta (height/width) - var monitorHeightRationDelta = 0; - var monitorWidthRationDelta = 0; + var monitorHeightRationDelta = 0 + var monitorWidthRationDelta = 0 if (isWidthGreaterThanHeight) { - monitorHeightRationDelta = dynamicHeight / absoluteDesktopSize.height; - monitorWidthRationDelta = availableWidth / absoluteDesktopSize.width; + monitorHeightRationDelta = dynamicHeight / absoluteDesktopSize.height + monitorWidthRationDelta = availableWidth / absoluteDesktopSize.width } else { - monitorHeightRationDelta = availableHeight / absoluteDesktopSize.height; - monitorWidthRationDelta = dynamicWidth / absoluteDesktopSize.width; + monitorHeightRationDelta = availableHeight / absoluteDesktopSize.height + monitorWidthRationDelta = dynamicWidth / absoluteDesktopSize.width } for (var i = 0; i < rp.count; i++) { - rp.itemAt(i).index = i; - rp.itemAt(i).height = rp.itemAt(i).height * monitorHeightRationDelta; - rp.itemAt(i).width = rp.itemAt(i).width * monitorWidthRationDelta; - rp.itemAt(i).x = rp.itemAt(i).x * monitorWidthRationDelta; - rp.itemAt(i).y = rp.itemAt(i).y * monitorHeightRationDelta; - rp.contentWidth += rp.itemAt(i).width; - rp.contentHeight += rp.itemAt(i).height; + rp.itemAt(i).index = i + rp.itemAt(i).height = rp.itemAt(i).height * monitorHeightRationDelta + rp.itemAt(i).width = rp.itemAt(i).width * monitorWidthRationDelta + rp.itemAt(i).x = rp.itemAt(i).x * monitorWidthRationDelta + rp.itemAt(i).y = rp.itemAt(i).y * monitorHeightRationDelta + rp.contentWidth += rp.itemAt(i).width + rp.contentHeight += rp.itemAt(i).height } - rp.contentWidth += 200; - rp.contentHeight += 200; + rp.contentWidth += 200 + rp.contentHeight += 200 } - color: Material.theme === Material.Light ? Material.background : Qt.darker(Material.background) + color: Material.theme === Material.Light ? Material.background : Qt.darker( + Material.background) height: availableHeight width: parent.width clip: true layer.enabled: true Component.onCompleted: { - resize(); + resize() } Connections { function onMonitorReloadCompleted() { - resize(); + resize() } target: ScreenPlay.monitorListModel @@ -142,9 +142,10 @@ Rectangle { previewImage: m_previewImage installedType: m_installedType monitorWithoutContentSelectable: root.monitorWithoutContentSelectable - onMonitorSelected: (index) => root.selectMonitorAt(index) + onMonitorSelected: function (index) { + root.selectMonitorAt(index) + } } - } ScrollBar.vertical: ScrollBar { @@ -156,8 +157,5 @@ Rectangle { policy: ScrollBar.AlwaysOff snapMode: ScrollBar.SnapOnRelease } - } - - } diff --git a/ScreenPlay/qml/Monitors/Monitors.qml b/ScreenPlay/qml/Monitors/Monitors.qml index ae032843..04d87f0d 100644 --- a/ScreenPlay/qml/Monitors/Monitors.qml +++ b/ScreenPlay/qml/Monitors/Monitors.qml @@ -6,32 +6,23 @@ import QtQuick.Layouts import QtQuick.Controls.Material.impl import ScreenPlay 1.0 import ScreenPlay.Enums.InstalledType 1.0 -import "../Common/" as SP +import "../Common/" as Common -Popup { +Common.Popup { id: root property string activeMonitorName: "" property int activeMonitorIndex - property var modalSource - - Overlay.modal: SP.ModalBackgroundBlur { - sourceItem: root.modalSource - } width: 1000 height: 500 - dim: true - anchors.centerIn: Overlay.overlay - modal: true - focus: true onOpened: { - monitorSelection.selectMonitorAt(0); + monitorSelection.selectMonitorAt(0) } Connections { function onRequestToggleWallpaperConfiguration() { - root.open(); + root.open() } target: ScreenPlay.util @@ -75,7 +66,6 @@ Popup { left: parent.left leftMargin: 20 } - } MonitorSelection { @@ -88,20 +78,23 @@ Popup { monitorWithoutContentSelectable: false availableWidth: width - 20 availableHeight: 150 - onRequestProjectSettings: ( index, installedType, appID) => { + onRequestProjectSettings: function (index, installedType, appID) { if (installedType === InstalledType.VideoWallpaper) { - videoControlWrapper.state = "visible"; - customPropertiesGridView.visible = false; - const wallpaper = ScreenPlay.screenPlayManager.getWallpaperByAppID(appID); - videoControlWrapper.wallpaper = wallpaper; + videoControlWrapper.state = "visible" + customPropertiesGridView.visible = false + const wallpaper = ScreenPlay.screenPlayManager.getWallpaperByAppID( + appID) + videoControlWrapper.wallpaper = wallpaper } else { - videoControlWrapper.state = "hidden"; - customPropertiesGridView.visible = true; - if(!ScreenPlay.screenPlayManager.requestProjectSettingsAtMonitorIndex(index)){ - console.warn("Unable to get requested settings from index: ", index) + videoControlWrapper.state = "hidden" + customPropertiesGridView.visible = true + if (!ScreenPlay.screenPlayManager.requestProjectSettingsAtMonitorIndex( + index)) { + console.warn("Unable to get requested settings from index: ", + index) } } - activeMonitorIndex = index; + activeMonitorIndex = index } anchors { @@ -113,12 +106,11 @@ Popup { Connections { function onProjectSettingsListModelResult(listModel) { - customPropertiesGridView.projectSettingsListmodelRef = listModel; + customPropertiesGridView.projectSettingsListmodelRef = listModel } target: ScreenPlay.screenPlayManager } - } ColumnLayout { @@ -137,34 +129,39 @@ Popup { highlighted: true text: qsTr("Remove selected") font.family: ScreenPlay.settings.font - enabled: monitorSelection.activeMonitors.length == 1 && ScreenPlay.screenPlayManager.activeWallpaperCounter > 0 + enabled: monitorSelection.activeMonitors.length == 1 + && ScreenPlay.screenPlayManager.activeWallpaperCounter > 0 onClicked: { - if (!ScreenPlay.screenPlayManager.removeWallpaperAt(monitorSelection.activeMonitors[0])) - print("Unable to close singel wallpaper"); - + if (!ScreenPlay.screenPlayManager.removeWallpaperAt( + monitorSelection.activeMonitors[0])) + print("Unable to close singel wallpaper") } } Button { id: btnRemoveAllWallpape - text: qsTr("Remove all ") + ScreenPlay.screenPlayManager.activeWallpaperCounter + " " + qsTr("Wallpapers") + text: qsTr("Remove all ") + + ScreenPlay.screenPlayManager.activeWallpaperCounter + " " + qsTr( + "Wallpapers") Material.background: Material.accent highlighted: true font.family: ScreenPlay.settings.font enabled: ScreenPlay.screenPlayManager.activeWallpaperCounter > 0 onClicked: { if (!ScreenPlay.screenPlayManager.removeAllWallpapers()) - print("Unable to close all wallpaper!"); + print("Unable to close all wallpaper!") - root.close(); + root.close() } } Button { id: btnRemoveAllWidgets - text: qsTr("Remove all ") + ScreenPlay.screenPlayManager.activeWidgetsCounter + " " + qsTr("Widgets") + text: qsTr("Remove all ") + + ScreenPlay.screenPlayManager.activeWidgetsCounter + " " + qsTr( + "Widgets") Material.background: Material.accent Material.foreground: Material.primaryTextColor highlighted: true @@ -172,18 +169,17 @@ Popup { enabled: ScreenPlay.screenPlayManager.activeWidgetsCounter > 0 onClicked: { if (!ScreenPlay.screenPlayManager.removeAllWidgets()) - print("Unable to close all widgets!"); + print("Unable to close all widgets!") - root.close(); + root.close() } } - } - } Rectangle { - color: Material.theme === Material.Light ? Material.background : Qt.darker(Material.background) + color: Material.theme === Material.Light ? Material.background : Qt.darker( + Material.background) radius: 3 clip: true @@ -239,9 +235,7 @@ Popup { snapMode: ScrollBar.SnapOnRelease policy: ScrollBar.AlwaysOn } - } - } ToolButton { @@ -257,7 +251,6 @@ Popup { top: parent.top right: parent.right } - } SaveNotification { @@ -268,15 +261,12 @@ Popup { Connections { function onProfilesSaved() { if (root.opened) - saveNotification.open(); - + saveNotification.open() } target: ScreenPlay.screenPlayManager } - } - } background: Rectangle { @@ -288,7 +278,5 @@ Popup { layer.effect: ElevationEffect { elevation: 6 } - } - } diff --git a/ScreenPlay/qml/Navigation/Navigation.qml b/ScreenPlay/qml/Navigation/Navigation.qml index 1a176510..58aa305f 100644 --- a/ScreenPlay/qml/Navigation/Navigation.qml +++ b/ScreenPlay/qml/Navigation/Navigation.qml @@ -15,12 +15,10 @@ Rectangle { property string currentNavigationName: "Installed" property var navArray: [navCreate, navWorkshop, navInstalled, navSettings, navCommunity] property bool navActive: true - property ApplicationWindow window - property var modalSource + property Item modalSource property int iconWidth: 16 property int iconHeight: iconWidth - signal changePage(string name) function setActive(active) { @@ -51,78 +49,13 @@ Rectangle { setNavigation(name) } - height: 89 + implicitWidth: 1366 + height: 60 width: 1366 color: Material.theme === Material.Light ? "white" : Material.background layer.enabled: true - - Rectangle { - id:navBg - height:29 - width:parent.width - color: Material.theme === Material.Light ? Material.background : "#242424" - - Text { - id: title - text: qsTr("ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets").arg(ScreenPlay.version()) - color: Material.primaryTextColor - anchors{ - left:parent.left - leftMargin: 20 - verticalCenter: parent.verticalCenter - } - } - } - - MouseArea { - id: mouseArea - - property var clickPos - - anchors.fill: parent - hoverEnabled: true - onPressed: (mouse)=>{ - clickPos = { - "x": mouse.x, - "y": mouse.y - }; - } - onPositionChanged: { - if (mouseArea.pressed){ - let pos = ScreenPlay.cursorPos(); - window.setX(pos.x - clickPos.x) - window.setY(pos.y - clickPos.y) - } - - } - } - - RowLayout { - anchors { - top:navBg.top - right: navBg.right - bottom: navBg.bottom - } - - WindowNavButton { - id: miMinimize - Layout.alignment: Qt.AlignVCenter - icon.source: "qrc:/assets/icons/icon_minimize.svg" - onClicked: root.window.hide() - } - WindowNavButton { - id: miquit - Layout.alignment: Qt.AlignVCenter - icon.source: "qrc:/assets/icons/icon_close.svg" - onClicked: { - if(ScreenPlay.screenPlayManager.activeWallpaperCounter === 0 - && ScreenPlay.screenPlayManager.activeWidgetsCounter === 0){ - Qt.quit() - return - } - dialog.open() - } - } + layer.effect: ElevationEffect { + elevation: 2 } Connections { @@ -137,16 +70,12 @@ Rectangle { target: ScreenPlay.util } - - - Row { id: row height: 60 anchors { - top:parent.top - topMargin: navBg.height + top: parent.top right: parent.right left: parent.left leftMargin: 20 @@ -161,7 +90,9 @@ Rectangle { name: "Create" text: qsTr("Create") iconSource: "qrc:/assets/icons/icon_plus.svg" - onPageClicked: (name)=> {root.onPageChanged(name)} + onPageClicked: function (name) { + root.onPageChanged(name) + } objectName: "createTab" } @@ -172,7 +103,9 @@ Rectangle { name: "Workshop" text: qsTr("Workshop") iconSource: "qrc:/assets/icons/icon_steam.svg" - onPageClicked: (name)=> {root.onPageChanged(name)} + onPageClicked: function (name) { + root.onPageChanged(name) + } objectName: "workshopTab" } @@ -184,7 +117,9 @@ Rectangle { text: qsTr("Installed") amount: ScreenPlay.installedListModel.count iconSource: "qrc:/assets/icons/icon_installed.svg" - onPageClicked: (name)=> {root.onPageChanged(name)} + onPageClicked: function (name) { + root.onPageChanged(name) + } objectName: "installedTab" } @@ -195,7 +130,9 @@ Rectangle { name: "Community" text: qsTr("Community") iconSource: "qrc:/assets/icons/icon_community.svg" - onPageClicked: (name)=> {root.onPageChanged(name)} + onPageClicked: function (name) { + root.onPageChanged(name) + } objectName: "communityTab" } @@ -206,27 +143,28 @@ Rectangle { name: "Settings" text: qsTr("Settings") iconSource: "qrc:/assets/icons/icon_settings.svg" - onPageClicked: (name)=> {root.onPageChanged(name)} + onPageClicked: function (name) { + root.onPageChanged(name) + } objectName: "settingsTab" } } Rectangle { - id:quickActionRowBackground + id: quickActionRowBackground anchors.centerIn: quickActionRow width: quickActionRow.width + 5 height: quickActionRow.height - 16 color: Material.theme === Material.Light ? Material.background : "#242424" - border.color: Material.theme === Material.Light ? Material.iconDisabledColor : Qt.darker(Material.background) + border.color: Material.theme === Material.Light ? Material.iconDisabledColor : Qt.darker( + Material.background) border.width: 1 radius: 3 } - RowLayout { anchors { top: parent.top - topMargin: navBg.height right: quickActionRow.left rightMargin: 20 bottom: parent.bottom @@ -235,7 +173,8 @@ Rectangle { ToolButton { icon.source: "qrc:/assets/icons/font-awsome/patreon-brands.svg" text: qsTr("Support me on Patreon!") - onClicked: Qt.openUrlExternally("https://www.patreon.com/ScreenPlayApp") + onClicked: Qt.openUrlExternally( + "https://www.patreon.com/ScreenPlayApp") } } @@ -243,7 +182,6 @@ Rectangle { id: quickActionRow anchors { top: parent.top - topMargin: navBg.height right: parent.right rightMargin: 10 bottom: parent.bottom @@ -253,9 +191,9 @@ Rectangle { || ScreenPlay.screenPlayManager.activeWidgetsCounter > 0 onContentActiveChanged: { - if(!contentActive){ - miMuteAll.isMuted = false - miStopAll.isPlaying = false + if (!contentActive) { + miMuteAll.soundEnabled = true + miStopAll.isPlaying = true } } @@ -267,10 +205,10 @@ Rectangle { icon.height: root.iconHeight enabled: quickActionRow.contentActive - onClicked: isMuted = !isMuted - property bool isMuted: false - onIsMutedChanged: { - if (miMuteAll.isMuted) { + onClicked: soundEnabled = !soundEnabled + property bool soundEnabled: true + onSoundEnabledChanged: { + if (miMuteAll.soundEnabled) { miMuteAll.icon.source = "qrc:/assets/icons/icon_volume.svg" ScreenPlay.screenPlayManager.setAllWallpaperValue("muted", "false") @@ -294,7 +232,7 @@ Rectangle { icon.height: root.iconHeight onClicked: isPlaying = !isPlaying property bool isPlaying: true - onIsPlayingChanged:{ + onIsPlayingChanged: { if (miStopAll.isPlaying) { miStopAll.icon.source = "qrc:/assets/icons/icon_pause.svg" ScreenPlay.screenPlayManager.setAllWallpaperValue( @@ -321,6 +259,8 @@ Rectangle { onClicked: { ScreenPlay.screenPlayManager.removeAllWallpapers() ScreenPlay.screenPlayManager.removeAllWidgets() + miStopAll.isPlaying = true + miMuteAll.soundEnabled = true } hoverEnabled: true @@ -329,39 +269,16 @@ Rectangle { } ToolButton { - id: miConfig - Layout.alignment: Qt.AlignVCenter - icon.source: "qrc:/assets/icons/icon_video_settings_black_24dp.svg" - icon.width: root.iconWidth - icon.height: root.iconHeight - onClicked: ScreenPlay.util.setToggleWallpaperConfiguration() - hoverEnabled: true - ToolTip.text: qsTr("Configure Wallpaper") - ToolTip.visible: hovered - } - - - - - - Dialog { - id: dialog - anchors.centerIn: Overlay.overlay - - Overlay.modal: ModalBackgroundBlur { - sourceItem: root.modalSource - } - title: qsTr("Are you sure you want to exit ScreenPlay? \nThis will shut down all Wallpaper and Widgets.") - standardButtons: Dialog.Ok | Dialog.Cancel - onAccepted: Qt.quit() - modal: true + id: miConfig + Layout.alignment: Qt.AlignVCenter + icon.source: "qrc:/assets/icons/icon_video_settings_black_24dp.svg" + icon.width: root.iconWidth + icon.height: root.iconHeight + onClicked: ScreenPlay.util.setToggleWallpaperConfiguration() + hoverEnabled: true + ToolTip.text: qsTr("Configure Wallpaper") + ToolTip.visible: hovered } - - - } - - layer.effect: ElevationEffect { - elevation: 2 } states: [ diff --git a/ScreenPlay/qml/Navigation/WindowNavigation.qml b/ScreenPlay/qml/Navigation/WindowNavigation.qml new file mode 100644 index 00000000..9b7a5a67 --- /dev/null +++ b/ScreenPlay/qml/Navigation/WindowNavigation.qml @@ -0,0 +1,92 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import QtQuick.Window +import QtQuick.Controls.Material +import Qt5Compat.GraphicalEffects +import QtQuick.Controls.Material.impl +import ScreenPlay 1.0 +import "../Workshop" +import "../Common" as Common + +Rectangle { + id: root + height: 29 + implicitWidth: 1366 + color: Material.theme === Material.Light ? Material.background : "#242424" + property Item modalSource + property ApplicationWindow window + + Text { + id: title + text: qsTr("ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets").arg( + ScreenPlay.version()) + color: Material.primaryTextColor + verticalAlignment: Text.AlignVCenter + + anchors { + top: parent.top + left: parent.left + leftMargin: 10 + bottom: parent.bottom + } + } + + MouseArea { + id: mouseArea + + property var clickPos + + anchors.fill: parent + hoverEnabled: true + onPressed: function (mouse) { + clickPos = { + "x": mouse.x, + "y": mouse.y + } + } + onPositionChanged: { + if (mouseArea.pressed) { + let pos = ScreenPlay.cursorPos() + window.setX(pos.x - clickPos.x) + window.setY(pos.y - clickPos.y) + } + } + } + + RowLayout { + anchors { + top: root.top + right: root.right + bottom: root.bottom + } + + WindowNavButton { + id: miMinimize + Layout.alignment: Qt.AlignVCenter + icon.source: "qrc:/assets/icons/icon_minimize.svg" + onClicked: root.window.hide() + } + WindowNavButton { + id: miquit + Layout.alignment: Qt.AlignVCenter + icon.source: "qrc:/assets/icons/icon_close.svg" + onClicked: { + if (ScreenPlay.screenPlayManager.activeWallpaperCounter === 0 + && ScreenPlay.screenPlayManager.activeWidgetsCounter === 0) { + Qt.quit() + return + } + dialog.open() + } + } + } + + Common.Dialog { + id: dialog + modalSource: root.modalSource + title: qsTr("Are you sure you want to exit ScreenPlay? \nThis will shut down all Wallpaper and Widgets.") + standardButtons: Dialog.Ok | Dialog.Cancel + onAccepted: Qt.quit() + } +} diff --git a/ScreenPlay/qml/Settings/SettingBool.qml b/ScreenPlay/qml/Settings/SettingBool.qml index 1158c5a9..9d7b4058 100644 --- a/ScreenPlay/qml/Settings/SettingBool.qml +++ b/ScreenPlay/qml/Settings/SettingBool.qml @@ -18,11 +18,11 @@ Item { width: parent.width onAvailableChanged: { if (!available) { - settingsBool.opacity = 0.5; - radioButton.enabled = false; + settingsBool.opacity = 0.5 + radioButton.enabled = false } else { - settingsButton.opacity = 1; - radioButton.enabled = true; + settingsButton.opacity = 1 + radioButton.enabled = true } } @@ -45,7 +45,6 @@ Item { right: parent.right rightMargin: 20 } - } Text { @@ -54,8 +53,13 @@ Item { text: settingsBool.description wrapMode: Text.WordWrap linkColor: Material.color(Material.Orange) - onLinkActivated: (link) => Qt.openUrlExternally(link) - color: Material.theme === Material.Light ? Qt.lighter(Material.foreground) : Qt.darker(Material.foreground) + onLinkActivated: function (link) { + Qt.openUrlExternally(link) + } + + color: Material.theme === Material.Light ? Qt.lighter( + Material.foreground) : Qt.darker( + Material.foreground) font.family: ScreenPlay.settings.font verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignLeft @@ -69,7 +73,6 @@ Item { right: radioButton.left rightMargin: 20 } - } CheckBox { @@ -78,9 +81,9 @@ Item { checked: settingsBool.isChecked onCheckedChanged: { if (radioButton.checkState === Qt.Checked) - checkboxChanged(true); + checkboxChanged(true) else - checkboxChanged(false); + checkboxChanged(false) } anchors { @@ -88,7 +91,5 @@ Item { rightMargin: 20 verticalCenter: parent.verticalCenter } - } - } diff --git a/ScreenPlay/qml/Settings/Settings.qml b/ScreenPlay/qml/Settings/Settings.qml index 73c6c644..17dcfafe 100644 --- a/ScreenPlay/qml/Settings/Settings.qml +++ b/ScreenPlay/qml/Settings/Settings.qml @@ -12,16 +12,15 @@ import "../Common" Item { id: root - required property var modalSource + required property Item modalSource function indexOfValue(model, value) { for (var i = 0; i < model.length; i++) { - let ourValue = model[i].value; + let ourValue = model[i].value if (value === ourValue) - return i; - + return i } - return -1; + return -1 } Flickable { @@ -74,13 +73,12 @@ Item { headline: qsTr("Autostart") description: qsTr("ScreenPlay will start with Windows and will setup your Desktop every time for you.") isChecked: ScreenPlay.settings.autostart - onCheckboxChanged: (checked) => { - ScreenPlay.settings.setAutostart(checked); + onCheckboxChanged: function (checked) { + ScreenPlay.settings.setAutostart(checked) } } - SettingsHorizontalSeperator { - } + SettingsHorizontalSeperator {} SettingBool { headline: qsTr("High priority Autostart") @@ -88,49 +86,47 @@ Item { description: qsTr("This options grants ScreenPlay a higher autostart priority than other apps.") isChecked: ScreenPlay.settings.highPriorityStart onCheckboxChanged: { - ScreenPlay.settings.setHighPriorityStart(checked); + ScreenPlay.settings.setHighPriorityStart(checked) } } - SettingsHorizontalSeperator { - } + SettingsHorizontalSeperator {} SettingBool { height: 70 headline: qsTr("Send anonymous crash reports and statistics") description: qsTr("Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use sentry.io to collect and analyze this data. A big thanks to them for providing us with free premium support for open source projects!") isChecked: ScreenPlay.settings.anonymousTelemetry - onCheckboxChanged: (checked) => { - ScreenPlay.settings.setAnonymousTelemetry(checked); + onCheckboxChanged: function (checked) { + ScreenPlay.settings.setAnonymousTelemetry(checked) } } - SettingsHorizontalSeperator { - } + SettingsHorizontalSeperator {} SettingsButton { headline: qsTr("Set save location") buttonText: qsTr("Set location") description: { // Remove file:/// so the used does not get confused - let path = ScreenPlay.globalVariables.localStoragePath + ""; + let path = ScreenPlay.globalVariables.localStoragePath + "" if (path.length === 0) - return qsTr("Your storage path is empty!"); + return qsTr("Your storage path is empty!") else - return path.replace('file:///', ''); + return path.replace('file:///', '') } onButtonPressed: { - folderDialogSaveLocation.open(); + folderDialogSaveLocation.open() } - FolderDialog { + FolderDialog { id: folderDialogSaveLocation folder: ScreenPlay.globalVariables.localStoragePath onAccepted: { - ScreenPlay.settings.setLocalStoragePath(folderDialogSaveLocation.currentFolder); + ScreenPlay.settings.setLocalStoragePath( + folderDialogSaveLocation.currentFolder) } } - } Text { @@ -149,11 +145,9 @@ Item { left: parent.left leftMargin: 20 } - } - SettingsHorizontalSeperator { - } + SettingsHorizontalSeperator {} SettingsComboBox { id: settingsLanguage @@ -161,60 +155,61 @@ Item { headline: qsTr("Language") description: qsTr("Set the ScreenPlay UI Language") Component.onCompleted: { - settingsLanguage.comboBox.currentIndex = root.indexOfValue(settingsLanguage.comboBox.model, ScreenPlay.settings.language); + settingsLanguage.comboBox.currentIndex = root.indexOfValue( + settingsLanguage.comboBox.model, + ScreenPlay.settings.language) } comboBox { model: [{ - "value": Settings.En_US, - "text": "English" - }, { - "value": Settings.De_DE, - "text": "German" - }, { - "value": Settings.Pl_PL, - "text": "Polish" - }, { - "value": Settings.It_IT, - "text": "Italian" - }, { - "value": Settings.Zh_CN, - "text": "Chinese - Simplified" - }, { - "value": Settings.Ru_RU, - "text": "Russian" - }, { - "value": Settings.Fr_FR, - "text": "French" - }, { - "value": Settings.Es_ES, - "text": "Spanish" - }, { - "value": Settings.Ko_KR, - "text": "Korean" - }, { - "value": Settings.Vi_VN, - "text": "Vietnamese" - }, { - "value": Settings.Pt_BR, - "text": "Portuguese (Brazil)" - }, { - "value": Settings.Tr_TR, - "text": "Turkish" - }, { - "value": Settings.Nl_NL, - "text": "Dutch" - }] + "value": Settings.En_US, + "text": "English" + }, { + "value": Settings.De_DE, + "text": "German" + }, { + "value": Settings.Pl_PL, + "text": "Polish" + }, { + "value": Settings.It_IT, + "text": "Italian" + }, { + "value": Settings.Zh_CN, + "text": "Chinese - Simplified" + }, { + "value": Settings.Ru_RU, + "text": "Russian" + }, { + "value": Settings.Fr_FR, + "text": "French" + }, { + "value": Settings.Es_ES, + "text": "Spanish" + }, { + "value": Settings.Ko_KR, + "text": "Korean" + }, { + "value": Settings.Vi_VN, + "text": "Vietnamese" + }, { + "value": Settings.Pt_BR, + "text": "Portuguese (Brazil)" + }, { + "value": Settings.Tr_TR, + "text": "Turkish" + }, { + "value": Settings.Nl_NL, + "text": "Dutch" + }] onActivated: { - ScreenPlay.settings.setLanguage(settingsLanguage.comboBox.currentValue); - ScreenPlay.settings.retranslateUI(); + ScreenPlay.settings.setLanguage( + settingsLanguage.comboBox.currentValue) + ScreenPlay.settings.retranslateUI() } } - } - SettingsHorizontalSeperator { - } + SettingsHorizontalSeperator {} SettingsComboBox { id: settingsTheme @@ -222,29 +217,29 @@ Item { headline: qsTr("Theme") description: qsTr("Switch dark/light theme") Component.onCompleted: { - settingsTheme.comboBox.currentIndex = root.indexOfValue(settingsTheme.comboBox.model, ScreenPlay.settings.theme); + settingsTheme.comboBox.currentIndex = root.indexOfValue( + settingsTheme.comboBox.model, + ScreenPlay.settings.theme) } comboBox { model: [{ - "value": Settings.System, - "text": qsTr("System Default") - }, { - "value": Settings.Dark, - "text": qsTr("Dark") - }, { - "value": Settings.Light, - "text": qsTr("Light") - }] + "value": Settings.System, + "text": qsTr("System Default") + }, { + "value": Settings.Dark, + "text": qsTr("Dark") + }, { + "value": Settings.Light, + "text": qsTr("Light") + }] onActivated: { - ScreenPlay.settings.setTheme(settingsTheme.comboBox.currentValue); + ScreenPlay.settings.setTheme( + settingsTheme.comboBox.currentValue) } } - } - } - } SettingsPage { @@ -274,13 +269,13 @@ Item { headline: qsTr("Pause wallpaper video rendering while another app is in the foreground") description: qsTr("We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required!") isChecked: ScreenPlay.settings.checkWallpaperVisible - onCheckboxChanged: (checked) =>{ - ScreenPlay.settings.setCheckWallpaperVisible(checked); + onCheckboxChanged: function (checked) { + ScreenPlay.settings.setCheckWallpaperVisible( + checked) } } - SettingsHorizontalSeperator { - } + SettingsHorizontalSeperator {} SettingsComboBox { id: cbVideoFillMode @@ -288,33 +283,33 @@ Item { headline: qsTr("Default Fill Mode") description: qsTr("Set this property to define how the video is scaled to fit the target area.") Component.onCompleted: { - cbVideoFillMode.comboBox.currentIndex = root.indexOfValue(cbVideoFillMode.comboBox.model, ScreenPlay.settings.videoFillMode); + cbVideoFillMode.comboBox.currentIndex = root.indexOfValue( + cbVideoFillMode.comboBox.model, + ScreenPlay.settings.videoFillMode) } comboBox { - onActivated: ScreenPlay.settings.setVideoFillMode(cbVideoFillMode.comboBox.currentValue) + onActivated: ScreenPlay.settings.setVideoFillMode( + cbVideoFillMode.comboBox.currentValue) model: [{ - "value": FillMode.Stretch, - "text": qsTr("Stretch") - }, { - "value": FillMode.Fill, - "text": qsTr("Fill") - }, { - "value": FillMode.Contain, - "text": qsTr("Contain") - }, { - "value": FillMode.Cover, - "text": qsTr("Cover") - }, { - "value": FillMode.Scale_Down, - "text": qsTr("Scale-Down") - }] + "value": FillMode.Stretch, + "text": qsTr("Stretch") + }, { + "value": FillMode.Fill, + "text": qsTr("Fill") + }, { + "value": FillMode.Contain, + "text": qsTr("Contain") + }, { + "value": FillMode.Cover, + "text": qsTr("Cover") + }, { + "value": FillMode.Scale_Down, + "text": qsTr("Scale-Down") + }] } - } - } - } SettingsPage { @@ -348,7 +343,8 @@ Item { Item { width: parent.width - height: txtHeadline.paintedHeight + txtDescriptionAbout.paintedHeight + wrapperLinks.childrenRect.height + 80 + height: txtHeadline.paintedHeight + txtDescriptionAbout.paintedHeight + + wrapperLinks.childrenRect.height + 80 Text { id: txtHeadline @@ -366,7 +362,6 @@ Item { left: parent.left leftMargin: 20 } - } Text { @@ -389,7 +384,6 @@ Item { right: imgLogoHead.left rightMargin: 60 } - } RowLayout { @@ -432,7 +426,6 @@ Item { url: "https://www.reddit.com/r/ScreenPlayApp/" color: "#FF4500" } - } Image { @@ -450,7 +443,6 @@ Item { right: parent.right rightMargin: 20 } - } Image { @@ -472,32 +464,30 @@ Item { maskSource: mask smooth: true } - } - } - SettingsHorizontalSeperator { - } + SettingsHorizontalSeperator {} SettingsButton { icon.source: "qrc:/assets/icons/icon_launch.svg" headline: qsTr("Version") - description: qsTr("ScreenPlay Build Version \n") + ScreenPlay.settings.gitBuildHash + description: qsTr("ScreenPlay Build Version \n") + + ScreenPlay.settings.gitBuildHash buttonText: qsTr("Open Changelog") - onButtonPressed: Qt.openUrlExternally("https://gitlab.com/kelteseth/ScreenPlay/-/releases") + onButtonPressed: Qt.openUrlExternally( + "https://gitlab.com/kelteseth/ScreenPlay/-/releases") } - SettingsHorizontalSeperator { - } + SettingsHorizontalSeperator {} SettingsButton { headline: qsTr("Third Party Software") description: qsTr("ScreenPlay would not be possible without the work of others. A big thank you to: ") buttonText: qsTr("Licenses") onButtonPressed: { - ScreenPlay.util.requestAllLicenses(); - expanderCopyright.toggle(); + ScreenPlay.util.requestAllLicenses() + expanderCopyright.toggle() } } @@ -506,23 +496,21 @@ Item { Connections { function onAllLicenseLoaded(licensesText) { - expanderCopyright.text = licensesText; + expanderCopyright.text = licensesText } target: ScreenPlay.util } - } - SettingsHorizontalSeperator { - } + SettingsHorizontalSeperator {} SettingsButton { headline: qsTr("Logs") description: qsTr("If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.") buttonText: qsTr("Show Logs") onButtonPressed: { - expanderDebug.toggle(); + expanderDebug.toggle() } } @@ -532,16 +520,15 @@ Item { text: ScreenPlay.util.debugMessages } - SettingsHorizontalSeperator { - } + SettingsHorizontalSeperator {} SettingsButton { headline: qsTr("Data Protection") description: qsTr("We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!") buttonText: qsTr("Privacy") onButtonPressed: { - ScreenPlay.util.requestDataProtection(); - expanderDataProtection.toggle(); + ScreenPlay.util.requestDataProtection() + expanderDataProtection.toggle() } } @@ -550,24 +537,18 @@ Item { Connections { function onAllDataProtectionLoaded(dataProtectionText) { - expanderDataProtection.text = dataProtectionText; + expanderDataProtection.text = dataProtectionText } target: ScreenPlay.util } - } - } - } - } ScrollBar.vertical: ScrollBar { snapMode: ScrollBar.SnapOnRelease } - } - } diff --git a/ScreenPlay/qml/Workshop/PopupOffline.qml b/ScreenPlay/qml/Workshop/PopupOffline.qml index 8858f199..0938baf9 100644 --- a/ScreenPlay/qml/Workshop/PopupOffline.qml +++ b/ScreenPlay/qml/Workshop/PopupOffline.qml @@ -22,7 +22,7 @@ Popup { } required property ScreenPlayWorkshop workshop required property SteamWorkshop steam - required property var modalSource + required property Item modalSource Overlay.modal: ModalBackgroundBlur { sourceItem: root.modalSource } diff --git a/ScreenPlay/qml/Workshop/SteamWorkshop.qml b/ScreenPlay/qml/Workshop/SteamWorkshop.qml index a85def68..d3ddb8a3 100644 --- a/ScreenPlay/qml/Workshop/SteamWorkshop.qml +++ b/ScreenPlay/qml/Workshop/SteamWorkshop.qml @@ -11,7 +11,7 @@ import "upload/" Item { id: root - required property var modalSource + required property Item modalSource ScreenPlayWorkshop { id: screenPlayWorkshop diff --git a/ScreenPlay/qml/Workshop/SteamWorkshopStartPage.qml b/ScreenPlay/qml/Workshop/SteamWorkshopStartPage.qml index b3e5be95..546735f5 100644 --- a/ScreenPlay/qml/Workshop/SteamWorkshopStartPage.qml +++ b/ScreenPlay/qml/Workshop/SteamWorkshopStartPage.qml @@ -16,7 +16,7 @@ Item { property ScreenPlayWorkshop screenPlayWorkshop property StackView stackView property Background background - property var modalSource + property Item modalSource Component.onCompleted: { root.steamWorkshop.searchWorkshop(SteamEnums.K_EUGCQuery_RankedByTrend) @@ -314,7 +314,7 @@ Item { leftMargin: 20 } - TextField { + Common.TextField { id: tiSearch placeholderText: qsTr("Search for Wallpaper and Widgets...") onEditingFinished: root.steamWorkshop.searchWorkshopByText( diff --git a/ScreenPlay/qml/Workshop/Workshop.qml b/ScreenPlay/qml/Workshop/Workshop.qml index e9b0987c..3512dd63 100644 --- a/ScreenPlay/qml/Workshop/Workshop.qml +++ b/ScreenPlay/qml/Workshop/Workshop.qml @@ -9,7 +9,7 @@ import ScreenPlay Item { id: root - required property var modalSource + required property Item modalSource Component.onCompleted: { if (ScreenPlay.settings.steamVersion) { diff --git a/ScreenPlay/qml/Workshop/upload/PopupSteamWorkshopAgreement.qml b/ScreenPlay/qml/Workshop/upload/PopupSteamWorkshopAgreement.qml index 7a187ed2..7f0b413b 100644 --- a/ScreenPlay/qml/Workshop/upload/PopupSteamWorkshopAgreement.qml +++ b/ScreenPlay/qml/Workshop/upload/PopupSteamWorkshopAgreement.qml @@ -14,7 +14,7 @@ Popup { height: 400 closePolicy: Popup.NoAutoClose anchors.centerIn: Overlay.overlay - property var modalSource + property Item modalSource Overlay.modal: ModalBackgroundBlur { sourceItem: root.modalSource } diff --git a/ScreenPlay/translations/ScreenPlay_.ts b/ScreenPlay/translations/ScreenPlay_.ts index d6fb485d..20118bac 100644 --- a/ScreenPlay/translations/ScreenPlay_.ts +++ b/ScreenPlay/translations/ScreenPlay_.ts @@ -774,15 +774,6 @@ Configure Wallpaper - - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - - - - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - - Support me on Patreon! @@ -795,11 +786,16 @@ This will shut down all Wallpaper and Widgets. PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back - Back + You need to run Steam to access the Steam Workshop + + + + Steam Error Restart: %1 +Steam Error API Init: %2 @@ -1908,6 +1904,18 @@ This will shut down all Wallpaper and Widgets. + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage diff --git a/ScreenPlay/translations/ScreenPlay_de_DE.ts b/ScreenPlay/translations/ScreenPlay_de_DE.ts index 8f3edd4c..6256bd06 100644 --- a/ScreenPlay/translations/ScreenPlay_de_DE.ts +++ b/ScreenPlay/translations/ScreenPlay_de_DE.ts @@ -1,1944 +1,1952 @@ - + ColorPicker - Red - Rot + Red + Rot - Green - Grün + Green + Grün - Blue - Blau + Blue + Blau - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - R: + R: + R: - G: - G: + G: + G: - B: - B: + B: + B: - H: - H: + H: + H: - S: - S: + S: + S: - V: - V: + V: + V: - Alpha: - Alpha + Alpha: + Alpha - # - # + # + # - - + + Community - News - Neuigkeiten + News + Neuigkeiten - Wiki - Wiki + Wiki + Wiki - Forum - Forum + Forum + Forum - Contribute - Beitragen + Contribute + Beitragen - Steam Workshop - Steam Workshop + Steam Workshop + Steam Workshop - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - Öffne in + Open in browser + Öffne in - - + + CreateWallpaperInit - Import any video type - Importiere Video jeden Typs + Import any video type + Importiere Video jeden Typs - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Je nach deiner PC Konfiguaration ist es besser dein Wallpaper mit einem Spezifischen Video Kodierer zu Konvertieren. Wenn allerdings beides schlecht läuft kannst du ein QML Wallpaper Probieren! Unterstützte Video-Formate sind: + Je nach deiner PC Konfiguaration ist es besser dein Wallpaper mit einem Spezifischen Video Kodierer zu Konvertieren. Wenn allerdings beides schlecht läuft kannst du ein QML Wallpaper Probieren! Unterstützte Video-Formate sind: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Bevorzugte Video-Kodierung Festlegen + Set your preffered video codec: + Bevorzugte Video-Kodierung Festlegen - Quality slider. Lower value means better quality. - Qualitäts-Regler. Niedriger wert heißt niedrige Qualität + Quality slider. Lower value means better quality. + Qualitäts-Regler. Niedriger wert heißt niedrige Qualität - Open Documentation - Öffne Documentation + Open Documentation + Öffne Documentation - Select file - Datei auswählen + Select file + Datei auswählen - - + + CreateWallpaperResult - An error occurred! - Es ist ein Fehler aufgetreten! + An error occurred! + Es ist ein Fehler aufgetreten! - Copy text to clipboard - Kopiere den Text in die Zwischenablage + Copy text to clipboard + Kopiere den Text in die Zwischenablage - Back to create and send an error report! - Zurück zum Erstellen und einen Fehlerbericht senden! + Back to create and send an error report! + Zurück zum Erstellen und einen Fehlerbericht senden! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - Erzeuge Vorschaubild... + Generating preview image... + Erzeuge Vorschaubild... - Generating preview thumbnail image... - Erzeuge Vorschau-Miniaturbild... + Generating preview thumbnail image... + Erzeuge Vorschau-Miniaturbild... - Generating 5 second preview video... - Generiere ein 5-Sekunden-Vorschau-Video... + Generating 5 second preview video... + Generiere ein 5-Sekunden-Vorschau-Video... - Generating preview gif... - Generiere Vorschau-Gif... + Generating preview gif... + Generiere Vorschau-Gif... - Converting Audio... - Konvertiere Audio... + Converting Audio... + Konvertiere Audio... - Converting Video... This can take some time! - Video wird umgewandelt... Das kann etwas dauern! + Converting Video... This can take some time! + Video wird umgewandelt... Das kann etwas dauern! - Converting Video ERROR! - Konvertieren nicht erfolgreich! + Converting Video ERROR! + Konvertieren nicht erfolgreich! - Analyse Video ERROR! - Analyse des Videos schlug Fehl! + Analyse Video ERROR! + Analyse des Videos schlug Fehl! - Convert a video to a wallpaper - Konvertiere ein Video in ein Hintergrund Live Wallpaper + Convert a video to a wallpaper + Konvertiere ein Video in ein Hintergrund Live Wallpaper - Generating preview video... - Generiere Vorschau-Video... + Generating preview video... + Generiere Vorschau-Video... - Name (required!) - Name (erforderlich!) + Name (required!) + Name (erforderlich!) - Description - Beschreibung + Description + Beschreibung - Youtube URL - YouTube-URL + Youtube URL + YouTube-URL - Abort - Abbrechen + Abort + Abbrechen - Save - Speichern + Save + Speichern - Save Wallpaper... - Speicher Wallpaper... + Save Wallpaper... + Speicher Wallpaper... - - + + DefaultVideoControls - Volume - Lautstärke + Volume + Lautstärke - Playback rate - Wiedergabegeschwindigkeit + Playback rate + Wiedergabegeschwindigkeit - Current Video Time - Aktuelle Videozeit + Current Video Time + Aktuelle Videozeit - Fill Mode - Füll-Modus + Fill Mode + Füll-Modus - Stretch - Strecken + Stretch + Strecken - Fill - Ausfüllen + Fill + Ausfüllen - Contain - Enthält + Contain + Enthält - Cover - Cover + Cover + Cover - Scale_Down - Runter Skallieren + Scale_Down + Runter Skallieren - - + + FileSelector - Clear - Leeren + Clear + Leeren - Select File - Datei auswählen + Select File + Datei auswählen - Please choose a file - Bitte Wählen Sie eine Datei aus + Please choose a file + Bitte Wählen Sie eine Datei aus - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Du kannst Wallpaper und Widgets aus unserem Forum manuell herunterladen. Wenn du den Steam Workshop-Inhalt herunterladen möchtest, musst du ScreenPlay via Steam installieren. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Du kannst Wallpaper und Widgets aus unserem Forum manuell herunterladen. Wenn du den Steam Workshop-Inhalt herunterladen möchtest, musst du ScreenPlay via Steam installieren. - Install Steam Version - Steam Version installieren + Install Steam Version + Steam Version installieren - Open In Browser - Im Browser öffnen + Open In Browser + Im Browser öffnen - - + + GifWallpaper - Import a Gif Wallpaper - Importiere ein GIF Wallpaper + Import a Gif Wallpaper + Importiere ein GIF Wallpaper - Drop a *.gif file here or use 'Select file' below. - Ziehe eine .gif Datei hierher und benutze 'Datei auswählen' darunter. + Drop a *.gif file here or use 'Select file' below. + Ziehe eine .gif Datei hierher und benutze 'Datei auswählen' darunter. - Select your gif - Wähle dein GIF aus + Select your gif + Wähle dein GIF aus - General - Allgemein + General + Allgemein - Wallpaper name - Wallpaper Name + Wallpaper name + Wallpaper Name - Created By - Erstellt von + Created By + Erstellt von - Tags - Schlagwörter + Tags + Schlagwörter - - + + HTMLWallpaper - Create a HTML Wallpaper - Erstelle ein HTML Wallpaper + Create a HTML Wallpaper + Erstelle ein HTML Wallpaper - General - Allgemein + General + Allgemein - Wallpaper name - Wallpaper Name + Wallpaper name + Wallpaper Name - Created By - Erstellt von + Created By + Erstellt von - Description - Beschreibung + Description + Beschreibung - License & Tags - Lizenz & Schlagwörter + License & Tags + Lizenz & Schlagwörter - Preview Image - Vorschau Bild + Preview Image + Vorschau Bild - - + + HTMLWidget - Create a HTML widget - Erstelle ein HTML Widget + Create a HTML widget + Erstelle ein HTML Widget - General - Allgemein + General + Allgemein - Widget name - Widget Name + Widget name + Widget Name - Created by - Erstellt von + Created by + Erstellt von - Tags - Schlagwörter + Tags + Schlagwörter - - + + HeadlineSection - Headline Section - Überschrift auswahl + Headline Section + Überschrift auswahl - - + + ImageSelector - Set your own preview image - Setze dein eigenes Vorschaubild + Set your own preview image + Setze dein eigenes Vorschaubild - Clear - Leeren + Clear + Leeren - Select Preview Image - Wähle ein Vorschaubild + Select Preview Image + Wähle ein Vorschaubild - - + + ImportWebmConvert - - + + - AnalyseVideo... - Analysiere Video... + AnalyseVideo... + Analysiere Video... - Generating preview image... - Erzeuge Vorschaubild... + Generating preview image... + Erzeuge Vorschaubild... - Generating preview thumbnail image... - Erzeuge Vorschau-Miniaturbild... + Generating preview thumbnail image... + Erzeuge Vorschau-Miniaturbild... - Generating 5 second preview video... - Generiere ein 5-Sekunden-Vorschau-Video... + Generating 5 second preview video... + Generiere ein 5-Sekunden-Vorschau-Video... - Generating preview gif... - Generiere Vorschau-Gif... + Generating preview gif... + Generiere Vorschau-Gif... - Converting Audio... - Konvertiere Audio... + Converting Audio... + Konvertiere Audio... - Converting Video... This can take some time! - Video wird umgewandelt... Das kann etwas dauern! + Converting Video... This can take some time! + Video wird umgewandelt... Das kann etwas dauern! - Converting Video ERROR! - Konvertieren nicht erfolgreich! + Converting Video ERROR! + Konvertieren nicht erfolgreich! - Analyse Video ERROR! - Analyse des Videos schlug Fehl! + Analyse Video ERROR! + Analyse des Videos schlug Fehl! - Import a video to a wallpaper - Importiere ein Video zu ein Wallpaper + Import a video to a wallpaper + Importiere ein Video zu ein Wallpaper - Generating preview video... - Generiere Vorschau-Video... + Generating preview video... + Generiere Vorschau-Video... - Name (required!) - Name (erforderlich!) + Name (required!) + Name (erforderlich!) - Description - Beschreibung + Description + Beschreibung - Youtube URL - YouTube-URL + Youtube URL + YouTube-URL - Abort - Abbrechen + Abort + Abbrechen - Save - Speichern + Save + Speichern - Save Wallpaper... - Speicher Wallpaper... + Save Wallpaper... + Speicher Wallpaper... - - + + ImportWebmInit - Import a .webm video - Importiere ein .webm Video + Import a .webm video + Importiere ein .webm Video - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Wenn WEBM importiert wird, kann die lange Umwandlungszeit übersprungen werden. Wenn du nicht mit dem Ergebnis von dem ScreenPlay importierer zu frieden bis ' Video Importierer und Convertierer' kannst du auch den gratis und Open Source konvertierer HandBreak benutzen! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + Wenn WEBM importiert wird, kann die lange Umwandlungszeit übersprungen werden. Wenn du nicht mit dem Ergebnis von dem ScreenPlay importierer zu frieden bis ' Video Importierer und Convertierer' kannst du auch den gratis und Open Source konvertierer HandBreak benutzen! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Ungültiger Dateityp. Es muss ein gültiger VP8 oder Vp9 (*.webm) typ sein! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Ungültiger Dateityp. Es muss ein gültiger VP8 oder Vp9 (*.webm) typ sein! - Drop a *.webm file here or use 'Select file' below. - Lass hier eine *.webm Datei fallen oder benutze 'Datei auswählen' darunter + Drop a *.webm file here or use 'Select file' below. + Lass hier eine *.webm Datei fallen oder benutze 'Datei auswählen' darunter - Open Documentation - Öffne Dokumentation + Open Documentation + Öffne Dokumentation - Select file - Datei auswählen + Select file + Datei auswählen - - + + Importh264Convert - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + Importh264Init - Import a .mp4 video - Import a .mp4 video + Import a .mp4 video + Import a .mp4 video - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - Invalid file type. Must be valid h264 (*.mp4)! - Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Installed - - + + - Refreshing! - Aktualisiere! + Refreshing! + Aktualisiere! - Pull to refresh! - Drücken zum aktualisieren! + Pull to refresh! + Drücken zum aktualisieren! - Get more Wallpaper & Widgets via the Steam workshop! - Holen dir mehr Wallpaper und Widgets über den Steam-Workshop! + Get more Wallpaper & Widgets via the Steam workshop! + Holen dir mehr Wallpaper und Widgets über den Steam-Workshop! - Open containing folder - Enthaltenden Ordner öffnen + Open containing folder + Enthaltenden Ordner öffnen - Remove Item - Item entfernen + Remove Item + Item entfernen - Remove via Workshop - Über den Workshop entfernen + Remove via Workshop + Über den Workshop entfernen - Open Workshop Page - Workshop öffnen + Open Workshop Page + Workshop öffnen - Are you sure you want to delete this item? - Bist du dir sicher dass du dieses Item löschen möchtest? + Are you sure you want to delete this item? + Bist du dir sicher dass du dieses Item löschen möchtest? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Hole dir kostenlose Widgets und Wallpaper via Steam + Get free Widgets and Wallpaper via the Steam Workshop + Hole dir kostenlose Widgets und Wallpaper via Steam - Browse the Steam Workshop - Stöbere durch den Steam Workshop + Browse the Steam Workshop + Stöbere durch den Steam Workshop - - + + LicenseSelector - License - Lizenz + License + Lizenz - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Teilen - kopieren und teilen in jeglicher art. Anpassen - remixen, Transformieren, und gebaut auf dem Material das für jeden Zweck, auch kommerziell. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Teilen - kopieren und teilen in jeglicher art. Anpassen - remixen, Transformieren, und gebaut auf dem Material das für jeden Zweck, auch kommerziell. - You grant other to remix your work and change the license to their liking. - Sie gestatten anderen, Ihr Werk neu zu mixen und die Lizenz auf deren Ermessen zu ändern. + You grant other to remix your work and change the license to their liking. + Sie gestatten anderen, Ihr Werk neu zu mixen und die Lizenz auf deren Ermessen zu ändern. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Teilen — Kopieren und Weitergeben des Materials in jedem Medium oder Format. Geändert — Remix, transformiere und baue auf dem Material. Du darfst es nicht kommerziell verwenden! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Teilen — Kopieren und Weitergeben des Materials in jedem Medium oder Format. Geändert — Remix, transformiere und baue auf dem Material. Du darfst es nicht kommerziell verwenden! - You allow everyone to do anything with your work. - Du erlaubst allen, alles mit deiner Arbeit zu tun. + You allow everyone to do anything with your work. + Du erlaubst allen, alles mit deiner Arbeit zu tun. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - Du gewährst anderen das Recht auf Remix deiner Arbeit, aber es muss unter der GPLv3 Lizenz verbleiben. Wir empfehlen diese Lizenz für alle Code-Wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + Du gewährst anderen das Recht auf Remix deiner Arbeit, aber es muss unter der GPLv3 Lizenz verbleiben. Wir empfehlen diese Lizenz für alle Code-Wallpaper! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - Du teilst keine Rechte und niemand darf sie benutzen oder neu verwenden (Nicht empfohlen). Es kann auch verwendet werden, um Werke andere zu kreditieren. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + Du teilst keine Rechte und niemand darf sie benutzen oder neu verwenden (Nicht empfohlen). Es kann auch verwendet werden, um Werke andere zu kreditieren. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - Deine Bildschirm aufstellung hat sich geändert! + Deine Bildschirm aufstellung hat sich geändert! Bitte Konfiguriere deine Wallpaper noch erneut - - + + Monitors - Wallpaper Configuration - Wallpaper Konfiguration + Wallpaper Configuration + Wallpaper Konfiguration - Remove selected - Die Auswahl entfernen + Remove selected + Die Auswahl entfernen - Wallpapers - Hintergründe + Wallpapers + Hintergründe - Widgets - Widgets + Widgets + Widgets - Remove all - Remove all + Remove all + Remove all - - + + MonitorsProjectSettingItem - Set color - Farbe Festlegen + Set color + Farbe Festlegen - Please choose a color - Bitte wähle eine Farbe aus + Please choose a color + Bitte wähle eine Farbe aus - - + + Navigation - All - Alles + All + Alles - Scenes - Szenen + Scenes + Szenen - Videos - Videos + Videos + Videos - Widgets - Widgets + Widgets + Widgets - Install Date Ascending - Installationsdatum aufsteigend + Install Date Ascending + Installationsdatum aufsteigend - Install Date Descending - Installationsdatum absteigend + Install Date Descending + Installationsdatum absteigend - Subscribed items: - Abonnierte Inhalte: + Subscribed items: + Abonnierte Inhalte: - Upload to the Steam Workshop - Zum Steam Workshop Hochladen + Upload to the Steam Workshop + Zum Steam Workshop Hochladen - Create - Erstellen + Create + Erstellen - Workshop - Workshop + Workshop + Workshop - Installed - Installiert + Installed + Installiert - Community - Community + Community + Community - Settings - Einstellungen + Settings + Einstellungen - Mute/Unmute all Wallpaper - Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper - Pause/Play all Wallpaper - Pause/Play all Wallpaper + Pause/Play all Wallpaper + Pause/Play all Wallpaper - Configure Wallpaper - Configure Wallpaper + Configure Wallpaper + Configure Wallpaper - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - Du musst Steam ausführen, um dies zu tun. SteamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Zurück - Back - Zurück + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - Du musst zuerst zu den Steam-Abonnentenvertrag zustimmen + You Need to Agree To The Steam Subscriber Agreement First + Du musst zuerst zu den Steam-Abonnentenvertrag zustimmen - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - View The Steam Subscriber Agreement - Siehe dir den Steam-Abonnentenvertrag + View The Steam Subscriber Agreement + Siehe dir den Steam-Abonnentenvertrag - Accept Steam Workshop Agreement - Aktzeptiere den Steam-Abonnentenvertrag + Accept Steam Workshop Agreement + Aktzeptiere den Steam-Abonnentenvertrag - - + + QMLWallpaper - Create a QML Wallpaper - Erstelle ein QML Wallpaper + Create a QML Wallpaper + Erstelle ein QML Wallpaper - General - Allgemein + General + Allgemein - Wallpaper name - Wallpaper Name + Wallpaper name + Wallpaper Name - Created By - Erstellt von + Created By + Erstellt von - Description - Beschreibung + Description + Beschreibung - License & Tags - Lizenz & Schlagwörter + License & Tags + Lizenz & Schlagwörter - Preview Image - Vorschaubild + Preview Image + Vorschaubild - - + + QMLWidget - Create a QML widget - Erstelle ein QML Widget + Create a QML widget + Erstelle ein QML Widget - General - Allgemein + General + Allgemein - Widget name - Widget Name + Widget name + Widget Name - Created by - Erstellt von + Created by + Erstellt von - Tags - Schlagwörter + Tags + Schlagwörter - - + + SaveNotification - Profile saved successfully! - Profil erfolgreich gespeichert! + Profile saved successfully! + Profil erfolgreich gespeichert! - - + + ScreenPlayItem - NEW - NEU + NEW + NEU - - + + Search - Search for Wallpaper & Widgets - Suche nach Wallpaper & Widgets + Search for Wallpaper & Widgets + Suche nach Wallpaper & Widgets - - + + Settings - General - Allgemein + General + Allgemein - Autostart - Autostart + Autostart + Autostart - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay startet mit Windows und richtet deinen Desktop jedes Mal für dich ein. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay startet mit Windows und richtet deinen Desktop jedes Mal für dich ein. - High priority Autostart - Hohe Priorität für Autostart + High priority Autostart + Hohe Priorität für Autostart - This options grants ScreenPlay a higher autostart priority than other apps. - Diese Option gewährt ScreenPlay eine höhere Autostartpriorität als anderen Anwendungen. + This options grants ScreenPlay a higher autostart priority than other apps. + Diese Option gewährt ScreenPlay eine höhere Autostartpriorität als anderen Anwendungen. - Send anonymous crash reports and statistics - Sende anonyme Absturzberichte und Statistiken + Send anonymous crash reports and statistics + Sende anonyme Absturzberichte und Statistiken - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Helfen Sie uns, ScreenPlay schneller und stabiler zu machen. Alle gesammelten Daten sind rein anonym und werden nur für Entwicklungszwecke verwendet! Wir benutzen <a href="https://sentry.io">Sentry. o</a> um diese Daten zu sammeln und zu analysieren. Ein <b>großes Dankeschön an sie</b> für die kostenlose Premium-Unterstützung für Open Source Projekte! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Helfen Sie uns, ScreenPlay schneller und stabiler zu machen. Alle gesammelten Daten sind rein anonym und werden nur für Entwicklungszwecke verwendet! Wir benutzen <a href="https://sentry.io">Sentry. o</a> um diese Daten zu sammeln und zu analysieren. Ein <b>großes Dankeschön an sie</b> für die kostenlose Premium-Unterstützung für Open Source Projekte! - Set save location - Speicherort auswählen + Set save location + Speicherort auswählen - Set location - Standort auswählen + Set location + Standort auswählen - Your storage path is empty! - Dein Speicherpfad ist leer! + Your storage path is empty! + Dein Speicherpfad ist leer! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Wichtig: Eine Änderung dieses Verzeichnisses hat keine Auswirkungen auf den Download-Pfad des Workshops. ScreenPlay unterstützt nur ein Verzeichnis! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Wichtig: Eine Änderung dieses Verzeichnisses hat keine Auswirkungen auf den Download-Pfad des Workshops. ScreenPlay unterstützt nur ein Verzeichnis! - Language - Sprache + Language + Sprache - Set the ScreenPlay UI Language - Wähle die Sprache des Programms aus + Set the ScreenPlay UI Language + Wähle die Sprache des Programms aus - Theme - Thema + Theme + Thema - Switch dark/light theme - Wechsle Dunkles/Helles Design + Switch dark/light theme + Wechsle Dunkles/Helles Design - System Default - System Standard + System Default + System Standard - Dark - Dunkel + Dark + Dunkel - Light - Hell + Light + Hell - Performance - Leistung + Performance + Leistung - Pause wallpaper video rendering while another app is in the foreground - Pausiere Wallpaper Video Rendering wenn eine andere App im Vordergrund ist + Pause wallpaper video rendering while another app is in the foreground + Pausiere Wallpaper Video Rendering wenn eine andere App im Vordergrund ist - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Wir deaktivieren das Video Rendering (Aber nicht die Sounds) für die beste Leistung. Wenn du damit probleme haben solltest kannst dieses Verhalten hier ausschalten. Ein Neustart wird aber von Nöten sein! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + Wir deaktivieren das Video Rendering (Aber nicht die Sounds) für die beste Leistung. Wenn du damit probleme haben solltest kannst dieses Verhalten hier ausschalten. Ein Neustart wird aber von Nöten sein! - Default Fill Mode - Standard-Füllmodus + Default Fill Mode + Standard-Füllmodus - Set this property to define how the video is scaled to fit the target area. - Lege diese Eigenschaft fest, um zu definieren, wie das Video skaliert wird, damit es in den Zielbereich passt. + Set this property to define how the video is scaled to fit the target area. + Lege diese Eigenschaft fest, um zu definieren, wie das Video skaliert wird, damit es in den Zielbereich passt. - Stretch - Strecken + Stretch + Strecken - Fill - Ausfüllen + Fill + Ausfüllen - Contain - Enthält + Contain + Enthält - Cover - Cover + Cover + Cover - Scale-Down - Runter Skallieren + Scale-Down + Runter Skallieren - About - Über + About + Über - Thank you for using ScreenPlay - Danke, dass du ScreenPlay verwendest + Thank you for using ScreenPlay + Danke, dass du ScreenPlay verwendest - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Moin, ich bin Elias Steurer, auch bekannt als Kelteseth und ich bin der Entwickler von ScreenPlay. Danke, dass du meine Software nutzt. Du kannst mir hier folgen, um Updates über ScreenPlay zu erhalten: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Moin, ich bin Elias Steurer, auch bekannt als Kelteseth und ich bin der Entwickler von ScreenPlay. Danke, dass du meine Software nutzt. Du kannst mir hier folgen, um Updates über ScreenPlay zu erhalten: - Version - Version + Version + Version - Open Changelog - Changelog öffnen + Open Changelog + Changelog öffnen - Third Party Software - Software von Drittanbietern + Third Party Software + Software von Drittanbietern - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay wäre ohne die Arbeit anderer nicht möglich. Ein großes Dankeschön dafür geht an: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay wäre ohne die Arbeit anderer nicht möglich. Ein großes Dankeschön dafür geht an: - Licenses - Lizenzen + Licenses + Lizenzen - Logs - Protokolle + Logs + Protokolle - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Wenn den ScreenPlay sich falsch verhält, ist hier eine gute Möglichkeit, nach Antworten zu suchen. Hier werden alle Protokolle und Warnungen während der Laufzeit angezeigt. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + Wenn den ScreenPlay sich falsch verhält, ist hier eine gute Möglichkeit, nach Antworten zu suchen. Hier werden alle Protokolle und Warnungen während der Laufzeit angezeigt. - Show Logs - Zeige Logs + Show Logs + Zeige Logs - Data Protection - Datenschutz + Data Protection + Datenschutz - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Wir verwenden deine Daten sehr sorgfältig, um ScreenPlay zu verbessern. Wir verkaufen oder teilen diese (anonymen) Informationen nicht mit anderen! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + Wir verwenden deine Daten sehr sorgfältig, um ScreenPlay zu verbessern. Wir verkaufen oder teilen diese (anonymen) Informationen nicht mit anderen! - Privacy - Datenschutz + Privacy + Datenschutz - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay Build Version - - + + SettingsExpander - Copy text to clipboard - Kopiere den Text in die Zwischenablage + Copy text to clipboard + Kopiere den Text in die Zwischenablage - - + + Sidebar - Tools Overview - Werkzeugeübersicht + Tools Overview + Werkzeugeübersicht - Video Import h264 (.mp4) - Video Import h264 (.mp4) + Video Import h264 (.mp4) + Video Import h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) - Video import (all types) - Video import (all types) + Video import (all types) + Video import (all types) - GIF Wallpaper - GIF Wallpaper + GIF Wallpaper + GIF Wallpaper - QML Wallpaper - QML Wallpaper + QML Wallpaper + QML Wallpaper - HTML5 Wallpaper - HTML5 Wallpaper + HTML5 Wallpaper + HTML5 Wallpaper - Website Wallpaper - Website Wallpaper + Website Wallpaper + Website Wallpaper - QML Widget - QML Widget + QML Widget + QML Widget - HTML Widget - HTML Widget + HTML Widget + HTML Widget - Set Wallpaper - Wallpaper Festlegen + Set Wallpaper + Wallpaper Festlegen - Set Widget - Widget wählen + Set Widget + Widget wählen - Headline - Überschrift + Headline + Überschrift - Select a Monitor to display the content - Wähle einen Monitor zur Anzeige des Inhalts + Select a Monitor to display the content + Wähle einen Monitor zur Anzeige des Inhalts - Set Volume - Audiolautstärke einstellen + Set Volume + Audiolautstärke einstellen - Fill Mode - Füll-Modus + Fill Mode + Füll-Modus - Stretch - Strecken + Stretch + Strecken - Fill - Ausfüllen + Fill + Ausfüllen - Contain - Enthält + Contain + Enthält - Cover - Cover + Cover + Cover - Scale-Down - Runter-Skallieren + Scale-Down + Runter-Skallieren - Size: - Größe: + Size: + Größe: - No description... - Leine Beschreibung... + No description... + Leine Beschreibung... - Click here if you like the content - Klicke hier wenn du den Inhalt magst + Click here if you like the content + Klicke hier wenn du den Inhalt magst - Click here if you do not like the content - Klicke hier wenn du den Inhalt nicht magst + Click here if you do not like the content + Klicke hier wenn du den Inhalt nicht magst - Subscribtions: - Abonnements + Subscribtions: + Abonnements - Open In Steam - Öffne in Steam + Open In Steam + Öffne in Steam - Subscribed! - Abonniert + Subscribed! + Abonniert - Subscribe - Abonniere + Subscribe + Abonniere - - + + StartInfo - Free tools to help you to create wallpaper - Free tools to help you to create wallpaper + Free tools to help you to create wallpaper + Free tools to help you to create wallpaper - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - - + + SteamNotAvailable - Could not load steam integration! - Konnte Steam integration nicht Laden! + Could not load steam integration! + Konnte Steam integration nicht Laden! - - + + SteamProfile - Back - Zurück + Back + Zurück - Forward - Vor + Forward + Vor - - + + SteamWorkshopStartPage - Loading - Loading + Loading + Loading - Download now! - Jetzt herunterladen! + Download now! + Jetzt herunterladen! - Downloading... - Herunterladen... + Downloading... + Herunterladen... - Details - Details + Details + Details - Open In Steam - In Steam öffnen + Open In Steam + In Steam öffnen - Profile - Profil + Profile + Profil - Upload - Hochladen + Upload + Hochladen - Search for Wallpaper and Widgets... - Suche nach Wallpaper & Widgets... + Search for Wallpaper and Widgets... + Suche nach Wallpaper & Widgets... - Open Workshop in Steam - Im Steam Workshop öffnen + Open Workshop in Steam + Im Steam Workshop öffnen - Ranked By Vote - Nach Bewertungen sortieren + Ranked By Vote + Nach Bewertungen sortieren - Publication Date - Nach Veröffentlichungs Datum sortieren + Publication Date + Nach Veröffentlichungs Datum sortieren - Ranked By Trend - Nach Trends sortieren + Ranked By Trend + Nach Trends sortieren - Favorited By Friends - Von Freunden Favorisiert + Favorited By Friends + Von Freunden Favorisiert - Created By Friends - Von Freunden erstellt + Created By Friends + Von Freunden erstellt - Created By Followed Users - Von gefolgten Benutzern erstellt + Created By Followed Users + Von gefolgten Benutzern erstellt - Not Yet Rated - Noch nicht Bewertet + Not Yet Rated + Noch nicht Bewertet - Total VotesAsc - Abstimmungs Anzahl Absteigend + Total VotesAsc + Abstimmungs Anzahl Absteigend - Votes Up - Abstimmungs Anzahl Steigend + Votes Up + Abstimmungs Anzahl Steigend - Total Unique Subscriptions - Anzahl einzigartiger Abonnenten + Total Unique Subscriptions + Anzahl einzigartiger Abonnenten - Back - Zurück + Back + Zurück - Forward - Vor + Forward + Vor - - + + TagSelector - Save - Speichern + Save + Speichern - Add tag - Tag hinzufügen + Add tag + Tag hinzufügen - Cancel - Abbrechen + Cancel + Abbrechen - Add Tag - Tag hinzufügen + Add Tag + Tag hinzufügen - - + + TextField - Label - Beschriftung + Label + Beschriftung - *Required - *Benötigt + *Required + *Benötigt - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - Doppelklicke, um deine Einstellungen zu ändern. + ScreenPlay - Double click to change you settings. + ScreenPlay - Doppelklicke, um deine Einstellungen zu ändern. - Open ScreenPlay - Öffne ScreenPlay + Open ScreenPlay + Öffne ScreenPlay - Mute all - Alles stummschalten + Mute all + Alles stummschalten - Unmute all - Alle Stummschaltungen aufheben + Unmute all + Alle Stummschaltungen aufheben - Pause all - Alles pausieren + Pause all + Alles pausieren - Play all - Alles abspielen + Play all + Alles abspielen - Quit - Beenden + Quit + Beenden - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Lade Wallpaper/Widget auf Steam hoch + Upload Wallpaper/Widgets to Steam + Lade Wallpaper/Widget auf Steam hoch - Abort - Abbrechen + Abort + Abbrechen - Upload Selected Projects - Lade ausgewähltes Projekt hoch + Upload Selected Projects + Lade ausgewähltes Projekt hoch - Finish - Beenden + Finish + Beenden - - + + UploadProjectBigItem - Type: - Typ: + Type: + Typ: - Open Folder - Öffne Ordner + Open Folder + Öffne Ordner - Invalid Project! - Ungültiges Projekt + Invalid Project! + Ungültiges Projekt - - + + UploadProjectItem - Fail - Fehler + Fail + Fehler - No Connection - Keine Verbindung + No Connection + Keine Verbindung - Invalid Password - Falsches Passwort + Invalid Password + Falsches Passwort - Logged In Elsewhere - Woanders Eingelogged + Logged In Elsewhere + Woanders Eingelogged - Invalid Protocol Version - Falsche Protokoll Version + Invalid Protocol Version + Falsche Protokoll Version - Invalid Param - Falsche Parameter + Invalid Param + Falsche Parameter - File Not Found - Datei nicht gefunden + File Not Found + Datei nicht gefunden - Busy - Beschäftigt + Busy + Beschäftigt - Invalid State - ungültiger Status + Invalid State + ungültiger Status - Invalid Name - ungültiger Name + Invalid Name + ungültiger Name - Invalid Email - ungültige Email + Invalid Email + ungültige Email - Duplicate Name - Doppelter Name + Duplicate Name + Doppelter Name - Access Denied - Zugriff verweigert + Access Denied + Zugriff verweigert - Timeout - Auszeit + Timeout + Auszeit - Banned - Gebannt + Banned + Gebannt - Account Not Found - Account nicht gefunden + Account Not Found + Account nicht gefunden - Invalid SteamID - ungültige Steam ID + Invalid SteamID + ungültige Steam ID - Service Unavailable - Service nicht Verfügbar + Service Unavailable + Service nicht Verfügbar - Not Logged On - Nicht angemeldet + Not Logged On + Nicht angemeldet - Pending - Ausstehend + Pending + Ausstehend - Encryption Failure - Verschlüsselungsfehler + Encryption Failure + Verschlüsselungsfehler - Insufficient Privilege - Unzureichende Berechtigung + Insufficient Privilege + Unzureichende Berechtigung - Limit Exceeded - Limit überschritten + Limit Exceeded + Limit überschritten - Revoked - Wiederrufen + Revoked + Wiederrufen - Expired - Abgelaufen + Expired + Abgelaufen - Already Redeemed - Bereits eingelöst + Already Redeemed + Bereits eingelöst - Duplicate Request - Doppelte anfrage + Duplicate Request + Doppelte anfrage - Already Owned - Bereits vergeben + Already Owned + Bereits vergeben - IP Not Found - IP nicht gefunden + IP Not Found + IP nicht gefunden - Persist Failed - Anhalten fehlgeschlagen + Persist Failed + Anhalten fehlgeschlagen - Locking Failed - Sperren fehlgeschlagen + Locking Failed + Sperren fehlgeschlagen - Logon Session Replaced - Anmeldesitzung ersetzt + Logon Session Replaced + Anmeldesitzung ersetzt - Connect Failed - Verbindung gescheitert + Connect Failed + Verbindung gescheitert - Handshake Failed - Handshake fehlgeschlagen + Handshake Failed + Handshake fehlgeschlagen - IO Failure - IO Fehler + IO Failure + IO Fehler - Remote Disconnect - Remote Disconnect + Remote Disconnect + Remote Disconnect - Shopping Cart Not Found - Warenkorb nicht gefunden + Shopping Cart Not Found + Warenkorb nicht gefunden - Blocked - Blockiert + Blocked + Blockiert - Ignored - Ignoriert + Ignored + Ignoriert - No Match - Keine Übereinstimmung + No Match + Keine Übereinstimmung - Account Disabled - Account deaktiviert + Account Disabled + Account deaktiviert - Service ReadOnly - Schreibgeschützter Dienst + Service ReadOnly + Schreibgeschützter Dienst - Account Not Featured - Account Not Featured + Account Not Featured + Account Not Featured - Administrator OK - Administrator OK + Administrator OK + Administrator OK - Content Version - Inhaltsversion + Content Version + Inhaltsversion - Try Another CM - Versuch ein anderen CM + Try Another CM + Versuch ein anderen CM - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Bereits woanders eingeloggt + Already Logged In Elsewhere + Bereits woanders eingeloggt - Suspended - Gesperrt + Suspended + Gesperrt - Cancelled - Abgebrochen + Cancelled + Abgebrochen - Data Corruption - Datenkorruption + Data Corruption + Datenkorruption - Disk Full - Festplatte voll + Disk Full + Festplatte voll - Remote Call Failed - Remote Call Failed + Remote Call Failed + Remote Call Failed - Password Unset - Passwort aufheben + Password Unset + Passwort aufheben - External Account Unlinked - Externe Accountverknüpfung aufheben + External Account Unlinked + Externe Accountverknüpfung aufheben - PSN Ticket Invalid - ungültiges PSN Ticket + PSN Ticket Invalid + ungültiges PSN Ticket - External Account Already Linked - Externer Account ist bereits verbunden + External Account Already Linked + Externer Account ist bereits verbunden - Remote File Conflict - Entfernter Dateikonflikt + Remote File Conflict + Entfernter Dateikonflikt - Illegal Password - Nicht unterstütztes Passwort + Illegal Password + Nicht unterstütztes Passwort - Same As Previous Value - Gleicher wert wie vorheriger + Same As Previous Value + Gleicher wert wie vorheriger - Account Logon Denied - Anmeldung verweigert + Account Logon Denied + Anmeldung verweigert - Cannot Use Old Password - Du kannst dein altes Passwort nicht benutzen + Cannot Use Old Password + Du kannst dein altes Passwort nicht benutzen - Invalid Login AuthCode - Falscher Login AuthCode + Invalid Login AuthCode + Falscher Login AuthCode - Account Logon Denied No Mail - Account anmeldung abgelehnt, keine Mail + Account Logon Denied No Mail + Account anmeldung abgelehnt, keine Mail - Hardware Not Capable Of IPT - Hardware ist nicht IPT fähig + Hardware Not Capable Of IPT + Hardware ist nicht IPT fähig - IPT Init Error - IPT Init Fehler + IPT Init Error + IPT Init Fehler - Parental Control Restricted - Kindersicherung eingeschränkt + Parental Control Restricted + Kindersicherung eingeschränkt - Facebook Query Error - Facebook-Abfragefehler + Facebook Query Error + Facebook-Abfragefehler - Expired Login Auth Code - Abgelaufener Login Auth Code + Expired Login Auth Code + Abgelaufener Login Auth Code - IP Login Restriction Failed - IP-Anmeldebeschränkung fehlgeschlagen + IP Login Restriction Failed + IP-Anmeldebeschränkung fehlgeschlagen - Account Locked Down - Account gesperrt + Account Locked Down + Account gesperrt - Account Logon Denied Verified Email Required - Account anmeldung abgelehnt, Verifizierte E-Mail erforderlich + Account Logon Denied Verified Email Required + Account anmeldung abgelehnt, Verifizierte E-Mail erforderlich - No MatchingURL - Keine passende URL + No MatchingURL + Keine passende URL - Bad Response - Ungültige Antwort + Bad Response + Ungültige Antwort - Require Password ReEntry - Passwort erneurt eintragen + Require Password ReEntry + Passwort erneurt eintragen - Value Out Of Range - Wert außerhalb des Bereichs + Value Out Of Range + Wert außerhalb des Bereichs - Unexpecte Error - Unerwarteter Fehler + Unexpecte Error + Unerwarteter Fehler - Disabled - Deaktiviert + Disabled + Deaktiviert - Invalid CEG Submission - Ungültige CEG-Einreichung + Invalid CEG Submission + Ungültige CEG-Einreichung - Restricted Device - Eingeschränktes Gerät + Restricted Device + Eingeschränktes Gerät - Region Locked - Region gesperrt + Region Locked + Region gesperrt - Rate Limit Exceeded - Frequenzgrenze überschritten + Rate Limit Exceeded + Frequenzgrenze überschritten - Account Login Denied Need Two Factor - Accountanmeldung verweigert zwei Faktor Auth benötigt + Account Login Denied Need Two Factor + Accountanmeldung verweigert zwei Faktor Auth benötigt - Item Deleted - item gelöscht + Item Deleted + item gelöscht - Account Login Denied Throttle - Account Anmeldung abgelehnt + Account Login Denied Throttle + Account Anmeldung abgelehnt - Two Factor Code Mismatch - Zwei Faktor Code stimmt nicht überein + Two Factor Code Mismatch + Zwei Faktor Code stimmt nicht überein - Two Factor Activation Code Mismatch - Zwei Faktor Code stimmt nicht überein + Two Factor Activation Code Mismatch + Zwei Faktor Code stimmt nicht überein - Account Associated To Multiple Partners - Account ist mehreren Partnern zugeordnet + Account Associated To Multiple Partners + Account ist mehreren Partnern zugeordnet - Not Modified - Nicht modifiziert + Not Modified + Nicht modifiziert - No Mobile Device - Kein Mobilgerät + No Mobile Device + Kein Mobilgerät - Time Not Synced - Zeit nicht synchronisiert + Time Not Synced + Zeit nicht synchronisiert - Sms Code Failed - SMS-Code fehlgeschlagen + Sms Code Failed + SMS-Code fehlgeschlagen - Account Limit Exceeded - Kontolimit überschritten + Account Limit Exceeded + Kontolimit überschritten - Account Activity Limit Exceeded - Kontoaktivitätslimit überschritten + Account Activity Limit Exceeded + Kontoaktivitätslimit überschritten - Phone Activity Limit Exceeded - Telefonaktivitätslimit überschritten + Phone Activity Limit Exceeded + Telefonaktivitätslimit überschritten - Refund To Wallet - Rückerstattung an Wallet + Refund To Wallet + Rückerstattung an Wallet - Email Send Failure - E-Mail-Sendefehler + Email Send Failure + E-Mail-Sendefehler - Not Settled - Nicht geklärt + Not Settled + Nicht geklärt - Need Captcha - Captcha benötigt + Need Captcha + Captcha benötigt - GSLT Denied - GSLT abgelehnt + GSLT Denied + GSLT abgelehnt - GS Owner Denied - GS besitzer abgelehnt + GS Owner Denied + GS besitzer abgelehnt - Invalid Item Type - Ungültiger Item Typ + Invalid Item Type + Ungültiger Item Typ - IP Banned - IP Gebannt + IP Banned + IP Gebannt - GSLT Expired - GSLT Abgelaufen + GSLT Expired + GSLT Abgelaufen - Insufficient Funds - Unzureichende Mittel + Insufficient Funds + Unzureichende Mittel - Too Many Pending - Zu viele ausstehend + Too Many Pending + Zu viele ausstehend - No Site Licenses Found - Keine Site-Lizenzen gefunden + No Site Licenses Found + Keine Site-Lizenzen gefunden - WG Network Send Exceeded - WG-Netzwerk senden überschritten + WG Network Send Exceeded + WG-Netzwerk senden überschritten - Account Not Friends - Account nicht befreundet + Account Not Friends + Account nicht befreundet - Limited User Account - Eingeschränktes Benutzerkonto + Limited User Account + Eingeschränktes Benutzerkonto - Cant Remove Item - Item kann nicht Entfernt werden + Cant Remove Item + Item kann nicht Entfernt werden - Account Deleted - Account gelöscht + Account Deleted + Account gelöscht - Existing User Cancelled License - Benutzer hat Lizenz Annulliert + Existing User Cancelled License + Benutzer hat Lizenz Annulliert - Community Cooldown - Community-Abklingzeit + Community Cooldown + Community-Abklingzeit - Status: - Status: + Status: + Status: - Upload Progress: - Upload-Fortschritt: + Upload Progress: + Upload-Fortschritt: - - + + WebsiteWallpaper - Create a Website Wallpaper - Erstelle ein Website Wallpaper + Create a Website Wallpaper + Erstelle ein Website Wallpaper - General - Allgemein + General + Allgemein - Wallpaper name - Wallpaper Name + Wallpaper name + Wallpaper Name - Created By - Erstellt von + Created By + Erstellt von - Description - Beschreibung + Description + Beschreibung - Tags - Schlagwörter + Tags + Schlagwörter - Preview Image - Vorschaubild + Preview Image + Vorschaubild - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage - Save - Speichern + Save + Speichern - Saving... - Speichern... + Saving... + Speichern... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Erfolgreich Steam Workshop Item Abonniert! + Successfully subscribed to Workshop Item! + Erfolgreich Steam Workshop Item Abonniert! - Download complete! - Download abgeschlossen! + Download complete! + Download abgeschlossen! - - + + XMLNewsfeed - News & Patchnotes - Neuigkeiten & Patchnotes + News & Patchnotes + Neuigkeiten & Patchnotes - + diff --git a/ScreenPlay/translations/ScreenPlay_es_ES.ts b/ScreenPlay/translations/ScreenPlay_es_ES.ts index 21790117..642fc7a6 100644 --- a/ScreenPlay/translations/ScreenPlay_es_ES.ts +++ b/ScreenPlay/translations/ScreenPlay_es_ES.ts @@ -1,1945 +1,1953 @@ - + ColorPicker - Red - Rojo + Red + Rojo - Green - Verde + Green + Verde - Blue - Azul + Blue + Azul - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - R: + R: + R: - G: - G: + G: + G: - B: - B: + B: + B: - H: - H: + H: + H: - S: - S: + S: + S: - V: - V: + V: + V: - Alpha: - Alpha: + Alpha: + Alpha: - # - # + # + # - - + + Community - News - Noticias + News + Noticias - Wiki - Wiki + Wiki + Wiki - Forum - Foro + Forum + Foro - Contribute - Contribuir + Contribute + Contribuir - Steam Workshop - Steam Workshop + Steam Workshop + Steam Workshop - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - Abrir en el navegador + Open in browser + Abrir en el navegador - - + + CreateWallpaperInit - Import any video type - Importar cualquier tipo de vídeo + Import any video type + Importar cualquier tipo de vídeo - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Dependiendo de la configuración de tu PC, es mejor convertir tu fondo de pantalla a un códec de vídeo específico. Si ambos tienen un mal rendimiento también puedes probar un fondo de pantalla QML. Los formatos de vídeo soportados son: + Dependiendo de la configuración de tu PC, es mejor convertir tu fondo de pantalla a un códec de vídeo específico. Si ambos tienen un mal rendimiento también puedes probar un fondo de pantalla QML. Los formatos de vídeo soportados son: *. p4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Establezca su códec de vídeo predeterminado: + Set your preffered video codec: + Establezca su códec de vídeo predeterminado: - Quality slider. Lower value means better quality. - Deslizador de calidad. Un valor más bajo significa una mejor calidad. + Quality slider. Lower value means better quality. + Deslizador de calidad. Un valor más bajo significa una mejor calidad. - Open Documentation - Abrir documentación + Open Documentation + Abrir documentación - Select file - Seleccionar archivo + Select file + Seleccionar archivo - - + + CreateWallpaperResult - An error occurred! - ¡Ha ocurrido un Error! + An error occurred! + ¡Ha ocurrido un Error! - Copy text to clipboard - Copiar texto al portapapeles + Copy text to clipboard + Copiar texto al portapapeles - Back to create and send an error report! - Back to create and send an error report! + Back to create and send an error report! + Back to create and send an error report! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Convirtiendo Audio... + Converting Audio... + Convirtiendo Audio... - Converting Video... This can take some time! - Convirtiendo vídeo... ¡Esto puede tardar un poco! + Converting Video... This can take some time! + Convirtiendo vídeo... ¡Esto puede tardar un poco! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Convert a video to a wallpaper - Convert a video to a wallpaper + Convert a video to a wallpaper + Convert a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Nombre (requerido!) + Name (required!) + Nombre (requerido!) - Description - Descripción + Description + Descripción - Youtube URL - URL de YouTube + Youtube URL + URL de YouTube - Abort - Abortar + Abort + Abortar - Save - Guardar + Save + Guardar - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + DefaultVideoControls - Volume - Volumen + Volume + Volumen - Playback rate - Velocidad de reproducción + Playback rate + Velocidad de reproducción - Current Video Time - Current Video Time + Current Video Time + Current Video Time - Fill Mode - Fill Mode + Fill Mode + Fill Mode - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale_Down - Scale_Down + Scale_Down + Scale_Down - - + + FileSelector - Clear - Clear + Clear + Clear - Select File - Seleccionar Archivo + Select File + Seleccionar Archivo - Please choose a file - Por favor seleccione un archivo + Please choose a file + Por favor seleccione un archivo - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Descargue Fondos y Widgets de nuestros foros manualmente. Si quieres descargar contenido de Steam Workshop tienes que instalar ScreenPlay a través de Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Descargue Fondos y Widgets de nuestros foros manualmente. Si quieres descargar contenido de Steam Workshop tienes que instalar ScreenPlay a través de Steam. - Install Steam Version - Install Steam Version + Install Steam Version + Install Steam Version - Open In Browser - Abre en el Navegador + Open In Browser + Abre en el Navegador - - + + GifWallpaper - Import a Gif Wallpaper - Importar Fondo Gif + Import a Gif Wallpaper + Importar Fondo Gif - Drop a *.gif file here or use 'Select file' below. - Drop a *.gif file here or use 'Select file' below. + Drop a *.gif file here or use 'Select file' below. + Drop a *.gif file here or use 'Select file' below. - Select your gif - Select your gif + Select your gif + Select your gif - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Creado por + Created By + Creado por - Tags - Etiquetas + Tags + Etiquetas - - + + HTMLWallpaper - Create a HTML Wallpaper - Create a HTML Wallpaper + Create a HTML Wallpaper + Create a HTML Wallpaper - General - General + General + General - Wallpaper name - Nombre del fondo + Wallpaper name + Nombre del fondo - Created By - Created By + Created By + Created By - Description - Descripción + Description + Descripción - License & Tags - License & Tags + License & Tags + License & Tags - Preview Image - Imagen de previsualización + Preview Image + Imagen de previsualización - - + + HTMLWidget - Create a HTML widget - Crear un widget HTML + Create a HTML widget + Crear un widget HTML - General - General + General + General - Widget name - Nombre del widget + Widget name + Nombre del widget - Created by - Creado por + Created by + Creado por - Tags - Etiquetas + Tags + Etiquetas - - + + HeadlineSection - Headline Section - Headline Section + Headline Section + Headline Section - - + + ImageSelector - Set your own preview image - Set your own preview image + Set your own preview image + Set your own preview image - Clear - Clear + Clear + Clear - Select Preview Image - Select Preview Image + Select Preview Image + Select Preview Image - - + + ImportWebmConvert - - + + - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Guardar + Save + Guardar - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + ImportWebmInit - Import a .webm video - Importar un vídeo .webm + Import a .webm video + Importar un vídeo .webm - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Drop a *.webm file here or use 'Select file' below. - Drop a *.webm file here or use 'Select file' below. + Drop a *.webm file here or use 'Select file' below. + Drop a *.webm file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Importh264Convert - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + Importh264Init - Import a .mp4 video - Import a .mp4 video + Import a .mp4 video + Import a .mp4 video - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - Invalid file type. Must be valid h264 (*.mp4)! - Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Installed - - + + - Refreshing! - Refreshing! + Refreshing! + Refreshing! - Pull to refresh! - Pull to refresh! + Pull to refresh! + Pull to refresh! - Get more Wallpaper & Widgets via the Steam workshop! - Get more Wallpaper & Widgets via the Steam workshop! + Get more Wallpaper & Widgets via the Steam workshop! + Get more Wallpaper & Widgets via the Steam workshop! - Open containing folder - Open containing folder + Open containing folder + Open containing folder - Remove Item - Remove Item + Remove Item + Remove Item - Remove via Workshop - Remove via Workshop + Remove via Workshop + Remove via Workshop - Open Workshop Page - Open Workshop Page + Open Workshop Page + Open Workshop Page - Are you sure you want to delete this item? - Are you sure you want to delete this item? + Are you sure you want to delete this item? + Are you sure you want to delete this item? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Get free Widgets and Wallpaper via the Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop - Browse the Steam Workshop - Browse the Steam Workshop + Browse the Steam Workshop + Browse the Steam Workshop - - + + LicenseSelector - License - Licencia + License + Licencia - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - You grant other to remix your work and change the license to their liking. - You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - You allow everyone to do anything with your work. - You allow everyone to do anything with your work. + You allow everyone to do anything with your work. + You allow everyone to do anything with your work. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - - + + Monitors - Wallpaper Configuration - Wallpaper Configuration + Wallpaper Configuration + Wallpaper Configuration - Remove selected - Remove selected + Remove selected + Remove selected - Wallpapers - Wallpapers + Wallpapers + Wallpapers - Widgets - Widgets + Widgets + Widgets - Remove all - Remove all + Remove all + Remove all - - + + MonitorsProjectSettingItem - Set color - Set color + Set color + Set color - Please choose a color - Please choose a color + Please choose a color + Please choose a color - - + + Navigation - All - All + All + All - Scenes - Scenes + Scenes + Scenes - Videos - Videos + Videos + Videos - Widgets - Widgets + Widgets + Widgets - Install Date Ascending - Install Date Ascending + Install Date Ascending + Install Date Ascending - Install Date Descending - Install Date Descending + Install Date Descending + Install Date Descending - Subscribed items: - Subscribed items: + Subscribed items: + Subscribed items: - Upload to the Steam Workshop - Upload to the Steam Workshop + Upload to the Steam Workshop + Upload to the Steam Workshop - Create - Create + Create + Create - Workshop - Workshop + Workshop + Workshop - Installed - Installed + Installed + Installed - Community - Community + Community + Community - Settings - Settings + Settings + Settings - Mute/Unmute all Wallpaper - Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper - Pause/Play all Wallpaper - Pause/Play all Wallpaper + Pause/Play all Wallpaper + Pause/Play all Wallpaper - Configure Wallpaper - Configure Wallpaper + Configure Wallpaper + Configure Wallpaper - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Back - Back - Back + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - You Need to Agree To The Steam Subscriber Agreement First + You Need to Agree To The Steam Subscriber Agreement First + You Need to Agree To The Steam Subscriber Agreement First - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - View The Steam Subscriber Agreement - View The Steam Subscriber Agreement + View The Steam Subscriber Agreement + View The Steam Subscriber Agreement - Accept Steam Workshop Agreement - Accept Steam Workshop Agreement + Accept Steam Workshop Agreement + Accept Steam Workshop Agreement - - + + QMLWallpaper - Create a QML Wallpaper - Create a QML Wallpaper + Create a QML Wallpaper + Create a QML Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - License & Tags - License & Tags + License & Tags + License & Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + QMLWidget - Create a QML widget - Create a QML widget + Create a QML widget + Create a QML widget - General - General + General + General - Widget name - Widget name + Widget name + Widget name - Created by - Created by + Created by + Created by - Tags - Tags + Tags + Tags - - + + SaveNotification - Profile saved successfully! - Profile saved successfully! + Profile saved successfully! + Profile saved successfully! - - + + ScreenPlayItem - NEW - NEW + NEW + NEW - - + + Search - Search for Wallpaper & Widgets - Search for Wallpaper & Widgets + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets - - + + Settings - General - General + General + General - Autostart - Autostart + Autostart + Autostart - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. - High priority Autostart - High priority Autostart + High priority Autostart + High priority Autostart - This options grants ScreenPlay a higher autostart priority than other apps. - This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. - Send anonymous crash reports and statistics - Send anonymous crash reports and statistics + Send anonymous crash reports and statistics + Send anonymous crash reports and statistics - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Set save location - Set save location + Set save location + Set save location - Set location - Set location + Set location + Set location - Your storage path is empty! - Your storage path is empty! + Your storage path is empty! + Your storage path is empty! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Language - Language + Language + Language - Set the ScreenPlay UI Language - Set the ScreenPlay UI Language + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language - Theme - Theme + Theme + Theme - Switch dark/light theme - Switch dark/light theme + Switch dark/light theme + Switch dark/light theme - System Default - System Default + System Default + System Default - Dark - Dark + Dark + Dark - Light - Light + Light + Light - Performance - Performance + Performance + Performance - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Default Fill Mode - Default Fill Mode + Default Fill Mode + Default Fill Mode - Set this property to define how the video is scaled to fit the target area. - Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - About - About + About + About - Thank you for using ScreenPlay - Thank you for using ScreenPlay + Thank you for using ScreenPlay + Thank you for using ScreenPlay - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Version - Version + Version + Version - Open Changelog - Open Changelog + Open Changelog + Open Changelog - Third Party Software - Third Party Software + Third Party Software + Third Party Software - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - Licenses - Licenses + Licenses + Licenses - Logs - Logs + Logs + Logs - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Show Logs - Show Logs + Show Logs + Show Logs - Data Protection - Data Protection + Data Protection + Data Protection - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Privacy - Privacy + Privacy + Privacy - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay Build Version - - + + SettingsExpander - Copy text to clipboard - Copy text to clipboard + Copy text to clipboard + Copy text to clipboard - - + + Sidebar - Tools Overview - Tools Overview + Tools Overview + Tools Overview - Video Import h264 (.mp4) - Video Import h264 (.mp4) + Video Import h264 (.mp4) + Video Import h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) - Video import (all types) - Video import (all types) + Video import (all types) + Video import (all types) - GIF Wallpaper - GIF Wallpaper + GIF Wallpaper + GIF Wallpaper - QML Wallpaper - QML Wallpaper + QML Wallpaper + QML Wallpaper - HTML5 Wallpaper - HTML5 Wallpaper + HTML5 Wallpaper + HTML5 Wallpaper - Website Wallpaper - Website Wallpaper + Website Wallpaper + Website Wallpaper - QML Widget - QML Widget + QML Widget + QML Widget - HTML Widget - HTML Widget + HTML Widget + HTML Widget - Set Wallpaper - Set Wallpaper + Set Wallpaper + Set Wallpaper - Set Widget - Set Widget + Set Widget + Set Widget - Headline - Headline + Headline + Headline - Select a Monitor to display the content - Select a Monitor to display the content + Select a Monitor to display the content + Select a Monitor to display the content - Set Volume - Set Volume + Set Volume + Set Volume - Fill Mode - Fill Mode + Fill Mode + Fill Mode - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - Size: - Size: + Size: + Size: - No description... - No description... + No description... + No description... - Click here if you like the content - Click here if you like the content + Click here if you like the content + Click here if you like the content - Click here if you do not like the content - Click here if you do not like the content + Click here if you do not like the content + Click here if you do not like the content - Subscribtions: - Subscribtions: + Subscribtions: + Subscribtions: - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Subscribed! - Subscribed! + Subscribed! + Subscribed! - Subscribe - Subscribe + Subscribe + Subscribe - - + + StartInfo - Free tools to help you to create wallpaper - Free tools to help you to create wallpaper + Free tools to help you to create wallpaper + Free tools to help you to create wallpaper - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - - + + SteamNotAvailable - Could not load steam integration! - Could not load steam integration! + Could not load steam integration! + Could not load steam integration! - - + + SteamProfile - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + SteamWorkshopStartPage - Loading - Loading + Loading + Loading - Download now! - Download now! + Download now! + Download now! - Downloading... - Downloading... + Downloading... + Downloading... - Details - Details + Details + Details - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Profile - Profile + Profile + Profile - Upload - Upload + Upload + Upload - Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... - Open Workshop in Steam - Open Workshop in Steam + Open Workshop in Steam + Open Workshop in Steam - Ranked By Vote - Ranked By Vote + Ranked By Vote + Ranked By Vote - Publication Date - Publication Date + Publication Date + Publication Date - Ranked By Trend - Ranked By Trend + Ranked By Trend + Ranked By Trend - Favorited By Friends - Favorited By Friends + Favorited By Friends + Favorited By Friends - Created By Friends - Created By Friends + Created By Friends + Created By Friends - Created By Followed Users - Created By Followed Users + Created By Followed Users + Created By Followed Users - Not Yet Rated - Not Yet Rated + Not Yet Rated + Not Yet Rated - Total VotesAsc - Total VotesAsc + Total VotesAsc + Total VotesAsc - Votes Up - Votes Up + Votes Up + Votes Up - Total Unique Subscriptions - Total Unique Subscriptions + Total Unique Subscriptions + Total Unique Subscriptions - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + TagSelector - Save - Save + Save + Save - Add tag - Add tag + Add tag + Add tag - Cancel - Cancel + Cancel + Cancel - Add Tag - Add Tag + Add Tag + Add Tag - - + + TextField - Label - Label + Label + Label - *Required - *Required + *Required + *Required - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. - Open ScreenPlay - Open ScreenPlay + Open ScreenPlay + Open ScreenPlay - Mute all - Mute all + Mute all + Mute all - Unmute all - Unmute all + Unmute all + Unmute all - Pause all - Pause all + Pause all + Pause all - Play all - Play all + Play all + Play all - Quit - Quit + Quit + Quit - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - Abort - Abort + Abort + Abort - Upload Selected Projects - Upload Selected Projects + Upload Selected Projects + Upload Selected Projects - Finish - Finish + Finish + Finish - - + + UploadProjectBigItem - Type: - Type: + Type: + Type: - Open Folder - Open Folder + Open Folder + Open Folder - Invalid Project! - Invalid Project! + Invalid Project! + Invalid Project! - - + + UploadProjectItem - Fail - Fail + Fail + Fail - No Connection - No Connection + No Connection + No Connection - Invalid Password - Invalid Password + Invalid Password + Invalid Password - Logged In Elsewhere - Logged In Elsewhere + Logged In Elsewhere + Logged In Elsewhere - Invalid Protocol Version - Invalid Protocol Version + Invalid Protocol Version + Invalid Protocol Version - Invalid Param - Invalid Param + Invalid Param + Invalid Param - File Not Found - File Not Found + File Not Found + File Not Found - Busy - Busy + Busy + Busy - Invalid State - Invalid State + Invalid State + Invalid State - Invalid Name - Invalid Name + Invalid Name + Invalid Name - Invalid Email - Invalid Email + Invalid Email + Invalid Email - Duplicate Name - Duplicate Name + Duplicate Name + Duplicate Name - Access Denied - Access Denied + Access Denied + Access Denied - Timeout - Timeout + Timeout + Timeout - Banned - Banned + Banned + Banned - Account Not Found - Account Not Found + Account Not Found + Account Not Found - Invalid SteamID - Invalid SteamID + Invalid SteamID + Invalid SteamID - Service Unavailable - Service Unavailable + Service Unavailable + Service Unavailable - Not Logged On - Not Logged On + Not Logged On + Not Logged On - Pending - Pending + Pending + Pending - Encryption Failure - Encryption Failure + Encryption Failure + Encryption Failure - Insufficient Privilege - Insufficient Privilege + Insufficient Privilege + Insufficient Privilege - Limit Exceeded - Limit Exceeded + Limit Exceeded + Limit Exceeded - Revoked - Revoked + Revoked + Revoked - Expired - Expired + Expired + Expired - Already Redeemed - Already Redeemed + Already Redeemed + Already Redeemed - Duplicate Request - Duplicate Request + Duplicate Request + Duplicate Request - Already Owned - Already Owned + Already Owned + Already Owned - IP Not Found - IP Not Found + IP Not Found + IP Not Found - Persist Failed - Persist Failed + Persist Failed + Persist Failed - Locking Failed - Locking Failed + Locking Failed + Locking Failed - Logon Session Replaced - Logon Session Replaced + Logon Session Replaced + Logon Session Replaced - Connect Failed - Connect Failed + Connect Failed + Connect Failed - Handshake Failed - Handshake Failed + Handshake Failed + Handshake Failed - IO Failure - IO Failure + IO Failure + IO Failure - Remote Disconnect - Remote Disconnect + Remote Disconnect + Remote Disconnect - Shopping Cart Not Found - Shopping Cart Not Found + Shopping Cart Not Found + Shopping Cart Not Found - Blocked - Blocked + Blocked + Blocked - Ignored - Ignored + Ignored + Ignored - No Match - No Match + No Match + No Match - Account Disabled - Account Disabled + Account Disabled + Account Disabled - Service ReadOnly - Service ReadOnly + Service ReadOnly + Service ReadOnly - Account Not Featured - Account Not Featured + Account Not Featured + Account Not Featured - Administrator OK - Administrator OK + Administrator OK + Administrator OK - Content Version - Content Version + Content Version + Content Version - Try Another CM - Try Another CM + Try Another CM + Try Another CM - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Already Logged In Elsewhere + Already Logged In Elsewhere + Already Logged In Elsewhere - Suspended - Suspended + Suspended + Suspended - Cancelled - Cancelled + Cancelled + Cancelled - Data Corruption - Data Corruption + Data Corruption + Data Corruption - Disk Full - Disk Full + Disk Full + Disk Full - Remote Call Failed - Remote Call Failed + Remote Call Failed + Remote Call Failed - Password Unset - Password Unset + Password Unset + Password Unset - External Account Unlinked - External Account Unlinked + External Account Unlinked + External Account Unlinked - PSN Ticket Invalid - PSN Ticket Invalid + PSN Ticket Invalid + PSN Ticket Invalid - External Account Already Linked - External Account Already Linked + External Account Already Linked + External Account Already Linked - Remote File Conflict - Remote File Conflict + Remote File Conflict + Remote File Conflict - Illegal Password - Illegal Password + Illegal Password + Illegal Password - Same As Previous Value - Same As Previous Value + Same As Previous Value + Same As Previous Value - Account Logon Denied - Account Logon Denied + Account Logon Denied + Account Logon Denied - Cannot Use Old Password - Cannot Use Old Password + Cannot Use Old Password + Cannot Use Old Password - Invalid Login AuthCode - Invalid Login AuthCode + Invalid Login AuthCode + Invalid Login AuthCode - Account Logon Denied No Mail - Account Logon Denied No Mail + Account Logon Denied No Mail + Account Logon Denied No Mail - Hardware Not Capable Of IPT - Hardware Not Capable Of IPT + Hardware Not Capable Of IPT + Hardware Not Capable Of IPT - IPT Init Error - IPT Init Error + IPT Init Error + IPT Init Error - Parental Control Restricted - Parental Control Restricted + Parental Control Restricted + Parental Control Restricted - Facebook Query Error - Facebook Query Error + Facebook Query Error + Facebook Query Error - Expired Login Auth Code - Expired Login Auth Code + Expired Login Auth Code + Expired Login Auth Code - IP Login Restriction Failed - IP Login Restriction Failed + IP Login Restriction Failed + IP Login Restriction Failed - Account Locked Down - Account Locked Down + Account Locked Down + Account Locked Down - Account Logon Denied Verified Email Required - Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required - No MatchingURL - No MatchingURL + No MatchingURL + No MatchingURL - Bad Response - Bad Response + Bad Response + Bad Response - Require Password ReEntry - Require Password ReEntry + Require Password ReEntry + Require Password ReEntry - Value Out Of Range - Value Out Of Range + Value Out Of Range + Value Out Of Range - Unexpecte Error - Unexpecte Error + Unexpecte Error + Unexpecte Error - Disabled - Disabled + Disabled + Disabled - Invalid CEG Submission - Invalid CEG Submission + Invalid CEG Submission + Invalid CEG Submission - Restricted Device - Restricted Device + Restricted Device + Restricted Device - Region Locked - Region Locked + Region Locked + Region Locked - Rate Limit Exceeded - Rate Limit Exceeded + Rate Limit Exceeded + Rate Limit Exceeded - Account Login Denied Need Two Factor - Account Login Denied Need Two Factor + Account Login Denied Need Two Factor + Account Login Denied Need Two Factor - Item Deleted - Item Deleted + Item Deleted + Item Deleted - Account Login Denied Throttle - Account Login Denied Throttle + Account Login Denied Throttle + Account Login Denied Throttle - Two Factor Code Mismatch - Two Factor Code Mismatch + Two Factor Code Mismatch + Two Factor Code Mismatch - Two Factor Activation Code Mismatch - Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch - Account Associated To Multiple Partners - Account Associated To Multiple Partners + Account Associated To Multiple Partners + Account Associated To Multiple Partners - Not Modified - Not Modified + Not Modified + Not Modified - No Mobile Device - No Mobile Device + No Mobile Device + No Mobile Device - Time Not Synced - Time Not Synced + Time Not Synced + Time Not Synced - Sms Code Failed - Sms Code Failed + Sms Code Failed + Sms Code Failed - Account Limit Exceeded - Account Limit Exceeded + Account Limit Exceeded + Account Limit Exceeded - Account Activity Limit Exceeded - Account Activity Limit Exceeded + Account Activity Limit Exceeded + Account Activity Limit Exceeded - Phone Activity Limit Exceeded - Phone Activity Limit Exceeded + Phone Activity Limit Exceeded + Phone Activity Limit Exceeded - Refund To Wallet - Refund To Wallet + Refund To Wallet + Refund To Wallet - Email Send Failure - Email Send Failure + Email Send Failure + Email Send Failure - Not Settled - Not Settled + Not Settled + Not Settled - Need Captcha - Need Captcha + Need Captcha + Need Captcha - GSLT Denied - GSLT Denied + GSLT Denied + GSLT Denied - GS Owner Denied - GS Owner Denied + GS Owner Denied + GS Owner Denied - Invalid Item Type - Invalid Item Type + Invalid Item Type + Invalid Item Type - IP Banned - IP Banned + IP Banned + IP Banned - GSLT Expired - GSLT Expired + GSLT Expired + GSLT Expired - Insufficient Funds - Insufficient Funds + Insufficient Funds + Insufficient Funds - Too Many Pending - Too Many Pending + Too Many Pending + Too Many Pending - No Site Licenses Found - No Site Licenses Found + No Site Licenses Found + No Site Licenses Found - WG Network Send Exceeded - WG Network Send Exceeded + WG Network Send Exceeded + WG Network Send Exceeded - Account Not Friends - Account Not Friends + Account Not Friends + Account Not Friends - Limited User Account - Limited User Account + Limited User Account + Limited User Account - Cant Remove Item - Cant Remove Item + Cant Remove Item + Cant Remove Item - Account Deleted - Account Deleted + Account Deleted + Account Deleted - Existing User Cancelled License - Existing User Cancelled License + Existing User Cancelled License + Existing User Cancelled License - Community Cooldown - Community Cooldown + Community Cooldown + Community Cooldown - Status: - Status: + Status: + Status: - Upload Progress: - Upload Progress: + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - Create a Website Wallpaper - Create a Website Wallpaper + Create a Website Wallpaper + Create a Website Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - Tags - Tags + Tags + Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage - Save - Save + Save + Save - Saving... - Saving... + Saving... + Saving... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - Download complete! - Download complete! + Download complete! + Download complete! - - + + XMLNewsfeed - News & Patchnotes - News & Patchnotes + News & Patchnotes + News & Patchnotes - + diff --git a/ScreenPlay/translations/ScreenPlay_fr_FR.ts b/ScreenPlay/translations/ScreenPlay_fr_FR.ts index 5d665c29..4e019df4 100644 --- a/ScreenPlay/translations/ScreenPlay_fr_FR.ts +++ b/ScreenPlay/translations/ScreenPlay_fr_FR.ts @@ -1,1945 +1,1953 @@ - + ColorPicker - Red - Rouge + Red + Rouge - Green - Vert + Green + Vert - Blue - Bleu + Blue + Bleu - RGB - RGB + RGB + RGB - HSV - TSV + HSV + TSV - R: - R : + R: + R : - G: - G : + G: + G : - B: - B : + B: + B : - H: - H : + H: + H : - S: - S : + S: + S : - V: - V : + V: + V : - Alpha: - Alpha : + Alpha: + Alpha : - # - # + # + # - - + + Community - News - Actualités + News + Actualités - Wiki - Wiki + Wiki + Wiki - Forum - Forum + Forum + Forum - Contribute - Contribuer + Contribute + Contribuer - Steam Workshop - Steam Workshop + Steam Workshop + Steam Workshop - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - Ouvrir dans le navigateur + Open in browser + Ouvrir dans le navigateur - - + + CreateWallpaperInit - Import any video type - Importer n’importe quel type de vidéo + Import any video type + Importer n’importe quel type de vidéo - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Selon la configuration de votre PC, il est préférable de convertir votre fond d'écran vers un codec vidéo spécifique. Si les deux ont de mauvaises performances, vous pouvez aussi essayer un fond d'écran QML! Les formats vidéo pris en charge sont : + Selon la configuration de votre PC, il est préférable de convertir votre fond d'écran vers un codec vidéo spécifique. Si les deux ont de mauvaises performances, vous pouvez aussi essayer un fond d'écran QML! Les formats vidéo pris en charge sont : *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Définissez votre codec vidéo préféré : + Set your preffered video codec: + Définissez votre codec vidéo préféré : - Quality slider. Lower value means better quality. - Curseur de qualité. Une valeur plus faible signifie une meilleure qualité. + Quality slider. Lower value means better quality. + Curseur de qualité. Une valeur plus faible signifie une meilleure qualité. - Open Documentation - Ouvrir la documentation + Open Documentation + Ouvrir la documentation - Select file - Sélectionner un fichier + Select file + Sélectionner un fichier - - + + CreateWallpaperResult - An error occurred! - Une erreur est survenue ! + An error occurred! + Une erreur est survenue ! - Copy text to clipboard - Copier le texte dans le presse-papiers + Copy text to clipboard + Copier le texte dans le presse-papiers - Back to create and send an error report! - Retour à la création et envoyer un rapport d’erreur ! + Back to create and send an error report! + Retour à la création et envoyer un rapport d’erreur ! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - Génération de l'image d'aperçu... + Generating preview image... + Génération de l'image d'aperçu... - Generating preview thumbnail image... - Génération de la miniature de l’aperçu... + Generating preview thumbnail image... + Génération de la miniature de l’aperçu... - Generating 5 second preview video... - Génération d’une vidéo d’aperçu de 5 secondes... + Generating 5 second preview video... + Génération d’une vidéo d’aperçu de 5 secondes... - Generating preview gif... - Génération de l’aperçu gif... + Generating preview gif... + Génération de l’aperçu gif... - Converting Audio... - Conversion de l’audio... + Converting Audio... + Conversion de l’audio... - Converting Video... This can take some time! - Conversion de la vidéo... Cela peut prendre un certain temps ! + Converting Video... This can take some time! + Conversion de la vidéo... Cela peut prendre un certain temps ! - Converting Video ERROR! - Erreur de conversion de la vidéo ! + Converting Video ERROR! + Erreur de conversion de la vidéo ! - Analyse Video ERROR! - Erreur d'Analyse Vidéo ! + Analyse Video ERROR! + Erreur d'Analyse Vidéo ! - Convert a video to a wallpaper - Convertir une vidéo en fond d'écran + Convert a video to a wallpaper + Convertir une vidéo en fond d'écran - Generating preview video... - Génération de la vidéo d'aperçu... + Generating preview video... + Génération de la vidéo d'aperçu... - Name (required!) - Nom (requis!) + Name (required!) + Nom (requis!) - Description - Description + Description + Description - Youtube URL - URL Youtube  + Youtube URL + URL Youtube  - Abort - Annuler + Abort + Annuler - Save - Sauvegarder + Save + Sauvegarder - Save Wallpaper... - Enregistrer le fond d'écran + Save Wallpaper... + Enregistrer le fond d'écran - - + + DefaultVideoControls - Volume - Volume + Volume + Volume - Playback rate - Vitesse de lecture + Playback rate + Vitesse de lecture - Current Video Time - Progression de la vidéo en cours + Current Video Time + Progression de la vidéo en cours - Fill Mode - Mode d'affichage + Fill Mode + Mode d'affichage - Stretch - Étirer + Stretch + Étirer - Fill - Remplir + Fill + Remplir - Contain - Contenir + Contain + Contenir - Cover - Couvrir + Cover + Couvrir - Scale_Down - Réduire + Scale_Down + Réduire - - + + FileSelector - Clear - Effacer + Clear + Effacer - Select File - Sélectionner un fichier + Select File + Sélectionner un fichier - Please choose a file - Veuillez choisir un fichier + Please choose a file + Veuillez choisir un fichier - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Téléchargez manuellement des fond d'écran et des widgets depuis notre forum. Si vous voulez télécharger du contenu Steam Workshop, vous devez installer ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Téléchargez manuellement des fond d'écran et des widgets depuis notre forum. Si vous voulez télécharger du contenu Steam Workshop, vous devez installer ScreenPlay via Steam. - Install Steam Version - Installer la version Steam + Install Steam Version + Installer la version Steam - Open In Browser - Ouvrir dans le navigateur + Open In Browser + Ouvrir dans le navigateur - - + + GifWallpaper - Import a Gif Wallpaper - Importer un fond d'écran Gif + Import a Gif Wallpaper + Importer un fond d'écran Gif - Drop a *.gif file here or use 'Select file' below. - Déposez un fichier *.gif ici ou utilisez 'Sélectionner un fichier' ci-dessous. + Drop a *.gif file here or use 'Select file' below. + Déposez un fichier *.gif ici ou utilisez 'Sélectionner un fichier' ci-dessous. - Select your gif - Sélectionnez votre gif + Select your gif + Sélectionnez votre gif - General - Général + General + Général - Wallpaper name - Nom du fond d'écran + Wallpaper name + Nom du fond d'écran - Created By - Créé par + Created By + Créé par - Tags - Tags + Tags + Tags - - + + HTMLWallpaper - Create a HTML Wallpaper - Créer un fond d'écran HTML + Create a HTML Wallpaper + Créer un fond d'écran HTML - General - Général + General + Général - Wallpaper name - Nom du fond d'écran + Wallpaper name + Nom du fond d'écran - Created By - Créé par + Created By + Créé par - Description - Description + Description + Description - License & Tags - Licence & Tags + License & Tags + Licence & Tags - Preview Image - Aperçu de l'image + Preview Image + Aperçu de l'image - - + + HTMLWidget - Create a HTML widget - Créer un widget HTML + Create a HTML widget + Créer un widget HTML - General - Général + General + Général - Widget name - Nom du Widget + Widget name + Nom du Widget - Created by - Créé par + Created by + Créé par - Tags - Tags + Tags + Tags - - + + HeadlineSection - Headline Section - Section de titre + Headline Section + Section de titre - - + + ImageSelector - Set your own preview image - Définissez votre image d'aperçu + Set your own preview image + Définissez votre image d'aperçu - Clear - Effacer + Clear + Effacer - Select Preview Image - Sélectionner l'image d'aperçu + Select Preview Image + Sélectionner l'image d'aperçu - - + + ImportWebmConvert - - + + - AnalyseVideo... - AnalyseVidéo... + AnalyseVideo... + AnalyseVidéo... - Generating preview image... - Génération de l'image d'aperçu... + Generating preview image... + Génération de l'image d'aperçu... - Generating preview thumbnail image... - Génération de la miniature de l’aperçu... + Generating preview thumbnail image... + Génération de la miniature de l’aperçu... - Generating 5 second preview video... - Génération d’une vidéo d’aperçu de 5 secondes... + Generating 5 second preview video... + Génération d’une vidéo d’aperçu de 5 secondes... - Generating preview gif... - Génération du Gif d’aperçu... + Generating preview gif... + Génération du Gif d’aperçu... - Converting Audio... - Conversion de l’audio... + Converting Audio... + Conversion de l’audio... - Converting Video... This can take some time! - Conversion de vidéo... Cela peut prendre du temps! + Converting Video... This can take some time! + Conversion de vidéo... Cela peut prendre du temps! - Converting Video ERROR! - Erreur de conversion vidéo ! + Converting Video ERROR! + Erreur de conversion vidéo ! - Analyse Video ERROR! - Erreur d'Analyse Vidéo ! + Analyse Video ERROR! + Erreur d'Analyse Vidéo ! - Import a video to a wallpaper - Convertir une vidéo en fond d'écran + Import a video to a wallpaper + Convertir une vidéo en fond d'écran - Generating preview video... - Génération de la vidéo d'aperçu... + Generating preview video... + Génération de la vidéo d'aperçu... - Name (required!) - Nom (requis!) + Name (required!) + Nom (requis!) - Description - Description + Description + Description - Youtube URL - URL Youtube  + Youtube URL + URL Youtube  - Abort - Annuler + Abort + Annuler - Save - Enregistrer + Save + Enregistrer - Save Wallpaper... - Enregistrer le fond d'écran + Save Wallpaper... + Enregistrer le fond d'écran - - + + ImportWebmInit - Import a .webm video - Importer une vidéo .webm + Import a .webm video + Importer une vidéo .webm - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Lors de l'importation de webm, vous pouvez ignorer l'étape de conversion. Lorsque vous obtenez des résultats insatisfaisants avec l'importateur de ScreenPlay via 'import et conversion de vidéo (tous types)' vous pouvez convertir au format webm via le logiciel HandBrake. Il est gratuit et open source! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + Lors de l'importation de webm, vous pouvez ignorer l'étape de conversion. Lorsque vous obtenez des résultats insatisfaisants avec l'importateur de ScreenPlay via 'import et conversion de vidéo (tous types)' vous pouvez convertir au format webm via le logiciel HandBrake. Il est gratuit et open source! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Type de fichier invalide. Doit être un VP8 ou VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Type de fichier invalide. Doit être un VP8 ou VP9 (*.webm)! - Drop a *.webm file here or use 'Select file' below. - Déposez un fichier *.webm ici ou utilisez 'Sélectionner un fichier' ci-dessous. + Drop a *.webm file here or use 'Select file' below. + Déposez un fichier *.webm ici ou utilisez 'Sélectionner un fichier' ci-dessous. - Open Documentation - Ouvrir la documentation + Open Documentation + Ouvrir la documentation - Select file - Sélectionner un fichier + Select file + Sélectionner un fichier - - + + Importh264Convert - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + Importh264Init - Import a .mp4 video - Import a .mp4 video + Import a .mp4 video + Import a .mp4 video - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - Invalid file type. Must be valid h264 (*.mp4)! - Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Installed - - + + - Refreshing! - Actualisation! + Refreshing! + Actualisation! - Pull to refresh! - Faire glisser pour actualiser! + Pull to refresh! + Faire glisser pour actualiser! - Get more Wallpaper & Widgets via the Steam workshop! - Obtenez plus de fonds d'écran et de widgets via le Steam Workshop! + Get more Wallpaper & Widgets via the Steam workshop! + Obtenez plus de fonds d'écran et de widgets via le Steam Workshop! - Open containing folder - Ouvrir le dossier source + Open containing folder + Ouvrir le dossier source - Remove Item - Supprimer l'élément + Remove Item + Supprimer l'élément - Remove via Workshop - Retirer via le Workshop + Remove via Workshop + Retirer via le Workshop - Open Workshop Page - Ouvrir la page du Workshop + Open Workshop Page + Ouvrir la page du Workshop - Are you sure you want to delete this item? - Êtes-vous sûr de vouloir supprimer cet élément? + Are you sure you want to delete this item? + Êtes-vous sûr de vouloir supprimer cet élément? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Obtenez des Widgets et des fonds d'écran gratuits via le Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop + Obtenez des Widgets et des fonds d'écran gratuits via le Steam Workshop - Browse the Steam Workshop - Parcourir le Steam Workshop + Browse the Steam Workshop + Parcourir le Steam Workshop - - + + LicenseSelector - License - Licence + License + Licence - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Partager — copier et redistribuer le matériel sous n'importe quel support ou format. Adapter — remixer, transformer et construire à partir du matériel dans n'importe quel but, même commercial. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Partager — copier et redistribuer le matériel sous n'importe quel support ou format. Adapter — remixer, transformer et construire à partir du matériel dans n'importe quel but, même commercial. - You grant other to remix your work and change the license to their liking. - Vous permettez aux autres utilisateurs de réutiliser et altérer votre travail et de changer la licence selon leur souhait. + You grant other to remix your work and change the license to their liking. + Vous permettez aux autres utilisateurs de réutiliser et altérer votre travail et de changer la licence selon leur souhait. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Partager — copier et redistribuer le matériel sous n'importe quel support ou format. Adapter — remixer, transformer et construire à partir du matériel. L'usage commercial n'est pas autorisé! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Partager — copier et redistribuer le matériel sous n'importe quel support ou format. Adapter — remixer, transformer et construire à partir du matériel. L'usage commercial n'est pas autorisé! - You allow everyone to do anything with your work. - Vous autorisez tout le monde à faire quoi que ce soit avec votre travail. + You allow everyone to do anything with your work. + Vous autorisez tout le monde à faire quoi que ce soit avec votre travail. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - Vous permettez aux autres utilisateurs de réutiliser et altérer votre travail, mais il doit rester sous licence GPLv3. Nous recommandons cette licence pour tout les fonds d'écrans codé. + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + Vous permettez aux autres utilisateurs de réutiliser et altérer votre travail, mais il doit rester sous licence GPLv3. Nous recommandons cette licence pour tout les fonds d'écrans codé. - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - La configuration de votre écran a changé! - Veuillez configurer votre fond d'écran à nouveau. + La configuration de votre écran a changé! + Veuillez configurer votre fond d'écran à nouveau. - - + + Monitors - Wallpaper Configuration - Configuration du fond d'écran + Wallpaper Configuration + Configuration du fond d'écran - Remove selected - Retirer l'écran sélectionné + Remove selected + Retirer l'écran sélectionné - Wallpapers - Fonds d’écran + Wallpapers + Fonds d’écran - Widgets - Widgets + Widgets + Widgets - Remove all - Remove all + Remove all + Remove all - - + + MonitorsProjectSettingItem - Set color - Définir la couleur + Set color + Définir la couleur - Please choose a color - Veuillez choisir une couleur + Please choose a color + Veuillez choisir une couleur - - + + Navigation - All - Tout + All + Tout - Scenes - Scènes + Scenes + Scènes - Videos - Vidéos + Videos + Vidéos - Widgets - Widgets + Widgets + Widgets - Install Date Ascending - Date d'installation croissante + Install Date Ascending + Date d'installation croissante - Install Date Descending - Date d'installation décroissante + Install Date Descending + Date d'installation décroissante - Subscribed items: - Éléments souscrits : + Subscribed items: + Éléments souscrits : - Upload to the Steam Workshop - Uploader sur le Steam Workshop + Upload to the Steam Workshop + Uploader sur le Steam Workshop - Create - Créer + Create + Créer - Workshop - Workshop + Workshop + Workshop - Installed - Installé + Installed + Installé - Community - Communauté + Community + Communauté - Settings - Paramètres + Settings + Paramètres - Mute/Unmute all Wallpaper - Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper - Pause/Play all Wallpaper - Pause/Play all Wallpaper + Pause/Play all Wallpaper + Pause/Play all Wallpaper - Configure Wallpaper - Configure Wallpaper + Configure Wallpaper + Configure Wallpaper - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - Vous devez exécuter Steam pour cela. steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Précédent - Back - Précédent + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - Vous devez d'abord accepter l'Accord de Souscription Steam + You Need to Agree To The Steam Subscriber Agreement First + Vous devez d'abord accepter l'Accord de Souscription Steam - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - REQUIÈRE UNE CONNEXION INTERNET ET UN COMPTE STEAM GRATUIT POUR L'ACTIVATION. Avertissement: Produit offert sous réserve de votre acceptation de l'Accord de Souscription Steam (ASS). Vous devez activer ce produit via Internet en vous enregistrant sur un compte Steam et en acceptant l'ASS. Veuillez consulter https://store.steampowered.com/subscriber_agreement/ pour consulter l'ASS avant l'achat. Si vous n'êtes pas d'accord avec les dispositions de l'ASS, vous devriez retourner ce jeu non ouvert à votre détaillant conformément à leur politique de retour. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIÈRE UNE CONNEXION INTERNET ET UN COMPTE STEAM GRATUIT POUR L'ACTIVATION. Avertissement: Produit offert sous réserve de votre acceptation de l'Accord de Souscription Steam (ASS). Vous devez activer ce produit via Internet en vous enregistrant sur un compte Steam et en acceptant l'ASS. Veuillez consulter https://store.steampowered.com/subscriber_agreement/ pour consulter l'ASS avant l'achat. Si vous n'êtes pas d'accord avec les dispositions de l'ASS, vous devriez retourner ce jeu non ouvert à votre détaillant conformément à leur politique de retour. - View The Steam Subscriber Agreement - Voir l'Accord de Souscription Steam + View The Steam Subscriber Agreement + Voir l'Accord de Souscription Steam - Accept Steam Workshop Agreement - Accepter l'Accord de Souscription Steam + Accept Steam Workshop Agreement + Accepter l'Accord de Souscription Steam - - + + QMLWallpaper - Create a QML Wallpaper - Créer un fond d'écran QML + Create a QML Wallpaper + Créer un fond d'écran QML - General - Général + General + Général - Wallpaper name - Nom du fond d'écran + Wallpaper name + Nom du fond d'écran - Created By - Créé par + Created By + Créé par - Description - Description + Description + Description - License & Tags - Licence & Tags + License & Tags + Licence & Tags - Preview Image - Image d'aperçu + Preview Image + Image d'aperçu - - + + QMLWidget - Create a QML widget - Créer un widget QML + Create a QML widget + Créer un widget QML - General - Général + General + Général - Widget name - Nom du Widget + Widget name + Nom du Widget - Created by - Créé par + Created by + Créé par - Tags - Tags + Tags + Tags - - + + SaveNotification - Profile saved successfully! - Profil enregistré avec succès! + Profile saved successfully! + Profil enregistré avec succès! - - + + ScreenPlayItem - NEW - NOUVEAU + NEW + NOUVEAU - - + + Search - Search for Wallpaper & Widgets - Recherche de fond d'écran et de widgets + Search for Wallpaper & Widgets + Recherche de fond d'écran et de widgets - - + + Settings - General - Général + General + Général - Autostart - Démarrage automatique + Autostart + Démarrage automatique - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. - High priority Autostart - High priority Autostart + High priority Autostart + High priority Autostart - This options grants ScreenPlay a higher autostart priority than other apps. - This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. - Send anonymous crash reports and statistics - Send anonymous crash reports and statistics + Send anonymous crash reports and statistics + Send anonymous crash reports and statistics - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Set save location - Set save location + Set save location + Set save location - Set location - Set location + Set location + Set location - Your storage path is empty! - Your storage path is empty! + Your storage path is empty! + Your storage path is empty! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Language - Language + Language + Language - Set the ScreenPlay UI Language - Set the ScreenPlay UI Language + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language - Theme - Theme + Theme + Theme - Switch dark/light theme - Switch dark/light theme + Switch dark/light theme + Switch dark/light theme - System Default - System Default + System Default + System Default - Dark - Dark + Dark + Dark - Light - Light + Light + Light - Performance - Performance + Performance + Performance - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Default Fill Mode - Default Fill Mode + Default Fill Mode + Default Fill Mode - Set this property to define how the video is scaled to fit the target area. - Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - About - About + About + About - Thank you for using ScreenPlay - Thank you for using ScreenPlay + Thank you for using ScreenPlay + Thank you for using ScreenPlay - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Version - Version + Version + Version - Open Changelog - Open Changelog + Open Changelog + Open Changelog - Third Party Software - Third Party Software + Third Party Software + Third Party Software - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - Licenses - Licenses + Licenses + Licenses - Logs - Logs + Logs + Logs - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Si ScreenPlay ne fonctionne pas correctement, c'est une bonne façon de chercher des réponses. Cela montre tous les logs et les avertissements émis pendant l'exécution. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + Si ScreenPlay ne fonctionne pas correctement, c'est une bonne façon de chercher des réponses. Cela montre tous les logs et les avertissements émis pendant l'exécution. - Show Logs - Afficher les logs + Show Logs + Afficher les logs - Data Protection - Protection des données + Data Protection + Protection des données - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Nous utilisons vos données exclusivement pour améliorer ScreenPlay. Nous ne vendons pas ou ne partageons pas ces données (anonyme) avec d'autres ! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + Nous utilisons vos données exclusivement pour améliorer ScreenPlay. Nous ne vendons pas ou ne partageons pas ces données (anonyme) avec d'autres ! - Privacy - Confidentialité + Privacy + Confidentialité - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay Build Version - - + + SettingsExpander - Copy text to clipboard - Copier le texte dans le presse-papiers + Copy text to clipboard + Copier le texte dans le presse-papiers - - + + Sidebar - Tools Overview - Tools Overview + Tools Overview + Tools Overview - Video Import h264 (.mp4) - Video Import h264 (.mp4) + Video Import h264 (.mp4) + Video Import h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) - Video import (all types) - Video import (all types) + Video import (all types) + Video import (all types) - GIF Wallpaper - Fond d'écran GIF + GIF Wallpaper + Fond d'écran GIF - QML Wallpaper - Fond d'écran QML + QML Wallpaper + Fond d'écran QML - HTML5 Wallpaper - Fond d'écran HTML5 + HTML5 Wallpaper + Fond d'écran HTML5 - Website Wallpaper - Fond d'écran Site web + Website Wallpaper + Fond d'écran Site web - QML Widget - Widget QML + QML Widget + Widget QML - HTML Widget - Widget HTML + HTML Widget + Widget HTML - Set Wallpaper - Définir le fond d'écran + Set Wallpaper + Définir le fond d'écran - Set Widget - Définir le Widget + Set Widget + Définir le Widget - Headline - Headline + Headline + Headline - Select a Monitor to display the content - Sélectionnez un écran pour afficher le contenu + Select a Monitor to display the content + Sélectionnez un écran pour afficher le contenu - Set Volume - Régler le volume + Set Volume + Régler le volume - Fill Mode - Mode de remplissage + Fill Mode + Mode de remplissage - Stretch - Étirer + Stretch + Étirer - Fill - Remplir + Fill + Remplir - Contain - Contenir + Contain + Contenir - Cover - Couvrir + Cover + Couvrir - Scale-Down - Réduire + Scale-Down + Réduire - Size: - Taille : + Size: + Taille : - No description... - Pas de description ... + No description... + Pas de description ... - Click here if you like the content - Cliquez ici si vous aimez le contenu + Click here if you like the content + Cliquez ici si vous aimez le contenu - Click here if you do not like the content - Cliquez ici si vous n'aimez pas le contenu + Click here if you do not like the content + Cliquez ici si vous n'aimez pas le contenu - Subscribtions: - Abonnements : + Subscribtions: + Abonnements : - Open In Steam - Ouvrir dans Steam + Open In Steam + Ouvrir dans Steam - Subscribed! - Abonné! + Subscribed! + Abonné! - Subscribe - S'abonner + Subscribe + S'abonner - - + + StartInfo - Free tools to help you to create wallpaper - Free tools to help you to create wallpaper + Free tools to help you to create wallpaper + Free tools to help you to create wallpaper - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - - + + SteamNotAvailable - Could not load steam integration! - Impossible de charger l'intégration Steam! + Could not load steam integration! + Impossible de charger l'intégration Steam! - - + + SteamProfile - Back - Précédent + Back + Précédent - Forward - Suivant + Forward + Suivant - - + + SteamWorkshopStartPage - Loading - Chargement + Loading + Chargement - Download now! - Télécharger maintenant! + Download now! + Télécharger maintenant! - Downloading... - Téléchargement... + Downloading... + Téléchargement... - Details - Détails + Details + Détails - Open In Steam - Ouvrir dans Steam + Open In Steam + Ouvrir dans Steam - Profile - Profil + Profile + Profil - Upload - Uploader + Upload + Uploader - Search for Wallpaper and Widgets... - Recherche de fond d'écran et de widgets... + Search for Wallpaper and Widgets... + Recherche de fond d'écran et de widgets... - Open Workshop in Steam - Ouvrir le Workshop dans Steam + Open Workshop in Steam + Ouvrir le Workshop dans Steam - Ranked By Vote - Classé par vote + Ranked By Vote + Classé par vote - Publication Date - Publication Date + Publication Date + Publication Date - Ranked By Trend - Ranked By Trend + Ranked By Trend + Ranked By Trend - Favorited By Friends - Favorited By Friends + Favorited By Friends + Favorited By Friends - Created By Friends - Created By Friends + Created By Friends + Created By Friends - Created By Followed Users - Created By Followed Users + Created By Followed Users + Created By Followed Users - Not Yet Rated - Not Yet Rated + Not Yet Rated + Not Yet Rated - Total VotesAsc - Total VotesAsc + Total VotesAsc + Total VotesAsc - Votes Up - Votes Up + Votes Up + Votes Up - Total Unique Subscriptions - Total Unique Subscriptions + Total Unique Subscriptions + Total Unique Subscriptions - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + TagSelector - Save - Save + Save + Save - Add tag - Add tag + Add tag + Add tag - Cancel - Cancel + Cancel + Cancel - Add Tag - Add Tag + Add Tag + Add Tag - - + + TextField - Label - Label + Label + Label - *Required - *Required + *Required + *Required - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. - Open ScreenPlay - Open ScreenPlay + Open ScreenPlay + Open ScreenPlay - Mute all - Mute all + Mute all + Mute all - Unmute all - Unmute all + Unmute all + Unmute all - Pause all - Pause all + Pause all + Pause all - Play all - Play all + Play all + Play all - Quit - Quit + Quit + Quit - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - Abort - Abort + Abort + Abort - Upload Selected Projects - Upload Selected Projects + Upload Selected Projects + Upload Selected Projects - Finish - Finish + Finish + Finish - - + + UploadProjectBigItem - Type: - Type: + Type: + Type: - Open Folder - Open Folder + Open Folder + Open Folder - Invalid Project! - Invalid Project! + Invalid Project! + Invalid Project! - - + + UploadProjectItem - Fail - Fail + Fail + Fail - No Connection - No Connection + No Connection + No Connection - Invalid Password - Invalid Password + Invalid Password + Invalid Password - Logged In Elsewhere - Logged In Elsewhere + Logged In Elsewhere + Logged In Elsewhere - Invalid Protocol Version - Invalid Protocol Version + Invalid Protocol Version + Invalid Protocol Version - Invalid Param - Invalid Param + Invalid Param + Invalid Param - File Not Found - File Not Found + File Not Found + File Not Found - Busy - Busy + Busy + Busy - Invalid State - Invalid State + Invalid State + Invalid State - Invalid Name - Invalid Name + Invalid Name + Invalid Name - Invalid Email - Invalid Email + Invalid Email + Invalid Email - Duplicate Name - Duplicate Name + Duplicate Name + Duplicate Name - Access Denied - Access Denied + Access Denied + Access Denied - Timeout - Timeout + Timeout + Timeout - Banned - Banned + Banned + Banned - Account Not Found - Account Not Found + Account Not Found + Account Not Found - Invalid SteamID - Invalid SteamID + Invalid SteamID + Invalid SteamID - Service Unavailable - Service Unavailable + Service Unavailable + Service Unavailable - Not Logged On - Not Logged On + Not Logged On + Not Logged On - Pending - Pending + Pending + Pending - Encryption Failure - Encryption Failure + Encryption Failure + Encryption Failure - Insufficient Privilege - Insufficient Privilege + Insufficient Privilege + Insufficient Privilege - Limit Exceeded - Limit Exceeded + Limit Exceeded + Limit Exceeded - Revoked - Revoked + Revoked + Revoked - Expired - Expired + Expired + Expired - Already Redeemed - Already Redeemed + Already Redeemed + Already Redeemed - Duplicate Request - Duplicate Request + Duplicate Request + Duplicate Request - Already Owned - Already Owned + Already Owned + Already Owned - IP Not Found - IP Not Found + IP Not Found + IP Not Found - Persist Failed - Persist Failed + Persist Failed + Persist Failed - Locking Failed - Locking Failed + Locking Failed + Locking Failed - Logon Session Replaced - Logon Session Replaced + Logon Session Replaced + Logon Session Replaced - Connect Failed - Connect Failed + Connect Failed + Connect Failed - Handshake Failed - Handshake Failed + Handshake Failed + Handshake Failed - IO Failure - IO Failure + IO Failure + IO Failure - Remote Disconnect - Remote Disconnect + Remote Disconnect + Remote Disconnect - Shopping Cart Not Found - Shopping Cart Not Found + Shopping Cart Not Found + Shopping Cart Not Found - Blocked - Blocked + Blocked + Blocked - Ignored - Ignored + Ignored + Ignored - No Match - No Match + No Match + No Match - Account Disabled - Account Disabled + Account Disabled + Account Disabled - Service ReadOnly - Service ReadOnly + Service ReadOnly + Service ReadOnly - Account Not Featured - Account Not Featured + Account Not Featured + Account Not Featured - Administrator OK - Administrator OK + Administrator OK + Administrator OK - Content Version - Content Version + Content Version + Content Version - Try Another CM - Try Another CM + Try Another CM + Try Another CM - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Already Logged In Elsewhere + Already Logged In Elsewhere + Already Logged In Elsewhere - Suspended - Suspended + Suspended + Suspended - Cancelled - Cancelled + Cancelled + Cancelled - Data Corruption - Data Corruption + Data Corruption + Data Corruption - Disk Full - Disk Full + Disk Full + Disk Full - Remote Call Failed - Remote Call Failed + Remote Call Failed + Remote Call Failed - Password Unset - Password Unset + Password Unset + Password Unset - External Account Unlinked - External Account Unlinked + External Account Unlinked + External Account Unlinked - PSN Ticket Invalid - PSN Ticket Invalid + PSN Ticket Invalid + PSN Ticket Invalid - External Account Already Linked - External Account Already Linked + External Account Already Linked + External Account Already Linked - Remote File Conflict - Remote File Conflict + Remote File Conflict + Remote File Conflict - Illegal Password - Illegal Password + Illegal Password + Illegal Password - Same As Previous Value - Same As Previous Value + Same As Previous Value + Same As Previous Value - Account Logon Denied - Account Logon Denied + Account Logon Denied + Account Logon Denied - Cannot Use Old Password - Cannot Use Old Password + Cannot Use Old Password + Cannot Use Old Password - Invalid Login AuthCode - Invalid Login AuthCode + Invalid Login AuthCode + Invalid Login AuthCode - Account Logon Denied No Mail - Account Logon Denied No Mail + Account Logon Denied No Mail + Account Logon Denied No Mail - Hardware Not Capable Of IPT - Hardware Not Capable Of IPT + Hardware Not Capable Of IPT + Hardware Not Capable Of IPT - IPT Init Error - IPT Init Error + IPT Init Error + IPT Init Error - Parental Control Restricted - Parental Control Restricted + Parental Control Restricted + Parental Control Restricted - Facebook Query Error - Facebook Query Error + Facebook Query Error + Facebook Query Error - Expired Login Auth Code - Expired Login Auth Code + Expired Login Auth Code + Expired Login Auth Code - IP Login Restriction Failed - IP Login Restriction Failed + IP Login Restriction Failed + IP Login Restriction Failed - Account Locked Down - Account Locked Down + Account Locked Down + Account Locked Down - Account Logon Denied Verified Email Required - Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required - No MatchingURL - No MatchingURL + No MatchingURL + No MatchingURL - Bad Response - Bad Response + Bad Response + Bad Response - Require Password ReEntry - Require Password ReEntry + Require Password ReEntry + Require Password ReEntry - Value Out Of Range - Value Out Of Range + Value Out Of Range + Value Out Of Range - Unexpecte Error - Unexpecte Error + Unexpecte Error + Unexpecte Error - Disabled - Disabled + Disabled + Disabled - Invalid CEG Submission - Invalid CEG Submission + Invalid CEG Submission + Invalid CEG Submission - Restricted Device - Restricted Device + Restricted Device + Restricted Device - Region Locked - Region Locked + Region Locked + Region Locked - Rate Limit Exceeded - Rate Limit Exceeded + Rate Limit Exceeded + Rate Limit Exceeded - Account Login Denied Need Two Factor - Account Login Denied Need Two Factor + Account Login Denied Need Two Factor + Account Login Denied Need Two Factor - Item Deleted - Item Deleted + Item Deleted + Item Deleted - Account Login Denied Throttle - Account Login Denied Throttle + Account Login Denied Throttle + Account Login Denied Throttle - Two Factor Code Mismatch - Two Factor Code Mismatch + Two Factor Code Mismatch + Two Factor Code Mismatch - Two Factor Activation Code Mismatch - Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch - Account Associated To Multiple Partners - Account Associated To Multiple Partners + Account Associated To Multiple Partners + Account Associated To Multiple Partners - Not Modified - Not Modified + Not Modified + Not Modified - No Mobile Device - No Mobile Device + No Mobile Device + No Mobile Device - Time Not Synced - Time Not Synced + Time Not Synced + Time Not Synced - Sms Code Failed - Sms Code Failed + Sms Code Failed + Sms Code Failed - Account Limit Exceeded - Account Limit Exceeded + Account Limit Exceeded + Account Limit Exceeded - Account Activity Limit Exceeded - Account Activity Limit Exceeded + Account Activity Limit Exceeded + Account Activity Limit Exceeded - Phone Activity Limit Exceeded - Phone Activity Limit Exceeded + Phone Activity Limit Exceeded + Phone Activity Limit Exceeded - Refund To Wallet - Refund To Wallet + Refund To Wallet + Refund To Wallet - Email Send Failure - Email Send Failure + Email Send Failure + Email Send Failure - Not Settled - Not Settled + Not Settled + Not Settled - Need Captcha - Need Captcha + Need Captcha + Need Captcha - GSLT Denied - GSLT Denied + GSLT Denied + GSLT Denied - GS Owner Denied - GS Owner Denied + GS Owner Denied + GS Owner Denied - Invalid Item Type - Invalid Item Type + Invalid Item Type + Invalid Item Type - IP Banned - IP Banned + IP Banned + IP Banned - GSLT Expired - GSLT Expired + GSLT Expired + GSLT Expired - Insufficient Funds - Insufficient Funds + Insufficient Funds + Insufficient Funds - Too Many Pending - Too Many Pending + Too Many Pending + Too Many Pending - No Site Licenses Found - No Site Licenses Found + No Site Licenses Found + No Site Licenses Found - WG Network Send Exceeded - WG Network Send Exceeded + WG Network Send Exceeded + WG Network Send Exceeded - Account Not Friends - Account Not Friends + Account Not Friends + Account Not Friends - Limited User Account - Limited User Account + Limited User Account + Limited User Account - Cant Remove Item - Cant Remove Item + Cant Remove Item + Cant Remove Item - Account Deleted - Account Deleted + Account Deleted + Account Deleted - Existing User Cancelled License - Existing User Cancelled License + Existing User Cancelled License + Existing User Cancelled License - Community Cooldown - Community Cooldown + Community Cooldown + Community Cooldown - Status: - Status: + Status: + Status: - Upload Progress: - Upload Progress: + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - Create a Website Wallpaper - Create a Website Wallpaper + Create a Website Wallpaper + Create a Website Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - Tags - Tags + Tags + Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage - Save - Save + Save + Save - Saving... - Saving... + Saving... + Saving... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - Download complete! - Download complete! + Download complete! + Download complete! - - + + XMLNewsfeed - News & Patchnotes - News & Patchnotes + News & Patchnotes + News & Patchnotes - + diff --git a/ScreenPlay/translations/ScreenPlay_it_IT.ts b/ScreenPlay/translations/ScreenPlay_it_IT.ts index 5342a6bb..b2049b66 100644 --- a/ScreenPlay/translations/ScreenPlay_it_IT.ts +++ b/ScreenPlay/translations/ScreenPlay_it_IT.ts @@ -1,1945 +1,1953 @@ - + ColorPicker - Red - Rosso + Red + Rosso - Green - Verde + Green + Verde - Blue - Blu + Blue + Blu - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - R: + R: + R: - G: - G: + G: + G: - B: - B: + B: + B: - H: - H: + H: + H: - S: - S: + S: + S: - V: - V: + V: + V: - Alpha: - Trasparenza: + Alpha: + Trasparenza: - # - # + # + # - - + + Community - News - Notizie + News + Notizie - Wiki - Wiki + Wiki + Wiki - Forum - Forum + Forum + Forum - Contribute - Contribuisci + Contribute + Contribuisci - Steam Workshop - Steam Workshop + Steam Workshop + Steam Workshop - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - Apri nel browser + Open in browser + Apri nel browser - - + + CreateWallpaperInit - Import any video type - Importa qualsiasi tipo di video + Import any video type + Importa qualsiasi tipo di video - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - A seconda della configurazione del tuo PC è meglio comvertire lo sfondo in un codec specifico. Se entrambi hanno scarse performance puoi provare uno sfondo QML! I formati video supportati sono: + A seconda della configurazione del tuo PC è meglio comvertire lo sfondo in un codec specifico. Se entrambi hanno scarse performance puoi provare uno sfondo QML! I formati video supportati sono: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Imposta il tuo codec video preferito: + Set your preffered video codec: + Imposta il tuo codec video preferito: - Quality slider. Lower value means better quality. - Cursore per la qualità. A valori inferiori corrisponde una qualità migliore. + Quality slider. Lower value means better quality. + Cursore per la qualità. A valori inferiori corrisponde una qualità migliore. - Open Documentation - Apri documentazione + Open Documentation + Apri documentazione - Select file - Seleziona file + Select file + Seleziona file - - + + CreateWallpaperResult - An error occurred! - Si è verificato un errore! + An error occurred! + Si è verificato un errore! - Copy text to clipboard - Copia testo negli appunti + Copy text to clipboard + Copia testo negli appunti - Back to create and send an error report! - Torna a creare e inviare un report di errore! + Back to create and send an error report! + Torna a creare e inviare un report di errore! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - Generazione anteprima immagine... + Generating preview image... + Generazione anteprima immagine... - Generating preview thumbnail image... - Generazione miniatura di anteprima... + Generating preview thumbnail image... + Generazione miniatura di anteprima... - Generating 5 second preview video... - Generazione anteprima video di 5 secondi... + Generating 5 second preview video... + Generazione anteprima video di 5 secondi... - Generating preview gif... - Generazione gif di anteprima... + Generating preview gif... + Generazione gif di anteprima... - Converting Audio... - Conversione Audio... + Converting Audio... + Conversione Audio... - Converting Video... This can take some time! - Conversione Video... Potrebbe richiedere un po' di tempo! + Converting Video... This can take some time! + Conversione Video... Potrebbe richiedere un po' di tempo! - Converting Video ERROR! - Conversione Video ERRORE! + Converting Video ERROR! + Conversione Video ERRORE! - Analyse Video ERROR! - Analisi Video ERRORE! + Analyse Video ERROR! + Analisi Video ERRORE! - Convert a video to a wallpaper - Converti un video in uno sfondo + Convert a video to a wallpaper + Converti un video in uno sfondo - Generating preview video... - Generazione video di anteprima... + Generating preview video... + Generazione video di anteprima... - Name (required!) - Nome (obbligatorio) + Name (required!) + Nome (obbligatorio) - Description - Descrizione + Description + Descrizione - Youtube URL - URL Youtube + Youtube URL + URL Youtube - Abort - Interrompi + Abort + Interrompi - Save - Salva + Save + Salva - Save Wallpaper... - Salva sfondo... + Save Wallpaper... + Salva sfondo... - - + + DefaultVideoControls - Volume - Volume + Volume + Volume - Playback rate - Velocità riproduzione + Playback rate + Velocità riproduzione - Current Video Time - Minutaggio + Current Video Time + Minutaggio - Fill Mode - Modalità Riempimento + Fill Mode + Modalità Riempimento - Stretch - Estensione + Stretch + Estensione - Fill - Riempimento schermo + Fill + Riempimento schermo - Contain - Proporzioni mantenute (barre nere) + Contain + Proporzioni mantenute (barre nere) - Cover - Taglia + Cover + Taglia - Scale_Down - Riduci + Scale_Down + Riduci - - + + FileSelector - Clear - Azzera + Clear + Azzera - Select File - Seleziona file + Select File + Seleziona file - Please choose a file - Scegli un file + Please choose a file + Scegli un file - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Scarica Wallpaper e Widget dai nostri forum manualmente. Se vuoi scaricare i contenuti da Steam Workshop devi installare ScreenPlay tramite Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Scarica Wallpaper e Widget dai nostri forum manualmente. Se vuoi scaricare i contenuti da Steam Workshop devi installare ScreenPlay tramite Steam. - Install Steam Version - Installa Versione di Steam + Install Steam Version + Installa Versione di Steam - Open In Browser - Apri nel browser + Open In Browser + Apri nel browser - - + + GifWallpaper - Import a Gif Wallpaper - Importa uno sfondo Gif + Import a Gif Wallpaper + Importa uno sfondo Gif - Drop a *.gif file here or use 'Select file' below. - Trascina un file *.gif qui o usa 'Seleziona file' qui sotto. + Drop a *.gif file here or use 'Select file' below. + Trascina un file *.gif qui o usa 'Seleziona file' qui sotto. - Select your gif - Seleziona la tua gif + Select your gif + Seleziona la tua gif - General - Generale + General + Generale - Wallpaper name - Nome sfondo + Wallpaper name + Nome sfondo - Created By - Creato da + Created By + Creato da - Tags - Tag + Tags + Tag - - + + HTMLWallpaper - Create a HTML Wallpaper - Crea uno sfondo HTML + Create a HTML Wallpaper + Crea uno sfondo HTML - General - Generale + General + Generale - Wallpaper name - Nome sfondo + Wallpaper name + Nome sfondo - Created By - Creato da + Created By + Creato da - Description - Descrizione + Description + Descrizione - License & Tags - Licenza & Tag + License & Tags + Licenza & Tag - Preview Image - Immagine d’anteprima + Preview Image + Immagine d’anteprima - - + + HTMLWidget - Create a HTML widget - Crea un Widget HTML + Create a HTML widget + Crea un Widget HTML - General - Generale + General + Generale - Widget name - Nome Widget + Widget name + Nome Widget - Created by - Creato da + Created by + Creato da - Tags - Tag + Tags + Tag - - + + HeadlineSection - Headline Section - Sezione del Titolo + Headline Section + Sezione del Titolo - - + + ImageSelector - Set your own preview image - Imposta la tua immagine di anteprima + Set your own preview image + Imposta la tua immagine di anteprima - Clear - Azzera + Clear + Azzera - Select Preview Image - Seleziona Immagine d'Anteprima + Select Preview Image + Seleziona Immagine d'Anteprima - - + + ImportWebmConvert - - + + - AnalyseVideo... - Analizza Video... + AnalyseVideo... + Analizza Video... - Generating preview image... - Generazione immagine d'anteprima... + Generating preview image... + Generazione immagine d'anteprima... - Generating preview thumbnail image... - Generazione miniatura di anteprima... + Generating preview thumbnail image... + Generazione miniatura di anteprima... - Generating 5 second preview video... - Generazione anteprima video di 5 secondi... + Generating 5 second preview video... + Generazione anteprima video di 5 secondi... - Generating preview gif... - Generazione gif di anteprima... + Generating preview gif... + Generazione gif di anteprima... - Converting Audio... - Conversione Audio... + Converting Audio... + Conversione Audio... - Converting Video... This can take some time! - Conversione Video... Potrebbe richiedere un po' di tempo! + Converting Video... This can take some time! + Conversione Video... Potrebbe richiedere un po' di tempo! - Converting Video ERROR! - Conversione Video ERRORE! + Converting Video ERROR! + Conversione Video ERRORE! - Analyse Video ERROR! - Analisi Video ERRORE! + Analyse Video ERROR! + Analisi Video ERRORE! - Import a video to a wallpaper - Importa un video in uno sfondo + Import a video to a wallpaper + Importa un video in uno sfondo - Generating preview video... - Generazione video di anteprima... + Generating preview video... + Generazione video di anteprima... - Name (required!) - Nome (obbligatorio) + Name (required!) + Nome (obbligatorio) - Description - Descrizione + Description + Descrizione - Youtube URL - URL Youtube + Youtube URL + URL Youtube - Abort - Interrompi + Abort + Interrompi - Save - Salva + Save + Salva - Save Wallpaper... - Salva sfondo... + Save Wallpaper... + Salva sfondo... - - + + ImportWebmInit - Import a .webm video - Importa un video .webm + Import a .webm video + Importa un video .webm - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Importando un file webm è possibile saltare la conversione. Se ottiene risultati insoddisfacenti dall'importer di ScreenPlay 'Importa e converti video (tutti i tipi)' puoi anche farlo con il convertitore gratuito ed open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + Importando un file webm è possibile saltare la conversione. Se ottiene risultati insoddisfacenti dall'importer di ScreenPlay 'Importa e converti video (tutti i tipi)' puoi anche farlo con il convertitore gratuito ed open source HandBrake! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Tipo di file non valido. Deve essere un valido VP8 o VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Tipo di file non valido. Deve essere un valido VP8 o VP9 (*.webm)! - Drop a *.webm file here or use 'Select file' below. - Trascina un file *.webm qui o usa 'Seleziona file' qui sotto. + Drop a *.webm file here or use 'Select file' below. + Trascina un file *.webm qui o usa 'Seleziona file' qui sotto. - Open Documentation - Apri documentazione + Open Documentation + Apri documentazione - Select file - Seleziona file + Select file + Seleziona file - - + + Importh264Convert - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + Importh264Init - Import a .mp4 video - Import a .mp4 video + Import a .mp4 video + Import a .mp4 video - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - Invalid file type. Must be valid h264 (*.mp4)! - Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Installed - - + + - Refreshing! - Aggiornamento! + Refreshing! + Aggiornamento! - Pull to refresh! - Trascina per aggiornare! + Pull to refresh! + Trascina per aggiornare! - Get more Wallpaper & Widgets via the Steam workshop! - Ottieni altri Wallpaper & Widget dal workshop di Steam! + Get more Wallpaper & Widgets via the Steam workshop! + Ottieni altri Wallpaper & Widget dal workshop di Steam! - Open containing folder - Apri percorso file + Open containing folder + Apri percorso file - Remove Item - Rimuovi elemento + Remove Item + Rimuovi elemento - Remove via Workshop - Rimuovi tramite Workshop + Remove via Workshop + Rimuovi tramite Workshop - Open Workshop Page - Apri pagina del Workshop + Open Workshop Page + Apri pagina del Workshop - Are you sure you want to delete this item? - Sei sicuro di voler rimuovere questo elemento? + Are you sure you want to delete this item? + Sei sicuro di voler rimuovere questo elemento? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Ottieni Widget e Wallpaper gratuiti tramite il Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop + Ottieni Widget e Wallpaper gratuiti tramite il Steam Workshop - Browse the Steam Workshop - Sfoglia lo Steam Workshop + Browse the Steam Workshop + Sfoglia lo Steam Workshop - - + + LicenseSelector - License - Licenza + License + Licenza - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Condividere — copiare e ridistribuire il materiale in qualsiasi supporto o formato. Adattare — remixare, trasformare e sviluppare a partire dal materiale per qualsiasi scopo, anche commerciale. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Condividere — copiare e ridistribuire il materiale in qualsiasi supporto o formato. Adattare — remixare, trasformare e sviluppare a partire dal materiale per qualsiasi scopo, anche commerciale. - You grant other to remix your work and change the license to their liking. - Tu concedi ad altri di modificare il tuo lavoro e modificare la licenza a loro piacimento. + You grant other to remix your work and change the license to their liking. + Tu concedi ad altri di modificare il tuo lavoro e modificare la licenza a loro piacimento. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Condividere — copiare e ridistribuire il materiale in qualsiasi supporto o formato. Adattare — modificare, trasformare e sviluppare a partire dal materiale per qualsiasi scopo, anche commerciale! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Condividere — copiare e ridistribuire il materiale in qualsiasi supporto o formato. Adattare — modificare, trasformare e sviluppare a partire dal materiale per qualsiasi scopo, anche commerciale! - You allow everyone to do anything with your work. - Permetti a tutti di fare qualsiasi cosa con il tuo lavoro. + You allow everyone to do anything with your work. + Permetti a tutti di fare qualsiasi cosa con il tuo lavoro. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - Tu concedi ad altri di modificare il tuo lavoro, ma deve rimanere sotto la GPLv3. Consigliamo questa licenza per tutti gli sfondi con codice! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + Tu concedi ad altri di modificare il tuo lavoro, ma deve rimanere sotto la GPLv3. Consigliamo questa licenza per tutti gli sfondi con codice! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - Non condividi alcun diritto e nessuno è autorizzato ad usarlo o modificarlo (Non raccomandato). Può anche essere usato per accreditare lavori di altri. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + Non condividi alcun diritto e nessuno è autorizzato ad usarlo o modificarlo (Non raccomandato). Può anche essere usato per accreditare lavori di altri. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - La configurazione del monitor è cambiata! + La configurazione del monitor è cambiata! Per favore configura di nuovo lo sfondo. - - + + Monitors - Wallpaper Configuration - Configurazione Sfondo + Wallpaper Configuration + Configurazione Sfondo - Remove selected - Rimuovi selezionati + Remove selected + Rimuovi selezionati - Wallpapers - Sfondi + Wallpapers + Sfondi - Widgets - Widgets + Widgets + Widgets - Remove all - Remove all + Remove all + Remove all - - + + MonitorsProjectSettingItem - Set color - Imposta colore + Set color + Imposta colore - Please choose a color - Scegli un colore + Please choose a color + Scegli un colore - - + + Navigation - All - Tutto + All + Tutto - Scenes - Scene + Scenes + Scene - Videos - Video + Videos + Video - Widgets - Widgets + Widgets + Widgets - Install Date Ascending - Data di Installazione Crescente + Install Date Ascending + Data di Installazione Crescente - Install Date Descending - Data di Installazione Decrescente + Install Date Descending + Data di Installazione Decrescente - Subscribed items: - Elementi sottoscritti: + Subscribed items: + Elementi sottoscritti: - Upload to the Steam Workshop - Carica nel Workshop di Steam + Upload to the Steam Workshop + Carica nel Workshop di Steam - Create - Crea + Create + Crea - Workshop - Workshop + Workshop + Workshop - Installed - Installati + Installed + Installati - Community - Comunità + Community + Comunità - Settings - Impostazioni + Settings + Impostazioni - Mute/Unmute all Wallpaper - Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper - Pause/Play all Wallpaper - Pause/Play all Wallpaper + Pause/Play all Wallpaper + Pause/Play all Wallpaper - Configure Wallpaper - Configure Wallpaper + Configure Wallpaper + Configure Wallpaper - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - È necessario eseguire Steam per questo. steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Indietro - Back - Indietro + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - Devi prima accettare l'accordo di iscrizione di Steam + You Need to Agree To The Steam Subscriber Agreement First + Devi prima accettare l'accordo di iscrizione di Steam - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - RICHIESTA CONNESSIONE INTERNET E ACCOUNT STEAM GRATUITO PER L'ATTIVAZIONE. Avviso: Prodotto offerto previa accettazione dell'Accordo Iscrizione di Steam. È necessario attivare questo prodotto via Internet registrandosi per un account Steam e accettando il SSA. Per favore consulta https://store.steampowered.com/subscriber_agreement/ per visualizzare l'SSA prima dell'acquisto. Se non siete d'accordo con le disposizioni della SSA, dovresti restituire questo gioco non aperto al tuo rivenditore in conformità con la sua politica di ritorno. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + RICHIESTA CONNESSIONE INTERNET E ACCOUNT STEAM GRATUITO PER L'ATTIVAZIONE. Avviso: Prodotto offerto previa accettazione dell'Accordo Iscrizione di Steam. È necessario attivare questo prodotto via Internet registrandosi per un account Steam e accettando il SSA. Per favore consulta https://store.steampowered.com/subscriber_agreement/ per visualizzare l'SSA prima dell'acquisto. Se non siete d'accordo con le disposizioni della SSA, dovresti restituire questo gioco non aperto al tuo rivenditore in conformità con la sua politica di ritorno. - View The Steam Subscriber Agreement - Visualizza L'Accordo Sull'Iscrizione di Steam + View The Steam Subscriber Agreement + Visualizza L'Accordo Sull'Iscrizione di Steam - Accept Steam Workshop Agreement - Accetta Accordo Workshop Steam + Accept Steam Workshop Agreement + Accetta Accordo Workshop Steam - - + + QMLWallpaper - Create a QML Wallpaper - Crea uno sfondo QML + Create a QML Wallpaper + Crea uno sfondo QML - General - Generale + General + Generale - Wallpaper name - Nome sfondo + Wallpaper name + Nome sfondo - Created By - Creato da + Created By + Creato da - Description - Descrizione + Description + Descrizione - License & Tags - Licenza & Tag + License & Tags + Licenza & Tag - Preview Image - Immagine d’anteprima + Preview Image + Immagine d’anteprima - - + + QMLWidget - Create a QML widget - Crea un Widget QML + Create a QML widget + Crea un Widget QML - General - Generale + General + Generale - Widget name - Nome Widget + Widget name + Nome Widget - Created by - Creato da + Created by + Creato da - Tags - Tag + Tags + Tag - - + + SaveNotification - Profile saved successfully! - Prodilo salvato correttamente! + Profile saved successfully! + Prodilo salvato correttamente! - - + + ScreenPlayItem - NEW - NUOVO + NEW + NUOVO - - + + Search - Search for Wallpaper & Widgets - Cerca sfondi & widget + Search for Wallpaper & Widgets + Cerca sfondi & widget - - + + Settings - General - Generale + General + Generale - Autostart - Avvio automatico + Autostart + Avvio automatico - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay si avvierà con Windows e configurerà il desktop ogni volta per te. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay si avvierà con Windows e configurerà il desktop ogni volta per te. - High priority Autostart - Avvio automatico ad alta priorità + High priority Autostart + Avvio automatico ad alta priorità - This options grants ScreenPlay a higher autostart priority than other apps. - Questa opzione garantisce a ScreenPlay una priorità di avvio automatico più alta di altre applicazioni. + This options grants ScreenPlay a higher autostart priority than other apps. + Questa opzione garantisce a ScreenPlay una priorità di avvio automatico più alta di altre applicazioni. - Send anonymous crash reports and statistics - Invia report e statistiche anonime sui crash + Send anonymous crash reports and statistics + Invia report e statistiche anonime sui crash - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Aiutaci a rendere ScreenPlay più veloce e stabile. Tutti i dati raccolti sono puramente anonimi e utilizzati solo per scopi di sviluppo! Usiamo <a href="https://sentry.io">sentry. o</a> per raccogliere e analizzare questi dati. Un <b>grande grazie a loro</b> per averci fornito supporto premium gratuito per i progetti open source! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Aiutaci a rendere ScreenPlay più veloce e stabile. Tutti i dati raccolti sono puramente anonimi e utilizzati solo per scopi di sviluppo! Usiamo <a href="https://sentry.io">sentry. o</a> per raccogliere e analizzare questi dati. Un <b>grande grazie a loro</b> per averci fornito supporto premium gratuito per i progetti open source! - Set save location - Imposta cartella di salvataggio + Set save location + Imposta cartella di salvataggio - Set location - Imposta posizione + Set location + Imposta posizione - Your storage path is empty! - Il tuo percorso di archiviazione è vuoto! + Your storage path is empty! + Il tuo percorso di archiviazione è vuoto! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Importante: la modifica di questa cartella non ha effetto sul percorso di download del workshop. ScreenPlay supporta solo una cartella contenuti! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Importante: la modifica di questa cartella non ha effetto sul percorso di download del workshop. ScreenPlay supporta solo una cartella contenuti! - Language - Lingua + Language + Lingua - Set the ScreenPlay UI Language - Imposta la lingua dell'interfaccia utente di ScreenPlay + Set the ScreenPlay UI Language + Imposta la lingua dell'interfaccia utente di ScreenPlay - Theme - Tema + Theme + Tema - Switch dark/light theme - Cambia tema scuro/chiaro + Switch dark/light theme + Cambia tema scuro/chiaro - System Default - Predefinito di Sistema + System Default + Predefinito di Sistema - Dark - Scuro + Dark + Scuro - Light - Chiaro + Light + Chiaro - Performance - Prestazioni + Performance + Prestazioni - Pause wallpaper video rendering while another app is in the foreground - Metti in pausa il rendering video dello sfondo mentre un'altra app è in primo piano + Pause wallpaper video rendering while another app is in the foreground + Metti in pausa il rendering video dello sfondo mentre un'altra app è in primo piano - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Disattiviamo il rendering video (non l'audio!) per migliori prestazioni. Se hai problemi puoi disabilitare questa opzione qui. È necessario riavviare lo sfondo! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + Disattiviamo il rendering video (non l'audio!) per migliori prestazioni. Se hai problemi puoi disabilitare questa opzione qui. È necessario riavviare lo sfondo! - Default Fill Mode - Modalità riempimento predefinita + Default Fill Mode + Modalità riempimento predefinita - Set this property to define how the video is scaled to fit the target area. - Imposta questa proprietà per definire come il video viene adattato all'area di destinazione. + Set this property to define how the video is scaled to fit the target area. + Imposta questa proprietà per definire come il video viene adattato all'area di destinazione. - Stretch - Estensione + Stretch + Estensione - Fill - Riempimento + Fill + Riempimento - Contain - Contenimento + Contain + Contenimento - Cover - Coprente + Cover + Coprente - Scale-Down - Riduzione + Scale-Down + Riduzione - About - Informazioni aggiuntive + About + Informazioni aggiuntive - Thank you for using ScreenPlay - Grazie per aver usato ScreenPlay + Thank you for using ScreenPlay + Grazie per aver usato ScreenPlay - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Ciao, sono Elias Steurer conosciuto anche come Kelteseth e sono lo sviluppatore di ScreenPlay. Grazie per aver utilizzato il mio software. Puoi seguirmi per ricevere aggiornamenti su ScreenPlay qui: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Ciao, sono Elias Steurer conosciuto anche come Kelteseth e sono lo sviluppatore di ScreenPlay. Grazie per aver utilizzato il mio software. Puoi seguirmi per ricevere aggiornamenti su ScreenPlay qui: - Version - Versione + Version + Versione - Open Changelog - Apri Changelog + Open Changelog + Apri Changelog - Third Party Software - Software di terze parti + Third Party Software + Software di terze parti - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay non sarebbe possibile senza il lavoro di altri. Un grande ringraziamento a: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay non sarebbe possibile senza il lavoro di altri. Un grande ringraziamento a: - Licenses - Licenze + Licenses + Licenze - Logs - Logs + Logs + Logs - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Se il tuo ScreenPlay non funziona correttamente questo è un buon modo per cercare risposte. Questo mostra tutti i log e gli avvisi durante l'esecuzione. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + Se il tuo ScreenPlay non funziona correttamente questo è un buon modo per cercare risposte. Questo mostra tutti i log e gli avvisi durante l'esecuzione. - Show Logs - Visualizza i Log + Show Logs + Visualizza i Log - Data Protection - Protezione dei dati + Data Protection + Protezione dei dati - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Utilizziamo i tuoi dati con molta attenzione per migliorare ScreenPlay. Non vendiamo o condividiamo queste informazioni (anonime) con altri! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + Utilizziamo i tuoi dati con molta attenzione per migliorare ScreenPlay. Non vendiamo o condividiamo queste informazioni (anonime) con altri! - Privacy - Privacy + Privacy + Privacy - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay Build Version - - + + SettingsExpander - Copy text to clipboard - Copia testo negli appunti + Copy text to clipboard + Copia testo negli appunti - - + + Sidebar - Tools Overview - Panoramica Strumenti + Tools Overview + Panoramica Strumenti - Video Import h264 (.mp4) - Video Import h264 (.mp4) + Video Import h264 (.mp4) + Video Import h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) - Video import (all types) - Video import (all types) + Video import (all types) + Video import (all types) - GIF Wallpaper - Sfondo GIF + GIF Wallpaper + Sfondo GIF - QML Wallpaper - Sfondo QML + QML Wallpaper + Sfondo QML - HTML5 Wallpaper - Sfondo HTML5 + HTML5 Wallpaper + Sfondo HTML5 - Website Wallpaper - Sfondo Web + Website Wallpaper + Sfondo Web - QML Widget - Widget QML + QML Widget + Widget QML - HTML Widget - Widget HTML + HTML Widget + Widget HTML - Set Wallpaper - Imposta sfondo + Set Wallpaper + Imposta sfondo - Set Widget - Imposta Widget + Set Widget + Imposta Widget - Headline - Intestazione + Headline + Intestazione - Select a Monitor to display the content - Seleziona un monitor per visualizzare il contenuto + Select a Monitor to display the content + Seleziona un monitor per visualizzare il contenuto - Set Volume - Imposta volume + Set Volume + Imposta volume - Fill Mode - Modalità Riempimento + Fill Mode + Modalità Riempimento - Stretch - Estensione + Stretch + Estensione - Fill - Riempimento + Fill + Riempimento - Contain - Proporzioni mantenute (barre nere) + Contain + Proporzioni mantenute (barre nere) - Cover - Taglia + Cover + Taglia - Scale-Down - Rimpicciolisci + Scale-Down + Rimpicciolisci - Size: - Dimensione: + Size: + Dimensione: - No description... - Nessuna descrizione... + No description... + Nessuna descrizione... - Click here if you like the content - Clicca qui se ti piace il contenuto + Click here if you like the content + Clicca qui se ti piace il contenuto - Click here if you do not like the content - Clicca qui se non ti piace il contenuto + Click here if you do not like the content + Clicca qui se non ti piace il contenuto - Subscribtions: - Iscrizioni: + Subscribtions: + Iscrizioni: - Open In Steam - Apri In Steam + Open In Steam + Apri In Steam - Subscribed! - Iscritto! + Subscribed! + Iscritto! - Subscribe - Iscriviti + Subscribe + Iscriviti - - + + StartInfo - Free tools to help you to create wallpaper - Free tools to help you to create wallpaper + Free tools to help you to create wallpaper + Free tools to help you to create wallpaper - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - - + + SteamNotAvailable - Could not load steam integration! - Impossibile caricare l'integrazione di Steam! + Could not load steam integration! + Impossibile caricare l'integrazione di Steam! - - + + SteamProfile - Back - Indietro + Back + Indietro - Forward - Avanti + Forward + Avanti - - + + SteamWorkshopStartPage - Loading - Caricamento + Loading + Caricamento - Download now! - Scarica ora! + Download now! + Scarica ora! - Downloading... - Download in corso... + Downloading... + Download in corso... - Details - Informazioni + Details + Informazioni - Open In Steam - Apri In Steam + Open In Steam + Apri In Steam - Profile - Profilo + Profile + Profilo - Upload - Carica + Upload + Carica - Search for Wallpaper and Widgets... - Cerca sfondi & widget... + Search for Wallpaper and Widgets... + Cerca sfondi & widget... - Open Workshop in Steam - Apri Workshop in Steam + Open Workshop in Steam + Apri Workshop in Steam - Ranked By Vote - Ordinati per voto + Ranked By Vote + Ordinati per voto - Publication Date - Data di pubblicazione + Publication Date + Data di pubblicazione - Ranked By Trend - Classificato Per Tendenza + Ranked By Trend + Classificato Per Tendenza - Favorited By Friends - Preferiti da Amici + Favorited By Friends + Preferiti da Amici - Created By Friends - Creati da Amici + Created By Friends + Creati da Amici - Created By Followed Users - Creati da Utenti Seguiti + Created By Followed Users + Creati da Utenti Seguiti - Not Yet Rated - Non Ancora Votati + Not Yet Rated + Non Ancora Votati - Total VotesAsc - Totale Voti Asc + Total VotesAsc + Totale Voti Asc - Votes Up - Votes Up + Votes Up + Votes Up - Total Unique Subscriptions - Total Unique Subscriptions + Total Unique Subscriptions + Total Unique Subscriptions - Back - Indietro + Back + Indietro - Forward - Avanti + Forward + Avanti - - + + TagSelector - Save - Salva + Save + Salva - Add tag - Aggiungi tag + Add tag + Aggiungi tag - Cancel - Annulla + Cancel + Annulla - Add Tag - Aggiungi tag + Add Tag + Aggiungi tag - - + + TextField - Label - Etichetta + Label + Etichetta - *Required - Obbligatorio + *Required + Obbligatorio - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - Doppio clic per modificare le impostazioni. + ScreenPlay - Double click to change you settings. + ScreenPlay - Doppio clic per modificare le impostazioni. - Open ScreenPlay - Apri ScreenPlay + Open ScreenPlay + Apri ScreenPlay - Mute all - Silenzia tutti + Mute all + Silenzia tutti - Unmute all - Desilenzia tutti + Unmute all + Desilenzia tutti - Pause all - Metti tutti in pausa + Pause all + Metti tutti in pausa - Play all - Riproduci tutti + Play all + Riproduci tutti - Quit - Esci + Quit + Esci - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Carica Sfondo/Widget su Steam + Upload Wallpaper/Widgets to Steam + Carica Sfondo/Widget su Steam - Abort - Interrompi + Abort + Interrompi - Upload Selected Projects - Carica Progetti Selezionati + Upload Selected Projects + Carica Progetti Selezionati - Finish - Termina + Finish + Termina - - + + UploadProjectBigItem - Type: - Tipo: + Type: + Tipo: - Open Folder - Apri cartella + Open Folder + Apri cartella - Invalid Project! - Progetto non valido! + Invalid Project! + Progetto non valido! - - + + UploadProjectItem - Fail - Errore + Fail + Errore - No Connection - Nessuna connessione + No Connection + Nessuna connessione - Invalid Password - Password non valida + Invalid Password + Password non valida - Logged In Elsewhere - Già collegato altrove + Logged In Elsewhere + Già collegato altrove - Invalid Protocol Version - Versione Protocollo Non Valida + Invalid Protocol Version + Versione Protocollo Non Valida - Invalid Param - Parametro non valido + Invalid Param + Parametro non valido - File Not Found - File non trovato + File Not Found + File non trovato - Busy - Occupato + Busy + Occupato - Invalid State - Stato non valido + Invalid State + Stato non valido - Invalid Name - Nome non valido + Invalid Name + Nome non valido - Invalid Email - Indirizzo e-mail non valido + Invalid Email + Indirizzo e-mail non valido - Duplicate Name - Nome Duplicato + Duplicate Name + Nome Duplicato - Access Denied - Accesso negato + Access Denied + Accesso negato - Timeout - Tempo Scaduto + Timeout + Tempo Scaduto - Banned - Bannato + Banned + Bannato - Account Not Found - Account non trovato + Account Not Found + Account non trovato - Invalid SteamID - SteamID Non Valido + Invalid SteamID + SteamID Non Valido - Service Unavailable - Servizio non Disponibile + Service Unavailable + Servizio non Disponibile - Not Logged On - Accesso non effettuato + Not Logged On + Accesso non effettuato - Pending - In attesa + Pending + In attesa - Encryption Failure - Errore Di Cifratura + Encryption Failure + Errore Di Cifratura - Insufficient Privilege - Permessi insufficienti + Insufficient Privilege + Permessi insufficienti - Limit Exceeded - Limite superato + Limit Exceeded + Limite superato - Revoked - Revocato + Revoked + Revocato - Expired - Scaduto + Expired + Scaduto - Already Redeemed - Già Riscattato + Already Redeemed + Già Riscattato - Duplicate Request - Richiesta Duplicata + Duplicate Request + Richiesta Duplicata - Already Owned - Già Posseduto + Already Owned + Già Posseduto - IP Not Found - IP Non Trovato + IP Not Found + IP Non Trovato - Persist Failed - Persist Failed + Persist Failed + Persist Failed - Locking Failed - Blocco non riuscito + Locking Failed + Blocco non riuscito - Logon Session Replaced - Sessione Di Accesso Sostituita + Logon Session Replaced + Sessione Di Accesso Sostituita - Connect Failed - Connessione fallita + Connect Failed + Connessione fallita - Handshake Failed - Handshake Fallito + Handshake Failed + Handshake Fallito - IO Failure - Errore IO + IO Failure + Errore IO - Remote Disconnect - Disconnessione Remota + Remote Disconnect + Disconnessione Remota - Shopping Cart Not Found - Carrello Non Trovato + Shopping Cart Not Found + Carrello Non Trovato - Blocked - Bloccato + Blocked + Bloccato - Ignored - Ignorato + Ignored + Ignorato - No Match - Nessun Risultato + No Match + Nessun Risultato - Account Disabled - Account disabilitato + Account Disabled + Account disabilitato - Service ReadOnly - Servizio Sola Lettura + Service ReadOnly + Servizio Sola Lettura - Account Not Featured - Account Non In Evidenza + Account Not Featured + Account Non In Evidenza - Administrator OK - Amministratore OK + Administrator OK + Amministratore OK - Content Version - Versione Contenuto + Content Version + Versione Contenuto - Try Another CM - Prova un altro CM + Try Another CM + Prova un altro CM - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Già collegato altrove + Already Logged In Elsewhere + Già collegato altrove - Suspended - Sospeso + Suspended + Sospeso - Cancelled - Annullato + Cancelled + Annullato - Data Corruption - Dati corrotti + Data Corruption + Dati corrotti - Disk Full - Disco pieno + Disk Full + Disco pieno - Remote Call Failed - Chiamata Remota Non Riuscita + Remote Call Failed + Chiamata Remota Non Riuscita - Password Unset - Password non impostata + Password Unset + Password non impostata - External Account Unlinked - Account Esterno Non Collegato + External Account Unlinked + Account Esterno Non Collegato - PSN Ticket Invalid - PSN Ticket Invalid + PSN Ticket Invalid + PSN Ticket Invalid - External Account Already Linked - Account Esterno Già Collegato + External Account Already Linked + Account Esterno Già Collegato - Remote File Conflict - Conflitto File Remoto + Remote File Conflict + Conflitto File Remoto - Illegal Password - Password non valida + Illegal Password + Password non valida - Same As Previous Value - Valore uguale al precedente + Same As Previous Value + Valore uguale al precedente - Account Logon Denied - Accesso Account Negato + Account Logon Denied + Accesso Account Negato - Cannot Use Old Password - Impossibile Usare Vecchia Password + Cannot Use Old Password + Impossibile Usare Vecchia Password - Invalid Login AuthCode - Invalid Login AuthCode + Invalid Login AuthCode + Invalid Login AuthCode - Account Logon Denied No Mail - Accesso Account Negato Nessuna Mail + Account Logon Denied No Mail + Accesso Account Negato Nessuna Mail - Hardware Not Capable Of IPT - Hardware non compatibile con IPT + Hardware Not Capable Of IPT + Hardware non compatibile con IPT - IPT Init Error - Errore Init IPT + IPT Init Error + Errore Init IPT - Parental Control Restricted - Limitato da Parental Control + Parental Control Restricted + Limitato da Parental Control - Facebook Query Error - Facebook Query Error + Facebook Query Error + Facebook Query Error - Expired Login Auth Code - Expired Login Auth Code + Expired Login Auth Code + Expired Login Auth Code - IP Login Restriction Failed - IP Login Restriction Failed + IP Login Restriction Failed + IP Login Restriction Failed - Account Locked Down - Account bloccato + Account Locked Down + Account bloccato - Account Logon Denied Verified Email Required - Accesso Account Negato Verifica Email Richiesta + Account Logon Denied Verified Email Required + Accesso Account Negato Verifica Email Richiesta - No MatchingURL - Nessun URL Corrispondente + No MatchingURL + Nessun URL Corrispondente - Bad Response - Bad Response + Bad Response + Bad Response - Require Password ReEntry - Richiesta Reinserimento Password + Require Password ReEntry + Richiesta Reinserimento Password - Value Out Of Range - Valore fuori dall'intervallo + Value Out Of Range + Valore fuori dall'intervallo - Unexpecte Error - Errore inatteso + Unexpecte Error + Errore inatteso - Disabled - Disabilitato + Disabled + Disabilitato - Invalid CEG Submission - Invalid CEG Submission + Invalid CEG Submission + Invalid CEG Submission - Restricted Device - Dispositivo Limitato + Restricted Device + Dispositivo Limitato - Region Locked - Blocco regionale + Region Locked + Blocco regionale - Rate Limit Exceeded - Limite di richieste superato + Rate Limit Exceeded + Limite di richieste superato - Account Login Denied Need Two Factor - Login Account Negato Necessaria Autenticazione Due Fattori + Account Login Denied Need Two Factor + Login Account Negato Necessaria Autenticazione Due Fattori - Item Deleted - Elemento eliminato + Item Deleted + Elemento eliminato - Account Login Denied Throttle - Account Login Denied Throttle + Account Login Denied Throttle + Account Login Denied Throttle - Two Factor Code Mismatch - Codice A Due Fattori Non Corrispondente + Two Factor Code Mismatch + Codice A Due Fattori Non Corrispondente - Two Factor Activation Code Mismatch - Codice Di Attivazione A Due Fattori Non Corrispondente + Two Factor Activation Code Mismatch + Codice Di Attivazione A Due Fattori Non Corrispondente - Account Associated To Multiple Partners - Account Associato A Partner Multipli + Account Associated To Multiple Partners + Account Associato A Partner Multipli - Not Modified - Non modificato + Not Modified + Non modificato - No Mobile Device - Nessun Dispositivo Mobile + No Mobile Device + Nessun Dispositivo Mobile - Time Not Synced - Tempo Non Sincronizzato + Time Not Synced + Tempo Non Sincronizzato - Sms Code Failed - Codice Sms Fallito + Sms Code Failed + Codice Sms Fallito - Account Limit Exceeded - Limite Account Superato + Account Limit Exceeded + Limite Account Superato - Account Activity Limit Exceeded - Limite Attività Dell'Account Superato + Account Activity Limit Exceeded + Limite Attività Dell'Account Superato - Phone Activity Limit Exceeded - Limita Attività Telefono Superato + Phone Activity Limit Exceeded + Limita Attività Telefono Superato - Refund To Wallet - Rimborso Al Portafoglio + Refund To Wallet + Rimborso Al Portafoglio - Email Send Failure - Errore nell'invio della mail + Email Send Failure + Errore nell'invio della mail - Not Settled - Non Risolto + Not Settled + Non Risolto - Need Captcha - Captcha Richiesto + Need Captcha + Captcha Richiesto - GSLT Denied - GSLT Negato + GSLT Denied + GSLT Negato - GS Owner Denied - Proprietario GS Negato + GS Owner Denied + Proprietario GS Negato - Invalid Item Type - Tipo oggetto non valido + Invalid Item Type + Tipo oggetto non valido - IP Banned - IP Bannato + IP Banned + IP Bannato - GSLT Expired - GSLT Scaduto + GSLT Expired + GSLT Scaduto - Insufficient Funds - Fondi insufficienti + Insufficient Funds + Fondi insufficienti - Too Many Pending - Troppi In Attesa + Too Many Pending + Troppi In Attesa - No Site Licenses Found - Nessuna Licenza Sito Trovata + No Site Licenses Found + Nessuna Licenza Sito Trovata - WG Network Send Exceeded - Invii di rete WG Superati + WG Network Send Exceeded + Invii di rete WG Superati - Account Not Friends - Account non in Amici + Account Not Friends + Account non in Amici - Limited User Account - Account Limitato + Limited User Account + Account Limitato - Cant Remove Item - Impossibile rimuovere elemento + Cant Remove Item + Impossibile rimuovere elemento - Account Deleted - Account eliminato + Account Deleted + Account eliminato - Existing User Cancelled License - Licenza annullata da utente esistente + Existing User Cancelled License + Licenza annullata da utente esistente - Community Cooldown - Cooldown comunità + Community Cooldown + Cooldown comunità - Status: - Stato: + Status: + Stato: - Upload Progress: - Avanzamento del caricamento: + Upload Progress: + Avanzamento del caricamento: - - + + WebsiteWallpaper - Create a Website Wallpaper - Crea uno sfondo web + Create a Website Wallpaper + Crea uno sfondo web - General - Generale + General + Generale - Wallpaper name - Nome sfondo + Wallpaper name + Nome sfondo - Created By - Creato da + Created By + Creato da - Description - Descrizione + Description + Descrizione - Tags - Tag + Tags + Tag - Preview Image - Immagine d’anteprima + Preview Image + Immagine d’anteprima - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage - Save - Salva + Save + Salva - Saving... - Salvataggio in corso... + Saving... + Salvataggio in corso... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Iscritto con successo all'oggetto Workshop! + Successfully subscribed to Workshop Item! + Iscritto con successo all'oggetto Workshop! - Download complete! - Download completato! + Download complete! + Download completato! - - + + XMLNewsfeed - News & Patchnotes - Notizie & Patchnotes + News & Patchnotes + Notizie & Patchnotes - + diff --git a/ScreenPlay/translations/ScreenPlay_ko_KR.ts b/ScreenPlay/translations/ScreenPlay_ko_KR.ts index 1f93f409..4821c7e6 100644 --- a/ScreenPlay/translations/ScreenPlay_ko_KR.ts +++ b/ScreenPlay/translations/ScreenPlay_ko_KR.ts @@ -1,1945 +1,1953 @@ - + ColorPicker - Red - 빨강 + Red + 빨강 - Green - 초록 + Green + 초록 - Blue - 파랑 + Blue + 파랑 - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - R: + R: + R: - G: - G: + G: + G: - B: - B: + B: + B: - H: - H: + H: + H: - S: - S: + S: + S: - V: - V: + V: + V: - Alpha: - 알파: + Alpha: + 알파: - # - # + # + # - - + + Community - News - 새소식 + News + 새소식 - Wiki - 위키 + Wiki + 위키 - Forum - 게시판 + Forum + 게시판 - Contribute - Contribute + Contribute + Contribute - Steam Workshop - 스팀 창작마당 + Steam Workshop + 스팀 창작마당 - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - 브라우저에서 열기 + Open in browser + 브라우저에서 열기 - - + + CreateWallpaperInit - Import any video type - Import any video type + Import any video type + Import any video type - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Set your preffered video codec: + Set your preffered video codec: + Set your preffered video codec: - Quality slider. Lower value means better quality. - Quality slider. Lower value means better quality. + Quality slider. Lower value means better quality. + Quality slider. Lower value means better quality. - Open Documentation - 문서 열기 + Open Documentation + 문서 열기 - Select file - 파일 선택 + Select file + 파일 선택 - - + + CreateWallpaperResult - An error occurred! - 에러 발생 + An error occurred! + 에러 발생 - Copy text to clipboard - 텍스트를 클립보드에 복사 + Copy text to clipboard + 텍스트를 클립보드에 복사 - Back to create and send an error report! - 에러 보고서를 전송하고 만들기 로 돌아가기 + Back to create and send an error report! + 에러 보고서를 전송하고 만들기 로 돌아가기 - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - 미리보기 이미지 생성중... + Generating preview image... + 미리보기 이미지 생성중... - Generating preview thumbnail image... - 미리보기 썸네일 이미지 생성중... + Generating preview thumbnail image... + 미리보기 썸네일 이미지 생성중... - Generating 5 second preview video... - 5초 미리보기 비디오 생성중... + Generating 5 second preview video... + 5초 미리보기 비디오 생성중... - Generating preview gif... - 미리보기 GIF 생성중... + Generating preview gif... + 미리보기 GIF 생성중... - Converting Audio... - 오디오 변환중... + Converting Audio... + 오디오 변환중... - Converting Video... This can take some time! - 비디오 변환중... 시간이 좀 걸릴 수 있습니다! + Converting Video... This can take some time! + 비디오 변환중... 시간이 좀 걸릴 수 있습니다! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Convert a video to a wallpaper - Convert a video to a wallpaper + Convert a video to a wallpaper + Convert a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + DefaultVideoControls - Volume - Volume + Volume + Volume - Playback rate - Playback rate + Playback rate + Playback rate - Current Video Time - Current Video Time + Current Video Time + Current Video Time - Fill Mode - Fill Mode + Fill Mode + Fill Mode - Stretch - 늘리기 + Stretch + 늘리기 - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale_Down - Scale_Down + Scale_Down + Scale_Down - - + + FileSelector - Clear - Clear + Clear + Clear - Select File - Select File + Select File + Select File - Please choose a file - Please choose a file + Please choose a file + Please choose a file - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Install Steam Version - Install Steam Version + Install Steam Version + Install Steam Version - Open In Browser - Open In Browser + Open In Browser + Open In Browser - - + + GifWallpaper - Import a Gif Wallpaper - Import a Gif Wallpaper + Import a Gif Wallpaper + Import a Gif Wallpaper - Drop a *.gif file here or use 'Select file' below. - Drop a *.gif file here or use 'Select file' below. + Drop a *.gif file here or use 'Select file' below. + Drop a *.gif file here or use 'Select file' below. - Select your gif - Select your gif + Select your gif + Select your gif - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Tags - Tags + Tags + Tags - - + + HTMLWallpaper - Create a HTML Wallpaper - Create a HTML Wallpaper + Create a HTML Wallpaper + Create a HTML Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - License & Tags - License & Tags + License & Tags + License & Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + HTMLWidget - Create a HTML widget - Create a HTML widget + Create a HTML widget + Create a HTML widget - General - General + General + General - Widget name - Widget name + Widget name + Widget name - Created by - 만든이 + Created by + 만든이 - Tags - 태그 + Tags + 태그 - - + + HeadlineSection - Headline Section - Headline Section + Headline Section + Headline Section - - + + ImageSelector - Set your own preview image - Set your own preview image + Set your own preview image + Set your own preview image - Clear - Clear + Clear + Clear - Select Preview Image - 미리보기 이미지 선택 + Select Preview Image + 미리보기 이미지 선택 - - + + ImportWebmConvert - - + + - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - 유튜브 URL + Youtube URL + 유튜브 URL - Abort - 중단 + Abort + 중단 - Save - 저장 + Save + 저장 - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + ImportWebmInit - Import a .webm video - Import a .webm video + Import a .webm video + Import a .webm video - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Drop a *.webm file here or use 'Select file' below. - Drop a *.webm file here or use 'Select file' below. + Drop a *.webm file here or use 'Select file' below. + Drop a *.webm file here or use 'Select file' below. - Open Documentation - 문서 열기 + Open Documentation + 문서 열기 - Select file - 파일 선택 + Select file + 파일 선택 - - + + Importh264Convert - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + Importh264Init - Import a .mp4 video - Import a .mp4 video + Import a .mp4 video + Import a .mp4 video - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - Invalid file type. Must be valid h264 (*.mp4)! - Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Installed - - + + - Refreshing! - 새로고침 중 + Refreshing! + 새로고침 중 - Pull to refresh! - Pull to refresh! + Pull to refresh! + Pull to refresh! - Get more Wallpaper & Widgets via the Steam workshop! - Get more Wallpaper & Widgets via the Steam workshop! + Get more Wallpaper & Widgets via the Steam workshop! + Get more Wallpaper & Widgets via the Steam workshop! - Open containing folder - Open containing folder + Open containing folder + Open containing folder - Remove Item - Remove Item + Remove Item + Remove Item - Remove via Workshop - Remove via Workshop + Remove via Workshop + Remove via Workshop - Open Workshop Page - 창작마당 페이지 열기 + Open Workshop Page + 창작마당 페이지 열기 - Are you sure you want to delete this item? - Are you sure you want to delete this item? + Are you sure you want to delete this item? + Are you sure you want to delete this item? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Get free Widgets and Wallpaper via the Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop - Browse the Steam Workshop - Browse the Steam Workshop + Browse the Steam Workshop + Browse the Steam Workshop - - + + LicenseSelector - License - 라이센스 + License + 라이센스 - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - You grant other to remix your work and change the license to their liking. - You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - You allow everyone to do anything with your work. - You allow everyone to do anything with your work. + You allow everyone to do anything with your work. + You allow everyone to do anything with your work. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - - + + Monitors - Wallpaper Configuration - Wallpaper Configuration + Wallpaper Configuration + Wallpaper Configuration - Remove selected - Remove selected + Remove selected + Remove selected - Wallpapers - Wallpapers + Wallpapers + Wallpapers - Widgets - Widgets + Widgets + Widgets - Remove all - Remove all + Remove all + Remove all - - + + MonitorsProjectSettingItem - Set color - Set color + Set color + Set color - Please choose a color - Please choose a color + Please choose a color + Please choose a color - - + + Navigation - All - All + All + All - Scenes - Scenes + Scenes + Scenes - Videos - Videos + Videos + Videos - Widgets - Widgets + Widgets + Widgets - Install Date Ascending - Install Date Ascending + Install Date Ascending + Install Date Ascending - Install Date Descending - Install Date Descending + Install Date Descending + Install Date Descending - Subscribed items: - Subscribed items: + Subscribed items: + Subscribed items: - Upload to the Steam Workshop - Upload to the Steam Workshop + Upload to the Steam Workshop + Upload to the Steam Workshop - Create - Create + Create + Create - Workshop - Workshop + Workshop + Workshop - Installed - Installed + Installed + Installed - Community - Community + Community + Community - Settings - Settings + Settings + Settings - Mute/Unmute all Wallpaper - Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper - Pause/Play all Wallpaper - Pause/Play all Wallpaper + Pause/Play all Wallpaper + Pause/Play all Wallpaper - Configure Wallpaper - Configure Wallpaper + Configure Wallpaper + Configure Wallpaper - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Back - Back - Back + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - You Need to Agree To The Steam Subscriber Agreement First + You Need to Agree To The Steam Subscriber Agreement First + You Need to Agree To The Steam Subscriber Agreement First - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - View The Steam Subscriber Agreement - View The Steam Subscriber Agreement + View The Steam Subscriber Agreement + View The Steam Subscriber Agreement - Accept Steam Workshop Agreement - Accept Steam Workshop Agreement + Accept Steam Workshop Agreement + Accept Steam Workshop Agreement - - + + QMLWallpaper - Create a QML Wallpaper - Create a QML Wallpaper + Create a QML Wallpaper + Create a QML Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - License & Tags - License & Tags + License & Tags + License & Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + QMLWidget - Create a QML widget - Create a QML widget + Create a QML widget + Create a QML widget - General - General + General + General - Widget name - Widget name + Widget name + Widget name - Created by - Created by + Created by + Created by - Tags - Tags + Tags + Tags - - + + SaveNotification - Profile saved successfully! - Profile saved successfully! + Profile saved successfully! + Profile saved successfully! - - + + ScreenPlayItem - NEW - NEW + NEW + NEW - - + + Search - Search for Wallpaper & Widgets - Search for Wallpaper & Widgets + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets - - + + Settings - General - General + General + General - Autostart - Autostart + Autostart + Autostart - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. - High priority Autostart - High priority Autostart + High priority Autostart + High priority Autostart - This options grants ScreenPlay a higher autostart priority than other apps. - This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. - Send anonymous crash reports and statistics - Send anonymous crash reports and statistics + Send anonymous crash reports and statistics + Send anonymous crash reports and statistics - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Set save location - Set save location + Set save location + Set save location - Set location - Set location + Set location + Set location - Your storage path is empty! - Your storage path is empty! + Your storage path is empty! + Your storage path is empty! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Language - Language + Language + Language - Set the ScreenPlay UI Language - Set the ScreenPlay UI Language + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language - Theme - Theme + Theme + Theme - Switch dark/light theme - Switch dark/light theme + Switch dark/light theme + Switch dark/light theme - System Default - System Default + System Default + System Default - Dark - Dark + Dark + Dark - Light - Light + Light + Light - Performance - Performance + Performance + Performance - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Default Fill Mode - Default Fill Mode + Default Fill Mode + Default Fill Mode - Set this property to define how the video is scaled to fit the target area. - Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - About - About + About + About - Thank you for using ScreenPlay - Thank you for using ScreenPlay + Thank you for using ScreenPlay + Thank you for using ScreenPlay - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Version - Version + Version + Version - Open Changelog - Open Changelog + Open Changelog + Open Changelog - Third Party Software - Third Party Software + Third Party Software + Third Party Software - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - Licenses - Licenses + Licenses + Licenses - Logs - Logs + Logs + Logs - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Show Logs - Show Logs + Show Logs + Show Logs - Data Protection - Data Protection + Data Protection + Data Protection - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Privacy - Privacy + Privacy + Privacy - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay Build Version - - + + SettingsExpander - Copy text to clipboard - Copy text to clipboard + Copy text to clipboard + Copy text to clipboard - - + + Sidebar - Tools Overview - Tools Overview + Tools Overview + Tools Overview - Video Import h264 (.mp4) - Video Import h264 (.mp4) + Video Import h264 (.mp4) + Video Import h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) - Video import (all types) - Video import (all types) + Video import (all types) + Video import (all types) - GIF Wallpaper - GIF Wallpaper + GIF Wallpaper + GIF Wallpaper - QML Wallpaper - QML Wallpaper + QML Wallpaper + QML Wallpaper - HTML5 Wallpaper - HTML5 Wallpaper + HTML5 Wallpaper + HTML5 Wallpaper - Website Wallpaper - Website Wallpaper + Website Wallpaper + Website Wallpaper - QML Widget - QML Widget + QML Widget + QML Widget - HTML Widget - HTML Widget + HTML Widget + HTML Widget - Set Wallpaper - Set Wallpaper + Set Wallpaper + Set Wallpaper - Set Widget - Set Widget + Set Widget + Set Widget - Headline - Headline + Headline + Headline - Select a Monitor to display the content - Select a Monitor to display the content + Select a Monitor to display the content + Select a Monitor to display the content - Set Volume - Set Volume + Set Volume + Set Volume - Fill Mode - Fill Mode + Fill Mode + Fill Mode - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - Size: - Size: + Size: + Size: - No description... - No description... + No description... + No description... - Click here if you like the content - Click here if you like the content + Click here if you like the content + Click here if you like the content - Click here if you do not like the content - Click here if you do not like the content + Click here if you do not like the content + Click here if you do not like the content - Subscribtions: - Subscribtions: + Subscribtions: + Subscribtions: - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Subscribed! - Subscribed! + Subscribed! + Subscribed! - Subscribe - Subscribe + Subscribe + Subscribe - - + + StartInfo - Free tools to help you to create wallpaper - Free tools to help you to create wallpaper + Free tools to help you to create wallpaper + Free tools to help you to create wallpaper - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - - + + SteamNotAvailable - Could not load steam integration! - Could not load steam integration! + Could not load steam integration! + Could not load steam integration! - - + + SteamProfile - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + SteamWorkshopStartPage - Loading - Loading + Loading + Loading - Download now! - Download now! + Download now! + Download now! - Downloading... - Downloading... + Downloading... + Downloading... - Details - Details + Details + Details - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Profile - Profile + Profile + Profile - Upload - Upload + Upload + Upload - Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... - Open Workshop in Steam - Open Workshop in Steam + Open Workshop in Steam + Open Workshop in Steam - Ranked By Vote - Ranked By Vote + Ranked By Vote + Ranked By Vote - Publication Date - Publication Date + Publication Date + Publication Date - Ranked By Trend - Ranked By Trend + Ranked By Trend + Ranked By Trend - Favorited By Friends - Favorited By Friends + Favorited By Friends + Favorited By Friends - Created By Friends - Created By Friends + Created By Friends + Created By Friends - Created By Followed Users - Created By Followed Users + Created By Followed Users + Created By Followed Users - Not Yet Rated - Not Yet Rated + Not Yet Rated + Not Yet Rated - Total VotesAsc - Total VotesAsc + Total VotesAsc + Total VotesAsc - Votes Up - Votes Up + Votes Up + Votes Up - Total Unique Subscriptions - Total Unique Subscriptions + Total Unique Subscriptions + Total Unique Subscriptions - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + TagSelector - Save - Save + Save + Save - Add tag - Add tag + Add tag + Add tag - Cancel - Cancel + Cancel + Cancel - Add Tag - Add Tag + Add Tag + Add Tag - - + + TextField - Label - Label + Label + Label - *Required - *Required + *Required + *Required - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. - Open ScreenPlay - Open ScreenPlay + Open ScreenPlay + Open ScreenPlay - Mute all - Mute all + Mute all + Mute all - Unmute all - Unmute all + Unmute all + Unmute all - Pause all - Pause all + Pause all + Pause all - Play all - Play all + Play all + Play all - Quit - Quit + Quit + Quit - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - Abort - Abort + Abort + Abort - Upload Selected Projects - Upload Selected Projects + Upload Selected Projects + Upload Selected Projects - Finish - Finish + Finish + Finish - - + + UploadProjectBigItem - Type: - Type: + Type: + Type: - Open Folder - Open Folder + Open Folder + Open Folder - Invalid Project! - Invalid Project! + Invalid Project! + Invalid Project! - - + + UploadProjectItem - Fail - Fail + Fail + Fail - No Connection - No Connection + No Connection + No Connection - Invalid Password - Invalid Password + Invalid Password + Invalid Password - Logged In Elsewhere - Logged In Elsewhere + Logged In Elsewhere + Logged In Elsewhere - Invalid Protocol Version - Invalid Protocol Version + Invalid Protocol Version + Invalid Protocol Version - Invalid Param - Invalid Param + Invalid Param + Invalid Param - File Not Found - File Not Found + File Not Found + File Not Found - Busy - Busy + Busy + Busy - Invalid State - Invalid State + Invalid State + Invalid State - Invalid Name - Invalid Name + Invalid Name + Invalid Name - Invalid Email - Invalid Email + Invalid Email + Invalid Email - Duplicate Name - Duplicate Name + Duplicate Name + Duplicate Name - Access Denied - Access Denied + Access Denied + Access Denied - Timeout - Timeout + Timeout + Timeout - Banned - Banned + Banned + Banned - Account Not Found - Account Not Found + Account Not Found + Account Not Found - Invalid SteamID - Invalid SteamID + Invalid SteamID + Invalid SteamID - Service Unavailable - Service Unavailable + Service Unavailable + Service Unavailable - Not Logged On - Not Logged On + Not Logged On + Not Logged On - Pending - Pending + Pending + Pending - Encryption Failure - Encryption Failure + Encryption Failure + Encryption Failure - Insufficient Privilege - Insufficient Privilege + Insufficient Privilege + Insufficient Privilege - Limit Exceeded - Limit Exceeded + Limit Exceeded + Limit Exceeded - Revoked - Revoked + Revoked + Revoked - Expired - Expired + Expired + Expired - Already Redeemed - Already Redeemed + Already Redeemed + Already Redeemed - Duplicate Request - Duplicate Request + Duplicate Request + Duplicate Request - Already Owned - Already Owned + Already Owned + Already Owned - IP Not Found - IP Not Found + IP Not Found + IP Not Found - Persist Failed - Persist Failed + Persist Failed + Persist Failed - Locking Failed - Locking Failed + Locking Failed + Locking Failed - Logon Session Replaced - Logon Session Replaced + Logon Session Replaced + Logon Session Replaced - Connect Failed - Connect Failed + Connect Failed + Connect Failed - Handshake Failed - Handshake Failed + Handshake Failed + Handshake Failed - IO Failure - IO Failure + IO Failure + IO Failure - Remote Disconnect - Remote Disconnect + Remote Disconnect + Remote Disconnect - Shopping Cart Not Found - Shopping Cart Not Found + Shopping Cart Not Found + Shopping Cart Not Found - Blocked - Blocked + Blocked + Blocked - Ignored - Ignored + Ignored + Ignored - No Match - No Match + No Match + No Match - Account Disabled - Account Disabled + Account Disabled + Account Disabled - Service ReadOnly - Service ReadOnly + Service ReadOnly + Service ReadOnly - Account Not Featured - Account Not Featured + Account Not Featured + Account Not Featured - Administrator OK - Administrator OK + Administrator OK + Administrator OK - Content Version - Content Version + Content Version + Content Version - Try Another CM - Try Another CM + Try Another CM + Try Another CM - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Already Logged In Elsewhere + Already Logged In Elsewhere + Already Logged In Elsewhere - Suspended - Suspended + Suspended + Suspended - Cancelled - Cancelled + Cancelled + Cancelled - Data Corruption - Data Corruption + Data Corruption + Data Corruption - Disk Full - Disk Full + Disk Full + Disk Full - Remote Call Failed - Remote Call Failed + Remote Call Failed + Remote Call Failed - Password Unset - Password Unset + Password Unset + Password Unset - External Account Unlinked - External Account Unlinked + External Account Unlinked + External Account Unlinked - PSN Ticket Invalid - PSN Ticket Invalid + PSN Ticket Invalid + PSN Ticket Invalid - External Account Already Linked - External Account Already Linked + External Account Already Linked + External Account Already Linked - Remote File Conflict - Remote File Conflict + Remote File Conflict + Remote File Conflict - Illegal Password - Illegal Password + Illegal Password + Illegal Password - Same As Previous Value - Same As Previous Value + Same As Previous Value + Same As Previous Value - Account Logon Denied - Account Logon Denied + Account Logon Denied + Account Logon Denied - Cannot Use Old Password - Cannot Use Old Password + Cannot Use Old Password + Cannot Use Old Password - Invalid Login AuthCode - Invalid Login AuthCode + Invalid Login AuthCode + Invalid Login AuthCode - Account Logon Denied No Mail - Account Logon Denied No Mail + Account Logon Denied No Mail + Account Logon Denied No Mail - Hardware Not Capable Of IPT - Hardware Not Capable Of IPT + Hardware Not Capable Of IPT + Hardware Not Capable Of IPT - IPT Init Error - IPT Init Error + IPT Init Error + IPT Init Error - Parental Control Restricted - Parental Control Restricted + Parental Control Restricted + Parental Control Restricted - Facebook Query Error - Facebook Query Error + Facebook Query Error + Facebook Query Error - Expired Login Auth Code - Expired Login Auth Code + Expired Login Auth Code + Expired Login Auth Code - IP Login Restriction Failed - IP Login Restriction Failed + IP Login Restriction Failed + IP Login Restriction Failed - Account Locked Down - Account Locked Down + Account Locked Down + Account Locked Down - Account Logon Denied Verified Email Required - Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required - No MatchingURL - No MatchingURL + No MatchingURL + No MatchingURL - Bad Response - Bad Response + Bad Response + Bad Response - Require Password ReEntry - Require Password ReEntry + Require Password ReEntry + Require Password ReEntry - Value Out Of Range - Value Out Of Range + Value Out Of Range + Value Out Of Range - Unexpecte Error - Unexpecte Error + Unexpecte Error + Unexpecte Error - Disabled - Disabled + Disabled + Disabled - Invalid CEG Submission - Invalid CEG Submission + Invalid CEG Submission + Invalid CEG Submission - Restricted Device - Restricted Device + Restricted Device + Restricted Device - Region Locked - Region Locked + Region Locked + Region Locked - Rate Limit Exceeded - Rate Limit Exceeded + Rate Limit Exceeded + Rate Limit Exceeded - Account Login Denied Need Two Factor - Account Login Denied Need Two Factor + Account Login Denied Need Two Factor + Account Login Denied Need Two Factor - Item Deleted - Item Deleted + Item Deleted + Item Deleted - Account Login Denied Throttle - Account Login Denied Throttle + Account Login Denied Throttle + Account Login Denied Throttle - Two Factor Code Mismatch - Two Factor Code Mismatch + Two Factor Code Mismatch + Two Factor Code Mismatch - Two Factor Activation Code Mismatch - Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch - Account Associated To Multiple Partners - Account Associated To Multiple Partners + Account Associated To Multiple Partners + Account Associated To Multiple Partners - Not Modified - Not Modified + Not Modified + Not Modified - No Mobile Device - No Mobile Device + No Mobile Device + No Mobile Device - Time Not Synced - Time Not Synced + Time Not Synced + Time Not Synced - Sms Code Failed - Sms Code Failed + Sms Code Failed + Sms Code Failed - Account Limit Exceeded - Account Limit Exceeded + Account Limit Exceeded + Account Limit Exceeded - Account Activity Limit Exceeded - Account Activity Limit Exceeded + Account Activity Limit Exceeded + Account Activity Limit Exceeded - Phone Activity Limit Exceeded - Phone Activity Limit Exceeded + Phone Activity Limit Exceeded + Phone Activity Limit Exceeded - Refund To Wallet - Refund To Wallet + Refund To Wallet + Refund To Wallet - Email Send Failure - Email Send Failure + Email Send Failure + Email Send Failure - Not Settled - Not Settled + Not Settled + Not Settled - Need Captcha - Need Captcha + Need Captcha + Need Captcha - GSLT Denied - GSLT Denied + GSLT Denied + GSLT Denied - GS Owner Denied - GS Owner Denied + GS Owner Denied + GS Owner Denied - Invalid Item Type - Invalid Item Type + Invalid Item Type + Invalid Item Type - IP Banned - IP Banned + IP Banned + IP Banned - GSLT Expired - GSLT Expired + GSLT Expired + GSLT Expired - Insufficient Funds - Insufficient Funds + Insufficient Funds + Insufficient Funds - Too Many Pending - Too Many Pending + Too Many Pending + Too Many Pending - No Site Licenses Found - No Site Licenses Found + No Site Licenses Found + No Site Licenses Found - WG Network Send Exceeded - WG Network Send Exceeded + WG Network Send Exceeded + WG Network Send Exceeded - Account Not Friends - Account Not Friends + Account Not Friends + Account Not Friends - Limited User Account - Limited User Account + Limited User Account + Limited User Account - Cant Remove Item - Cant Remove Item + Cant Remove Item + Cant Remove Item - Account Deleted - Account Deleted + Account Deleted + Account Deleted - Existing User Cancelled License - Existing User Cancelled License + Existing User Cancelled License + Existing User Cancelled License - Community Cooldown - Community Cooldown + Community Cooldown + Community Cooldown - Status: - Status: + Status: + Status: - Upload Progress: - Upload Progress: + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - Create a Website Wallpaper - Create a Website Wallpaper + Create a Website Wallpaper + Create a Website Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - Tags - Tags + Tags + Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage - Save - Save + Save + Save - Saving... - Saving... + Saving... + Saving... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - Download complete! - Download complete! + Download complete! + Download complete! - - + + XMLNewsfeed - News & Patchnotes - News & Patchnotes + News & Patchnotes + News & Patchnotes - + diff --git a/ScreenPlay/translations/ScreenPlay_nl_NL.ts b/ScreenPlay/translations/ScreenPlay_nl_NL.ts index 303eedc0..a7d2d58a 100644 --- a/ScreenPlay/translations/ScreenPlay_nl_NL.ts +++ b/ScreenPlay/translations/ScreenPlay_nl_NL.ts @@ -1,1945 +1,1953 @@ - + ColorPicker - Red - Rood + Red + Rood - Green - Groen + Green + Groen - Blue - Blauw + Blue + Blauw - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - R: + R: + R: - G: - G: + G: + G: - B: - B: + B: + B: - H: - H: + H: + H: - S: - S: + S: + S: - V: - V: + V: + V: - Alpha: - Alpha: + Alpha: + Alpha: - # - # + # + # - - + + Community - News - Nieuws + News + Nieuws - Wiki - Wiki + Wiki + Wiki - Forum - Forum + Forum + Forum - Contribute - Bijdragen + Contribute + Bijdragen - Steam Workshop - Steam Workshop + Steam Workshop + Steam Workshop - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - Open in browser + Open in browser + Open in browser - - + + CreateWallpaperInit - Import any video type - Importeer elk video type + Import any video type + Importeer elk video type - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Afhankelijk van je PC configuratie is het beter om je achtergrond te converteren naar een specifieke video codec. Als beide slechte prestaties hebben, kunt u ook een QML wallpaper proberen! Ondersteunde videoformaten zijn: + Afhankelijk van je PC configuratie is het beter om je achtergrond te converteren naar een specifieke video codec. Als beide slechte prestaties hebben, kunt u ook een QML wallpaper proberen! Ondersteunde videoformaten zijn: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Stel je gewenst videocodec in: + Set your preffered video codec: + Stel je gewenst videocodec in: - Quality slider. Lower value means better quality. - Kwaliteit schuifregelaar. Lagere waarde betekent betere kwaliteit. + Quality slider. Lower value means better quality. + Kwaliteit schuifregelaar. Lagere waarde betekent betere kwaliteit. - Open Documentation - Open Documentatie + Open Documentation + Open Documentatie - Select file - Selecteer bestand + Select file + Selecteer bestand - - + + CreateWallpaperResult - An error occurred! - Er is een fout opgetreden! + An error occurred! + Er is een fout opgetreden! - Copy text to clipboard - Kopieer tekst naar klembord + Copy text to clipboard + Kopieer tekst naar klembord - Back to create and send an error report! - Back to create and send an error report! + Back to create and send an error report! + Back to create and send an error report! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - Voorbeeld afbeelding aan het genereren... + Generating preview image... + Voorbeeld afbeelding aan het genereren... - Generating preview thumbnail image... - Voorbeeld miniatuurafbeelding aan het genereren... + Generating preview thumbnail image... + Voorbeeld miniatuurafbeelding aan het genereren... - Generating 5 second preview video... - 5 seconden voorbeeldvideo aan het genereren... + Generating 5 second preview video... + 5 seconden voorbeeldvideo aan het genereren... - Generating preview gif... - Voorbeeld gif aan het genereren... + Generating preview gif... + Voorbeeld gif aan het genereren... - Converting Audio... - Audio aan het converteren... + Converting Audio... + Audio aan het converteren... - Converting Video... This can take some time! - Video aan het converteren... Dit kan even duren! + Converting Video... This can take some time! + Video aan het converteren... Dit kan even duren! - Converting Video ERROR! - Video Converteren FOUT! + Converting Video ERROR! + Video Converteren FOUT! - Analyse Video ERROR! - Video Analyse FOUT! + Analyse Video ERROR! + Video Analyse FOUT! - Convert a video to a wallpaper - Converteer een video naar een achtergrond + Convert a video to a wallpaper + Converteer een video naar een achtergrond - Generating preview video... - Voorbeeldvideo aan het genereren... + Generating preview video... + Voorbeeldvideo aan het genereren... - Name (required!) - Naam (verplicht!) + Name (required!) + Naam (verplicht!) - Description - Beschrijving + Description + Beschrijving - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Breek af + Abort + Breek af - Save - Sla op + Save + Sla op - Save Wallpaper... - Sla achtergrond op... + Save Wallpaper... + Sla achtergrond op... - - + + DefaultVideoControls - Volume - Volume + Volume + Volume - Playback rate - Afspeelsnelheid + Playback rate + Afspeelsnelheid - Current Video Time - Huidige Videotijd + Current Video Time + Huidige Videotijd - Fill Mode - Vulmodus + Fill Mode + Vulmodus - Stretch - Rek uit + Stretch + Rek uit - Fill - Vul + Fill + Vul - Contain - Contain + Contain + Contain - Cover - Dek + Cover + Dek - Scale_Down - Schaal_Omlaag + Scale_Down + Schaal_Omlaag - - + + FileSelector - Clear - Wis + Clear + Wis - Select File - Selecteer bestand + Select File + Selecteer bestand - Please choose a file - Kies een bestand + Please choose a file + Kies een bestand - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Install Steam Version - Install Steam Version + Install Steam Version + Install Steam Version - Open In Browser - Open In Browser + Open In Browser + Open In Browser - - + + GifWallpaper - Import a Gif Wallpaper - Import a Gif Wallpaper + Import a Gif Wallpaper + Import a Gif Wallpaper - Drop a *.gif file here or use 'Select file' below. - Drop a *.gif file here or use 'Select file' below. + Drop a *.gif file here or use 'Select file' below. + Drop a *.gif file here or use 'Select file' below. - Select your gif - Select your gif + Select your gif + Select your gif - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Gemaakt door + Created By + Gemaakt door - Tags - Tags + Tags + Tags - - + + HTMLWallpaper - Create a HTML Wallpaper - Maak een HTML Achtergrond + Create a HTML Wallpaper + Maak een HTML Achtergrond - General - Algemeen + General + Algemeen - Wallpaper name - Achtergrond naam + Wallpaper name + Achtergrond naam - Created By - Gemaakt door + Created By + Gemaakt door - Description - Beschrijving + Description + Beschrijving - License & Tags - Licentie & Tags + License & Tags + Licentie & Tags - Preview Image - Voorbeeldafbeelding + Preview Image + Voorbeeldafbeelding - - + + HTMLWidget - Create a HTML widget - Create a HTML widget + Create a HTML widget + Create a HTML widget - General - General + General + General - Widget name - Widget name + Widget name + Widget name - Created by - Created by + Created by + Created by - Tags - Tags + Tags + Tags - - + + HeadlineSection - Headline Section - Headline Section + Headline Section + Headline Section - - + + ImageSelector - Set your own preview image - Set your own preview image + Set your own preview image + Set your own preview image - Clear - Clear + Clear + Clear - Select Preview Image - Select Preview Image + Select Preview Image + Select Preview Image - - + + ImportWebmConvert - - + + - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + ImportWebmInit - Import a .webm video - Import a .webm video + Import a .webm video + Import a .webm video - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Drop a *.webm file here or use 'Select file' below. - Drop a *.webm file here or use 'Select file' below. + Drop a *.webm file here or use 'Select file' below. + Drop a *.webm file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Importh264Convert - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + Importh264Init - Import a .mp4 video - Import a .mp4 video + Import a .mp4 video + Import a .mp4 video - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - Invalid file type. Must be valid h264 (*.mp4)! - Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Installed - - + + - Refreshing! - Refreshing! + Refreshing! + Refreshing! - Pull to refresh! - Pull to refresh! + Pull to refresh! + Pull to refresh! - Get more Wallpaper & Widgets via the Steam workshop! - Get more Wallpaper & Widgets via the Steam workshop! + Get more Wallpaper & Widgets via the Steam workshop! + Get more Wallpaper & Widgets via the Steam workshop! - Open containing folder - Open containing folder + Open containing folder + Open containing folder - Remove Item - Remove Item + Remove Item + Remove Item - Remove via Workshop - Remove via Workshop + Remove via Workshop + Remove via Workshop - Open Workshop Page - Open Workshop Page + Open Workshop Page + Open Workshop Page - Are you sure you want to delete this item? - Are you sure you want to delete this item? + Are you sure you want to delete this item? + Are you sure you want to delete this item? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Get free Widgets and Wallpaper via the Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop - Browse the Steam Workshop - Browse the Steam Workshop + Browse the Steam Workshop + Browse the Steam Workshop - - + + LicenseSelector - License - License + License + License - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - You grant other to remix your work and change the license to their liking. - You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - You allow everyone to do anything with your work. - You allow everyone to do anything with your work. + You allow everyone to do anything with your work. + You allow everyone to do anything with your work. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - - + + Monitors - Wallpaper Configuration - Wallpaper Configuration + Wallpaper Configuration + Wallpaper Configuration - Remove selected - Remove selected + Remove selected + Remove selected - Wallpapers - Wallpapers + Wallpapers + Wallpapers - Widgets - Widgets + Widgets + Widgets - Remove all - Remove all + Remove all + Remove all - - + + MonitorsProjectSettingItem - Set color - Set color + Set color + Set color - Please choose a color - Please choose a color + Please choose a color + Please choose a color - - + + Navigation - All - All + All + All - Scenes - Scenes + Scenes + Scenes - Videos - Videos + Videos + Videos - Widgets - Widgets + Widgets + Widgets - Install Date Ascending - Install Date Ascending + Install Date Ascending + Install Date Ascending - Install Date Descending - Install Date Descending + Install Date Descending + Install Date Descending - Subscribed items: - Subscribed items: + Subscribed items: + Subscribed items: - Upload to the Steam Workshop - Upload to the Steam Workshop + Upload to the Steam Workshop + Upload to the Steam Workshop - Create - Create + Create + Create - Workshop - Workshop + Workshop + Workshop - Installed - Installed + Installed + Installed - Community - Community + Community + Community - Settings - Settings + Settings + Settings - Mute/Unmute all Wallpaper - Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper - Pause/Play all Wallpaper - Pause/Play all Wallpaper + Pause/Play all Wallpaper + Pause/Play all Wallpaper - Configure Wallpaper - Configure Wallpaper + Configure Wallpaper + Configure Wallpaper - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Back - Back - Back + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - You Need to Agree To The Steam Subscriber Agreement First + You Need to Agree To The Steam Subscriber Agreement First + You Need to Agree To The Steam Subscriber Agreement First - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - View The Steam Subscriber Agreement - View The Steam Subscriber Agreement + View The Steam Subscriber Agreement + View The Steam Subscriber Agreement - Accept Steam Workshop Agreement - Accept Steam Workshop Agreement + Accept Steam Workshop Agreement + Accept Steam Workshop Agreement - - + + QMLWallpaper - Create a QML Wallpaper - Create a QML Wallpaper + Create a QML Wallpaper + Create a QML Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - License & Tags - License & Tags + License & Tags + License & Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + QMLWidget - Create a QML widget - Create a QML widget + Create a QML widget + Create a QML widget - General - General + General + General - Widget name - Widget name + Widget name + Widget name - Created by - Created by + Created by + Created by - Tags - Tags + Tags + Tags - - + + SaveNotification - Profile saved successfully! - Profile saved successfully! + Profile saved successfully! + Profile saved successfully! - - + + ScreenPlayItem - NEW - NEW + NEW + NEW - - + + Search - Search for Wallpaper & Widgets - Search for Wallpaper & Widgets + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets - - + + Settings - General - General + General + General - Autostart - Autostart + Autostart + Autostart - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. - High priority Autostart - High priority Autostart + High priority Autostart + High priority Autostart - This options grants ScreenPlay a higher autostart priority than other apps. - This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. - Send anonymous crash reports and statistics - Send anonymous crash reports and statistics + Send anonymous crash reports and statistics + Send anonymous crash reports and statistics - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Set save location - Set save location + Set save location + Set save location - Set location - Set location + Set location + Set location - Your storage path is empty! - Your storage path is empty! + Your storage path is empty! + Your storage path is empty! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Language - Language + Language + Language - Set the ScreenPlay UI Language - Set the ScreenPlay UI Language + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language - Theme - Theme + Theme + Theme - Switch dark/light theme - Switch dark/light theme + Switch dark/light theme + Switch dark/light theme - System Default - System Default + System Default + System Default - Dark - Dark + Dark + Dark - Light - Light + Light + Light - Performance - Performance + Performance + Performance - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Default Fill Mode - Default Fill Mode + Default Fill Mode + Default Fill Mode - Set this property to define how the video is scaled to fit the target area. - Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - About - About + About + About - Thank you for using ScreenPlay - Thank you for using ScreenPlay + Thank you for using ScreenPlay + Thank you for using ScreenPlay - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Version - Version + Version + Version - Open Changelog - Open Changelog + Open Changelog + Open Changelog - Third Party Software - Third Party Software + Third Party Software + Third Party Software - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - Licenses - Licenses + Licenses + Licenses - Logs - Logs + Logs + Logs - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Show Logs - Show Logs + Show Logs + Show Logs - Data Protection - Data Protection + Data Protection + Data Protection - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Privacy - Privacy + Privacy + Privacy - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay Build Version - - + + SettingsExpander - Copy text to clipboard - Copy text to clipboard + Copy text to clipboard + Copy text to clipboard - - + + Sidebar - Tools Overview - Tools Overview + Tools Overview + Tools Overview - Video Import h264 (.mp4) - Video Import h264 (.mp4) + Video Import h264 (.mp4) + Video Import h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) - Video import (all types) - Video import (all types) + Video import (all types) + Video import (all types) - GIF Wallpaper - GIF Wallpaper + GIF Wallpaper + GIF Wallpaper - QML Wallpaper - QML Wallpaper + QML Wallpaper + QML Wallpaper - HTML5 Wallpaper - HTML5 Wallpaper + HTML5 Wallpaper + HTML5 Wallpaper - Website Wallpaper - Website Wallpaper + Website Wallpaper + Website Wallpaper - QML Widget - QML Widget + QML Widget + QML Widget - HTML Widget - HTML Widget + HTML Widget + HTML Widget - Set Wallpaper - Set Wallpaper + Set Wallpaper + Set Wallpaper - Set Widget - Set Widget + Set Widget + Set Widget - Headline - Headline + Headline + Headline - Select a Monitor to display the content - Select a Monitor to display the content + Select a Monitor to display the content + Select a Monitor to display the content - Set Volume - Set Volume + Set Volume + Set Volume - Fill Mode - Fill Mode + Fill Mode + Fill Mode - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - Size: - Size: + Size: + Size: - No description... - No description... + No description... + No description... - Click here if you like the content - Click here if you like the content + Click here if you like the content + Click here if you like the content - Click here if you do not like the content - Click here if you do not like the content + Click here if you do not like the content + Click here if you do not like the content - Subscribtions: - Subscribtions: + Subscribtions: + Subscribtions: - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Subscribed! - Subscribed! + Subscribed! + Subscribed! - Subscribe - Subscribe + Subscribe + Subscribe - - + + StartInfo - Free tools to help you to create wallpaper - Free tools to help you to create wallpaper + Free tools to help you to create wallpaper + Free tools to help you to create wallpaper - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - - + + SteamNotAvailable - Could not load steam integration! - Could not load steam integration! + Could not load steam integration! + Could not load steam integration! - - + + SteamProfile - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + SteamWorkshopStartPage - Loading - Loading + Loading + Loading - Download now! - Download now! + Download now! + Download now! - Downloading... - Downloading... + Downloading... + Downloading... - Details - Details + Details + Details - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Profile - Profile + Profile + Profile - Upload - Upload + Upload + Upload - Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... - Open Workshop in Steam - Open Workshop in Steam + Open Workshop in Steam + Open Workshop in Steam - Ranked By Vote - Ranked By Vote + Ranked By Vote + Ranked By Vote - Publication Date - Publication Date + Publication Date + Publication Date - Ranked By Trend - Ranked By Trend + Ranked By Trend + Ranked By Trend - Favorited By Friends - Favorited By Friends + Favorited By Friends + Favorited By Friends - Created By Friends - Created By Friends + Created By Friends + Created By Friends - Created By Followed Users - Created By Followed Users + Created By Followed Users + Created By Followed Users - Not Yet Rated - Not Yet Rated + Not Yet Rated + Not Yet Rated - Total VotesAsc - Total VotesAsc + Total VotesAsc + Total VotesAsc - Votes Up - Votes Up + Votes Up + Votes Up - Total Unique Subscriptions - Total Unique Subscriptions + Total Unique Subscriptions + Total Unique Subscriptions - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + TagSelector - Save - Save + Save + Save - Add tag - Add tag + Add tag + Add tag - Cancel - Cancel + Cancel + Cancel - Add Tag - Add Tag + Add Tag + Add Tag - - + + TextField - Label - Label + Label + Label - *Required - *Required + *Required + *Required - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. - Open ScreenPlay - Open ScreenPlay + Open ScreenPlay + Open ScreenPlay - Mute all - Mute all + Mute all + Mute all - Unmute all - Unmute all + Unmute all + Unmute all - Pause all - Pause all + Pause all + Pause all - Play all - Play all + Play all + Play all - Quit - Quit + Quit + Quit - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - Abort - Abort + Abort + Abort - Upload Selected Projects - Upload Selected Projects + Upload Selected Projects + Upload Selected Projects - Finish - Finish + Finish + Finish - - + + UploadProjectBigItem - Type: - Type: + Type: + Type: - Open Folder - Open Folder + Open Folder + Open Folder - Invalid Project! - Invalid Project! + Invalid Project! + Invalid Project! - - + + UploadProjectItem - Fail - Fail + Fail + Fail - No Connection - No Connection + No Connection + No Connection - Invalid Password - Invalid Password + Invalid Password + Invalid Password - Logged In Elsewhere - Logged In Elsewhere + Logged In Elsewhere + Logged In Elsewhere - Invalid Protocol Version - Invalid Protocol Version + Invalid Protocol Version + Invalid Protocol Version - Invalid Param - Invalid Param + Invalid Param + Invalid Param - File Not Found - File Not Found + File Not Found + File Not Found - Busy - Busy + Busy + Busy - Invalid State - Invalid State + Invalid State + Invalid State - Invalid Name - Invalid Name + Invalid Name + Invalid Name - Invalid Email - Invalid Email + Invalid Email + Invalid Email - Duplicate Name - Duplicate Name + Duplicate Name + Duplicate Name - Access Denied - Access Denied + Access Denied + Access Denied - Timeout - Timeout + Timeout + Timeout - Banned - Banned + Banned + Banned - Account Not Found - Account Not Found + Account Not Found + Account Not Found - Invalid SteamID - Invalid SteamID + Invalid SteamID + Invalid SteamID - Service Unavailable - Service Unavailable + Service Unavailable + Service Unavailable - Not Logged On - Not Logged On + Not Logged On + Not Logged On - Pending - Pending + Pending + Pending - Encryption Failure - Encryption Failure + Encryption Failure + Encryption Failure - Insufficient Privilege - Insufficient Privilege + Insufficient Privilege + Insufficient Privilege - Limit Exceeded - Limit Exceeded + Limit Exceeded + Limit Exceeded - Revoked - Revoked + Revoked + Revoked - Expired - Expired + Expired + Expired - Already Redeemed - Already Redeemed + Already Redeemed + Already Redeemed - Duplicate Request - Duplicate Request + Duplicate Request + Duplicate Request - Already Owned - Already Owned + Already Owned + Already Owned - IP Not Found - IP Not Found + IP Not Found + IP Not Found - Persist Failed - Persist Failed + Persist Failed + Persist Failed - Locking Failed - Locking Failed + Locking Failed + Locking Failed - Logon Session Replaced - Logon Session Replaced + Logon Session Replaced + Logon Session Replaced - Connect Failed - Connect Failed + Connect Failed + Connect Failed - Handshake Failed - Handshake Failed + Handshake Failed + Handshake Failed - IO Failure - IO Failure + IO Failure + IO Failure - Remote Disconnect - Remote Disconnect + Remote Disconnect + Remote Disconnect - Shopping Cart Not Found - Shopping Cart Not Found + Shopping Cart Not Found + Shopping Cart Not Found - Blocked - Blocked + Blocked + Blocked - Ignored - Ignored + Ignored + Ignored - No Match - No Match + No Match + No Match - Account Disabled - Account Disabled + Account Disabled + Account Disabled - Service ReadOnly - Service ReadOnly + Service ReadOnly + Service ReadOnly - Account Not Featured - Account Not Featured + Account Not Featured + Account Not Featured - Administrator OK - Administrator OK + Administrator OK + Administrator OK - Content Version - Content Version + Content Version + Content Version - Try Another CM - Try Another CM + Try Another CM + Try Another CM - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Already Logged In Elsewhere + Already Logged In Elsewhere + Already Logged In Elsewhere - Suspended - Suspended + Suspended + Suspended - Cancelled - Cancelled + Cancelled + Cancelled - Data Corruption - Data Corruption + Data Corruption + Data Corruption - Disk Full - Disk Full + Disk Full + Disk Full - Remote Call Failed - Remote Call Failed + Remote Call Failed + Remote Call Failed - Password Unset - Password Unset + Password Unset + Password Unset - External Account Unlinked - External Account Unlinked + External Account Unlinked + External Account Unlinked - PSN Ticket Invalid - PSN Ticket Invalid + PSN Ticket Invalid + PSN Ticket Invalid - External Account Already Linked - External Account Already Linked + External Account Already Linked + External Account Already Linked - Remote File Conflict - Remote File Conflict + Remote File Conflict + Remote File Conflict - Illegal Password - Illegal Password + Illegal Password + Illegal Password - Same As Previous Value - Same As Previous Value + Same As Previous Value + Same As Previous Value - Account Logon Denied - Account Logon Denied + Account Logon Denied + Account Logon Denied - Cannot Use Old Password - Cannot Use Old Password + Cannot Use Old Password + Cannot Use Old Password - Invalid Login AuthCode - Invalid Login AuthCode + Invalid Login AuthCode + Invalid Login AuthCode - Account Logon Denied No Mail - Account Logon Denied No Mail + Account Logon Denied No Mail + Account Logon Denied No Mail - Hardware Not Capable Of IPT - Hardware Not Capable Of IPT + Hardware Not Capable Of IPT + Hardware Not Capable Of IPT - IPT Init Error - IPT Init Error + IPT Init Error + IPT Init Error - Parental Control Restricted - Parental Control Restricted + Parental Control Restricted + Parental Control Restricted - Facebook Query Error - Facebook Query Error + Facebook Query Error + Facebook Query Error - Expired Login Auth Code - Expired Login Auth Code + Expired Login Auth Code + Expired Login Auth Code - IP Login Restriction Failed - IP Login Restriction Failed + IP Login Restriction Failed + IP Login Restriction Failed - Account Locked Down - Account Locked Down + Account Locked Down + Account Locked Down - Account Logon Denied Verified Email Required - Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required - No MatchingURL - No MatchingURL + No MatchingURL + No MatchingURL - Bad Response - Bad Response + Bad Response + Bad Response - Require Password ReEntry - Require Password ReEntry + Require Password ReEntry + Require Password ReEntry - Value Out Of Range - Value Out Of Range + Value Out Of Range + Value Out Of Range - Unexpecte Error - Unexpecte Error + Unexpecte Error + Unexpecte Error - Disabled - Disabled + Disabled + Disabled - Invalid CEG Submission - Invalid CEG Submission + Invalid CEG Submission + Invalid CEG Submission - Restricted Device - Restricted Device + Restricted Device + Restricted Device - Region Locked - Region Locked + Region Locked + Region Locked - Rate Limit Exceeded - Rate Limit Exceeded + Rate Limit Exceeded + Rate Limit Exceeded - Account Login Denied Need Two Factor - Account Login Denied Need Two Factor + Account Login Denied Need Two Factor + Account Login Denied Need Two Factor - Item Deleted - Item Deleted + Item Deleted + Item Deleted - Account Login Denied Throttle - Account Login Denied Throttle + Account Login Denied Throttle + Account Login Denied Throttle - Two Factor Code Mismatch - Two Factor Code Mismatch + Two Factor Code Mismatch + Two Factor Code Mismatch - Two Factor Activation Code Mismatch - Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch - Account Associated To Multiple Partners - Account Associated To Multiple Partners + Account Associated To Multiple Partners + Account Associated To Multiple Partners - Not Modified - Not Modified + Not Modified + Not Modified - No Mobile Device - No Mobile Device + No Mobile Device + No Mobile Device - Time Not Synced - Time Not Synced + Time Not Synced + Time Not Synced - Sms Code Failed - Sms Code Failed + Sms Code Failed + Sms Code Failed - Account Limit Exceeded - Account Limit Exceeded + Account Limit Exceeded + Account Limit Exceeded - Account Activity Limit Exceeded - Account Activity Limit Exceeded + Account Activity Limit Exceeded + Account Activity Limit Exceeded - Phone Activity Limit Exceeded - Phone Activity Limit Exceeded + Phone Activity Limit Exceeded + Phone Activity Limit Exceeded - Refund To Wallet - Refund To Wallet + Refund To Wallet + Refund To Wallet - Email Send Failure - Email Send Failure + Email Send Failure + Email Send Failure - Not Settled - Not Settled + Not Settled + Not Settled - Need Captcha - Need Captcha + Need Captcha + Need Captcha - GSLT Denied - GSLT Denied + GSLT Denied + GSLT Denied - GS Owner Denied - GS Owner Denied + GS Owner Denied + GS Owner Denied - Invalid Item Type - Invalid Item Type + Invalid Item Type + Invalid Item Type - IP Banned - IP Banned + IP Banned + IP Banned - GSLT Expired - GSLT Expired + GSLT Expired + GSLT Expired - Insufficient Funds - Insufficient Funds + Insufficient Funds + Insufficient Funds - Too Many Pending - Too Many Pending + Too Many Pending + Too Many Pending - No Site Licenses Found - No Site Licenses Found + No Site Licenses Found + No Site Licenses Found - WG Network Send Exceeded - WG Network Send Exceeded + WG Network Send Exceeded + WG Network Send Exceeded - Account Not Friends - Account Not Friends + Account Not Friends + Account Not Friends - Limited User Account - Limited User Account + Limited User Account + Limited User Account - Cant Remove Item - Cant Remove Item + Cant Remove Item + Cant Remove Item - Account Deleted - Account Deleted + Account Deleted + Account Deleted - Existing User Cancelled License - Existing User Cancelled License + Existing User Cancelled License + Existing User Cancelled License - Community Cooldown - Community Cooldown + Community Cooldown + Community Cooldown - Status: - Status: + Status: + Status: - Upload Progress: - Upload Progress: + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - Create a Website Wallpaper - Create a Website Wallpaper + Create a Website Wallpaper + Create a Website Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - Tags - Tags + Tags + Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage - Save - Save + Save + Save - Saving... - Saving... + Saving... + Saving... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - Download complete! - Download complete! + Download complete! + Download complete! - - + + XMLNewsfeed - News & Patchnotes - News & Patchnotes + News & Patchnotes + News & Patchnotes - + diff --git a/ScreenPlay/translations/ScreenPlay_pl_PL.ts b/ScreenPlay/translations/ScreenPlay_pl_PL.ts index ac71cf1b..eb03ec9d 100644 --- a/ScreenPlay/translations/ScreenPlay_pl_PL.ts +++ b/ScreenPlay/translations/ScreenPlay_pl_PL.ts @@ -1,1945 +1,1953 @@ - + ColorPicker - Red - Czerwony + Red + Czerwony - Green - Zielony + Green + Zielony - Blue - Niebieski + Blue + Niebieski - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - R: + R: + R: - G: - G: + G: + G: - B: - B: + B: + B: - H: - H: + H: + H: - S: - S: + S: + S: - V: - V: + V: + V: - Alpha: - Alfa: + Alpha: + Alfa: - # - # + # + # - - + + Community - News - Aktualności + News + Aktualności - Wiki - Wiki + Wiki + Wiki - Forum - Forum + Forum + Forum - Contribute - Udziel się + Contribute + Udziel się - Steam Workshop - Warsztat Steam + Steam Workshop + Warsztat Steam - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - Otwórz w przeglądarce + Open in browser + Otwórz w przeglądarce - - + + CreateWallpaperInit - Import any video type - Importuj dowolny typ filmu + Import any video type + Importuj dowolny typ filmu - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - W zależności od konfiguracji Twojego urządzenia zalecamy przekonwertować tapetę do konkretnego kodeka wideo. Jeśli wydajność jest słaba w obu przypadkach, możesz wypróbować tapetę QML! Wspierane są następujące formaty wideo: + W zależności od konfiguracji Twojego urządzenia zalecamy przekonwertować tapetę do konkretnego kodeka wideo. Jeśli wydajność jest słaba w obu przypadkach, możesz wypróbować tapetę QML! Wspierane są następujące formaty wideo: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Ustaw preferowany kodek wideo: + Set your preffered video codec: + Ustaw preferowany kodek wideo: - Quality slider. Lower value means better quality. - Suwak jakości. Mniejsza wartość oznacza lepszą jakość. + Quality slider. Lower value means better quality. + Suwak jakości. Mniejsza wartość oznacza lepszą jakość. - Open Documentation - Otwórz dokumentację + Open Documentation + Otwórz dokumentację - Select file - Wybierz plik + Select file + Wybierz plik - - + + CreateWallpaperResult - An error occurred! - Wystąpił błąd! + An error occurred! + Wystąpił błąd! - Copy text to clipboard - Skopiuj tekst do schowka + Copy text to clipboard + Skopiuj tekst do schowka - Back to create and send an error report! - Wróć do tworzenia i wyślij raport o błędzie! + Back to create and send an error report! + Wróć do tworzenia i wyślij raport o błędzie! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - Generowanie obrazu podglądu... + Generating preview image... + Generowanie obrazu podglądu... - Generating preview thumbnail image... - Generowanie miniaturki podglądu... + Generating preview thumbnail image... + Generowanie miniaturki podglądu... - Generating 5 second preview video... - Generowanie 5-sekundowego podglądu wideo... + Generating 5 second preview video... + Generowanie 5-sekundowego podglądu wideo... - Generating preview gif... - Generowanie podglądu gif... + Generating preview gif... + Generowanie podglądu gif... - Converting Audio... - Konwertowanie dźwięku... + Converting Audio... + Konwertowanie dźwięku... - Converting Video... This can take some time! - Konwertowanie wideo... Może to zająć trochę czasu! + Converting Video... This can take some time! + Konwertowanie wideo... Może to zająć trochę czasu! - Converting Video ERROR! - BŁĄD konwertowania wideo! + Converting Video ERROR! + BŁĄD konwertowania wideo! - Analyse Video ERROR! - BŁĄD analizowania filmu! + Analyse Video ERROR! + BŁĄD analizowania filmu! - Convert a video to a wallpaper - Konwertuj film na tapetę + Convert a video to a wallpaper + Konwertuj film na tapetę - Generating preview video... - Generowanie podglądu wideo... + Generating preview video... + Generowanie podglądu wideo... - Name (required!) - Nazwa (wymagane!) + Name (required!) + Nazwa (wymagane!) - Description - Opis + Description + Opis - Youtube URL - Adres URL YouTube + Youtube URL + Adres URL YouTube - Abort - Przerwij + Abort + Przerwij - Save - Zapisz + Save + Zapisz - Save Wallpaper... - Zapisz tapetę... + Save Wallpaper... + Zapisz tapetę... - - + + DefaultVideoControls - Volume - Głośność + Volume + Głośność - Playback rate - Prędkość odtwarzania + Playback rate + Prędkość odtwarzania - Current Video Time - Moment filmu + Current Video Time + Moment filmu - Fill Mode - Fill Mode + Fill Mode + Fill Mode - Stretch - Rozciągnięcie + Stretch + Rozciągnięcie - Fill - Wypełnij + Fill + Wypełnij - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale_Down - Scale_Down + Scale_Down + Scale_Down - - + + FileSelector - Clear - Wyczyść + Clear + Wyczyść - Select File - Wybierz plik + Select File + Wybierz plik - Please choose a file - Należy wybrać plik + Please choose a file + Należy wybrać plik - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Pobierz ręcznie tapety i widżety z naszego forum. Jeśli chcesz pobierać treści z Warsztatu Steam, należy zainstalować ScreenPlay przez Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Pobierz ręcznie tapety i widżety z naszego forum. Jeśli chcesz pobierać treści z Warsztatu Steam, należy zainstalować ScreenPlay przez Steam. - Install Steam Version - Zainstaluj wersję Steam + Install Steam Version + Zainstaluj wersję Steam - Open In Browser - Otwórz w przeglądarce + Open In Browser + Otwórz w przeglądarce - - + + GifWallpaper - Import a Gif Wallpaper - Importuj tapetę Gif + Import a Gif Wallpaper + Importuj tapetę Gif - Drop a *.gif file here or use 'Select file' below. - Przeciągnij tutaj plik *.gif lub naciśnij 'Wybierz plik'. + Drop a *.gif file here or use 'Select file' below. + Przeciągnij tutaj plik *.gif lub naciśnij 'Wybierz plik'. - Select your gif - Wybierz swój gif + Select your gif + Wybierz swój gif - General - Ogólne + General + Ogólne - Wallpaper name - Nazwa tapety + Wallpaper name + Nazwa tapety - Created By - Utworzone przez + Created By + Utworzone przez - Tags - Znaczniki + Tags + Znaczniki - - + + HTMLWallpaper - Create a HTML Wallpaper - Utwórz tapetę HTML + Create a HTML Wallpaper + Utwórz tapetę HTML - General - Ogólne + General + Ogólne - Wallpaper name - Nazwa tapety + Wallpaper name + Nazwa tapety - Created By - Utworzone przez + Created By + Utworzone przez - Description - Opis + Description + Opis - License & Tags - Licencja i znaczniki + License & Tags + Licencja i znaczniki - Preview Image - Obraz podglądu + Preview Image + Obraz podglądu - - + + HTMLWidget - Create a HTML widget - Utwórz widżet HTML + Create a HTML widget + Utwórz widżet HTML - General - Ogólne + General + Ogólne - Widget name - Nazwa widżetu + Widget name + Nazwa widżetu - Created by - Utworzone przez + Created by + Utworzone przez - Tags - Znaczniki + Tags + Znaczniki - - + + HeadlineSection - Headline Section - Sekcja nagłówka + Headline Section + Sekcja nagłówka - - + + ImageSelector - Set your own preview image - Ustaw swój obraz podglądu + Set your own preview image + Ustaw swój obraz podglądu - Clear - Wyczyść + Clear + Wyczyść - Select Preview Image - Wybierz obraz podglądu + Select Preview Image + Wybierz obraz podglądu - - + + ImportWebmConvert - - + + - AnalyseVideo... - Analizowanie filmu... + AnalyseVideo... + Analizowanie filmu... - Generating preview image... - Generowanie obrazu podglądu... + Generating preview image... + Generowanie obrazu podglądu... - Generating preview thumbnail image... - Generowanie miniaturki podglądu... + Generating preview thumbnail image... + Generowanie miniaturki podglądu... - Generating 5 second preview video... - Generowanie 5-sekundowego podglądu wideo... + Generating 5 second preview video... + Generowanie 5-sekundowego podglądu wideo... - Generating preview gif... - Generowanie podglądu gif... + Generating preview gif... + Generowanie podglądu gif... - Converting Audio... - Konwertowanie dźwięku... + Converting Audio... + Konwertowanie dźwięku... - Converting Video... This can take some time! - Konwertowanie wideo... Może to zająć trochę czasu! + Converting Video... This can take some time! + Konwertowanie wideo... Może to zająć trochę czasu! - Converting Video ERROR! - BŁĄD konwertowania wideo! + Converting Video ERROR! + BŁĄD konwertowania wideo! - Analyse Video ERROR! - BŁĄD analizowania filmu! + Analyse Video ERROR! + BŁĄD analizowania filmu! - Import a video to a wallpaper - Importowanie filmu jako tapetę + Import a video to a wallpaper + Importowanie filmu jako tapetę - Generating preview video... - Generowanie podglądu wideo... + Generating preview video... + Generowanie podglądu wideo... - Name (required!) - Nazwa (wymagane!) + Name (required!) + Nazwa (wymagane!) - Description - Opis + Description + Opis - Youtube URL - Adres URL YouTube + Youtube URL + Adres URL YouTube - Abort - Przerwij + Abort + Przerwij - Save - Zapisz + Save + Zapisz - Save Wallpaper... - Zapisz tapetę... + Save Wallpaper... + Zapisz tapetę... - - + + ImportWebmInit - Import a .webm video - Importuj film .webm + Import a .webm video + Importuj film .webm - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Importowanie pliku webm pozwala na ominięcie czasochłonnej konwersji. Jeśli rezultat importera ScreenPlay po użyciu opcji 'importuj i konwertuj film (dowolny typ)' nie będzie dla Ciebie satysfakcjonujący, możesz przekonwertować film korzystając z bezpłatnego programu o otwartym źródle o nazwie HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + Importowanie pliku webm pozwala na ominięcie czasochłonnej konwersji. Jeśli rezultat importera ScreenPlay po użyciu opcji 'importuj i konwertuj film (dowolny typ)' nie będzie dla Ciebie satysfakcjonujący, możesz przekonwertować film korzystając z bezpłatnego programu o otwartym źródle o nazwie HandBrake! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Nieprawidłowy typ pliku. Należy wybrać plik VP8 lub VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Nieprawidłowy typ pliku. Należy wybrać plik VP8 lub VP9 (*.webm)! - Drop a *.webm file here or use 'Select file' below. - Przeciągnij tutaj plik *.webm lub naciśnij 'Wybierz plik'. + Drop a *.webm file here or use 'Select file' below. + Przeciągnij tutaj plik *.webm lub naciśnij 'Wybierz plik'. - Open Documentation - Otwórz dokumentację + Open Documentation + Otwórz dokumentację - Select file - Wybierz plik + Select file + Wybierz plik - - + + Importh264Convert - AnalyseVideo... - Analizowanie filmu... + AnalyseVideo... + Analizowanie filmu... - Generating preview image... - Generowanie obrazu podglądu... + Generating preview image... + Generowanie obrazu podglądu... - Generating preview thumbnail image... - Generowanie miniaturki podglądu... + Generating preview thumbnail image... + Generowanie miniaturki podglądu... - Generating 5 second preview video... - Generowanie 5-sekundowego podglądu wideo... + Generating 5 second preview video... + Generowanie 5-sekundowego podglądu wideo... - Generating preview gif... - Generowanie podglądu gif... + Generating preview gif... + Generowanie podglądu gif... - Converting Audio... - Konwertowanie dźwięku... + Converting Audio... + Konwertowanie dźwięku... - Converting Video... This can take some time! - Konwertowanie wideo... Może to zająć trochę czasu! + Converting Video... This can take some time! + Konwertowanie wideo... Może to zająć trochę czasu! - Converting Video ERROR! - BŁĄD konwertowania wideo! + Converting Video ERROR! + BŁĄD konwertowania wideo! - Analyse Video ERROR! - BŁĄD analizowania filmu! + Analyse Video ERROR! + BŁĄD analizowania filmu! - Import a video to a wallpaper - Importowanie filmu jako tapetę + Import a video to a wallpaper + Importowanie filmu jako tapetę - Generating preview video... - Generowanie podglądu wideo... + Generating preview video... + Generowanie podglądu wideo... - Name (required!) - Nazwa (wymagane!) + Name (required!) + Nazwa (wymagane!) - Description - Opis + Description + Opis - Youtube URL - Adres URL YouTube + Youtube URL + Adres URL YouTube - Abort - Przerwij + Abort + Przerwij - Save - Zapisz + Save + Zapisz - Save Wallpaper... - Zapisz tapetę... + Save Wallpaper... + Zapisz tapetę... - - + + Importh264Init - Import a .mp4 video - Importuj film .mp4 + Import a .mp4 video + Importuj film .mp4 - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 i nowsze mogą odtwarzać pliki *.mp4 (znane również jako h264). Może to poprawić wydajność na starszych systemach. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 i nowsze mogą odtwarzać pliki *.mp4 (znane również jako h264). Może to poprawić wydajność na starszych systemach. - Invalid file type. Must be valid h264 (*.mp4)! - Nieprawidłowy typ pliku. Należy użyć prawidłowy plik h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Nieprawidłowy typ pliku. Należy użyć prawidłowy plik h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Przeciągnij tutaj plik *.mp4 lub naciśnij 'Wybierz plik'. + Drop a *.mp4 file here or use 'Select file' below. + Przeciągnij tutaj plik *.mp4 lub naciśnij 'Wybierz plik'. - Open Documentation - Otwórz dokumentację + Open Documentation + Otwórz dokumentację - Select file - Wybierz plik + Select file + Wybierz plik - - + + Installed - - + + - Refreshing! - Odświeżanie! + Refreshing! + Odświeżanie! - Pull to refresh! - Przesuń, aby odświeżyć! + Pull to refresh! + Przesuń, aby odświeżyć! - Get more Wallpaper & Widgets via the Steam workshop! - Więcej tapet oraz widżetów dostępne przez Warsztat Steam! + Get more Wallpaper & Widgets via the Steam workshop! + Więcej tapet oraz widżetów dostępne przez Warsztat Steam! - Open containing folder - Otwórz lokalizację pliku + Open containing folder + Otwórz lokalizację pliku - Remove Item - Usuń element + Remove Item + Usuń element - Remove via Workshop - Usuń poprzez Warsztat + Remove via Workshop + Usuń poprzez Warsztat - Open Workshop Page - Otwórz stronę Warsztatu + Open Workshop Page + Otwórz stronę Warsztatu - Are you sure you want to delete this item? - Czy na pewno chcesz usunąć ten element? + Are you sure you want to delete this item? + Czy na pewno chcesz usunąć ten element? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Uzyskaj bezpłatne widżety i tapety poprzez Warsztat Steam + Get free Widgets and Wallpaper via the Steam Workshop + Uzyskaj bezpłatne widżety i tapety poprzez Warsztat Steam - Browse the Steam Workshop - Przeglądaj Warsztat Steam + Browse the Steam Workshop + Przeglądaj Warsztat Steam - - + + LicenseSelector - License - Licencja + License + Licencja - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Udostępnianie — możesz kopiować i rozpowszechniać ten materiał w dowolnym formacie na dowolnym nośniku danych. Dostosowywanie — możesz poprawiać, przekształcać oraz używać tego materiału jako bazy pod inne prace w dowolnym celu, nawet komercyjnie. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Udostępnianie — możesz kopiować i rozpowszechniać ten materiał w dowolnym formacie na dowolnym nośniku danych. Dostosowywanie — możesz poprawiać, przekształcać oraz używać tego materiału jako bazy pod inne prace w dowolnym celu, nawet komercyjnie. - You grant other to remix your work and change the license to their liking. - Pozwalasz innym osobom na przekształcanie Twojej treści oraz zmienianie licencji w razie potrzeby. + You grant other to remix your work and change the license to their liking. + Pozwalasz innym osobom na przekształcanie Twojej treści oraz zmienianie licencji w razie potrzeby. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Udostępnianie — możesz kopiować i rozpowszechniać ten materiał w dowolnym formacie na dowolnym nośniku danych. Dostosowywanie — możesz poprawiać, przekształcać oraz używać tego materiału jako bazy pod inne prace. Nie możesz używać tego materiału komercyjnie! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Udostępnianie — możesz kopiować i rozpowszechniać ten materiał w dowolnym formacie na dowolnym nośniku danych. Dostosowywanie — możesz poprawiać, przekształcać oraz używać tego materiału jako bazy pod inne prace. Nie możesz używać tego materiału komercyjnie! - You allow everyone to do anything with your work. - Pozwalasz każdemu robić cokolwiek chce z Twoją treścią. + You allow everyone to do anything with your work. + Pozwalasz każdemu robić cokolwiek chce z Twoją treścią. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - Pozwalasz innym osobom na przekształcanie Twojej treści, ale musi pozostać na licencji GPLv3. Zalecamy wybranie tej licencji dla wszystkich tapet napisanych kodem! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + Pozwalasz innym osobom na przekształcanie Twojej treści, ale musi pozostać na licencji GPLv3. Zalecamy wybranie tej licencji dla wszystkich tapet napisanych kodem! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - Zastrzegasz sobie wszystkie prawa i nie pozwalasz nikomu na przekształcanie tej treści (nie zalecane). Możesz użyć tej opcji, aby uznać prawa innych osób. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + Zastrzegasz sobie wszystkie prawa i nie pozwalasz nikomu na przekształcanie tej treści (nie zalecane). Możesz użyć tej opcji, aby uznać prawa innych osób. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - Konfiguracja Twojego monitora uległa zmianie! + Konfiguracja Twojego monitora uległa zmianie! Należy ponownie skonfigurować tapetę. - - + + Monitors - Wallpaper Configuration - Konfiguracja tapety + Wallpaper Configuration + Konfiguracja tapety - Remove selected - Usuń wybrane + Remove selected + Usuń wybrane - Wallpapers - Tapety + Wallpapers + Tapety - Widgets - Widżety + Widgets + Widżety - Remove all - Usuń wszystkie + Remove all + Usuń wszystkie - - + + MonitorsProjectSettingItem - Set color - Ustaw kolor + Set color + Ustaw kolor - Please choose a color - Należy wybrać kolor + Please choose a color + Należy wybrać kolor - - + + Navigation - All - Wszystko + All + Wszystko - Scenes - Sceny + Scenes + Sceny - Videos - Filmy + Videos + Filmy - Widgets - Widżety + Widgets + Widżety - Install Date Ascending - Data instalacji: rosnąco + Install Date Ascending + Data instalacji: rosnąco - Install Date Descending - Data instalacji: malejąco + Install Date Descending + Data instalacji: malejąco - Subscribed items: - Subskrybowane: + Subscribed items: + Subskrybowane: - Upload to the Steam Workshop - Prześlij do Warsztatu Steam + Upload to the Steam Workshop + Prześlij do Warsztatu Steam - Create - Utwórz + Create + Utwórz - Workshop - Warsztat + Workshop + Warsztat - Installed - Zainstalowane + Installed + Zainstalowane - Community - Społeczność + Community + Społeczność - Settings - Ustawienia + Settings + Ustawienia - Mute/Unmute all Wallpaper - Wycisz/Anuluj wyciszenie wszystkich tapet + Mute/Unmute all Wallpaper + Wycisz/Anuluj wyciszenie wszystkich tapet - Pause/Play all Wallpaper - Wstrzymaj/Odtwórz wszystkie tapety + Pause/Play all Wallpaper + Wstrzymaj/Odtwórz wszystkie tapety - Configure Wallpaper - Konfiguruj tapetę + Configure Wallpaper + Konfiguruj tapetę - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Czy na pewno chcesz zamknąć ScreenPlay? -Spowoduje to wyłączenie wszystkich tapet oraz widżetów. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - Ta funkcja wymaga uruchomienia Steam. steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Wstecz - Back - Wstecz + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - Należy zaakceptować Umowę użytkownika Steam + You Need to Agree To The Steam Subscriber Agreement First + Należy zaakceptować Umowę użytkownika Steam - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - DO AKTYWACJI WYMAGANE JEST POŁĄCZENIE Z INTERNETEM ORAZ BEZPŁATNE KONTO STEAM. Uwaga: Oferowany produkt podlega Twojej akceptacji Umowy użytkownika Steam (dalej "Umowa"). Należy aktywować ten produkt przez Internet rejestrując konto Steam oraz akceptująć Umowę. Odwiedź https://store.steampowered.com/subscriber_agreement/, aby zapoznać się z Umową przed zakupem. Jeśli nie zgadzasz się z warunkami Umowy, należy zwrócić tę grę w stanie nieotwartym do Twojego sprzedawcy zgodnie z jego warunkami zwrotów. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + DO AKTYWACJI WYMAGANE JEST POŁĄCZENIE Z INTERNETEM ORAZ BEZPŁATNE KONTO STEAM. Uwaga: Oferowany produkt podlega Twojej akceptacji Umowy użytkownika Steam (dalej "Umowa"). Należy aktywować ten produkt przez Internet rejestrując konto Steam oraz akceptująć Umowę. Odwiedź https://store.steampowered.com/subscriber_agreement/, aby zapoznać się z Umową przed zakupem. Jeśli nie zgadzasz się z warunkami Umowy, należy zwrócić tę grę w stanie nieotwartym do Twojego sprzedawcy zgodnie z jego warunkami zwrotów. - View The Steam Subscriber Agreement - Wyświetl Umowę użytkownika Steam + View The Steam Subscriber Agreement + Wyświetl Umowę użytkownika Steam - Accept Steam Workshop Agreement - Zaakceptuj Umowę użytkownika Warsztatu Steam + Accept Steam Workshop Agreement + Zaakceptuj Umowę użytkownika Warsztatu Steam - - + + QMLWallpaper - Create a QML Wallpaper - Utwórz tapetę QML + Create a QML Wallpaper + Utwórz tapetę QML - General - Ogólne + General + Ogólne - Wallpaper name - Nazwa tapety + Wallpaper name + Nazwa tapety - Created By - Utworzone przez + Created By + Utworzone przez - Description - Opis + Description + Opis - License & Tags - Licencja i znaczniki + License & Tags + Licencja i znaczniki - Preview Image - Obraz podglądu + Preview Image + Obraz podglądu - - + + QMLWidget - Create a QML widget - Utwórz widżet QML + Create a QML widget + Utwórz widżet QML - General - Ogólne + General + Ogólne - Widget name - Nazwa widżetu + Widget name + Nazwa widżetu - Created by - Utworzone przez + Created by + Utworzone przez - Tags - Znaczniki + Tags + Znaczniki - - + + SaveNotification - Profile saved successfully! - Profil zapisany pomyślnie! + Profile saved successfully! + Profil zapisany pomyślnie! - - + + ScreenPlayItem - NEW - NOWE + NEW + NOWE - - + + Search - Search for Wallpaper & Widgets - Szukaj tapet i widżetów + Search for Wallpaper & Widgets + Szukaj tapet i widżetów - - + + Settings - General - Ogólne + General + Ogólne - Autostart - Autostart + Autostart + Autostart - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay zostanie uruchomione przy starcie systemu Windows i ustawi dla Ciebie tapetę za każdym razem. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay zostanie uruchomione przy starcie systemu Windows i ustawi dla Ciebie tapetę za każdym razem. - High priority Autostart - Wysoki priorytet autostartu + High priority Autostart + Wysoki priorytet autostartu - This options grants ScreenPlay a higher autostart priority than other apps. - Ta opcja nadaje ScreenPlay wyższy priorytet autostartu w porównaniu do innych aplikacji. + This options grants ScreenPlay a higher autostart priority than other apps. + Ta opcja nadaje ScreenPlay wyższy priorytet autostartu w porównaniu do innych aplikacji. - Send anonymous crash reports and statistics - Wysyłaj anonimowe raporty o awariach oraz statystyki + Send anonymous crash reports and statistics + Wysyłaj anonimowe raporty o awariach oraz statystyki - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Pomóż nam poprawić działanie oraz stabilność ScreenPlay. Wszystkie zgromadzone dane są w pełni anonimowe i używane tylko w celach rozwoju! Korzystamy z <a href="https://sentry.io">sentry.io</a>, aby gromadzić i analizować te dane. <b>Ogromne podziękowania dla nich</b> za zapewnienie nam bezpłatnego wsparcia premium dla projektów o otwartym źródle! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Pomóż nam poprawić działanie oraz stabilność ScreenPlay. Wszystkie zgromadzone dane są w pełni anonimowe i używane tylko w celach rozwoju! Korzystamy z <a href="https://sentry.io">sentry.io</a>, aby gromadzić i analizować te dane. <b>Ogromne podziękowania dla nich</b> za zapewnienie nam bezpłatnego wsparcia premium dla projektów o otwartym źródle! - Set save location - Ustaw lokalizację zapisu + Set save location + Ustaw lokalizację zapisu - Set location - Ustaw lokalizację + Set location + Ustaw lokalizację - Your storage path is empty! - Ścieżka do pamięci jest pusta! + Your storage path is empty! + Ścieżka do pamięci jest pusta! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Uwaga: Zmiana tego katalogu nie ma wpływu na ścieżkę pobierania z warsztatu. ScreenPlay wspiera posiadanie tylko jednego folderu na treść! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Uwaga: Zmiana tego katalogu nie ma wpływu na ścieżkę pobierania z warsztatu. ScreenPlay wspiera posiadanie tylko jednego folderu na treść! - Language - Język + Language + Język - Set the ScreenPlay UI Language - Ustaw język interfejsu ScreenPlay + Set the ScreenPlay UI Language + Ustaw język interfejsu ScreenPlay - Theme - Motyw + Theme + Motyw - Switch dark/light theme - Zmień motyw na jasny/ciemny + Switch dark/light theme + Zmień motyw na jasny/ciemny - System Default - Systemowy + System Default + Systemowy - Dark - Ciemny + Dark + Ciemny - Light - Jasny + Light + Jasny - Performance - Wydajność + Performance + Wydajność - Pause wallpaper video rendering while another app is in the foreground - Wstrzymaj renderowanie tapety wideo, gdy inna aplikacja jest na pierwszym planie + Pause wallpaper video rendering while another app is in the foreground + Wstrzymaj renderowanie tapety wideo, gdy inna aplikacja jest na pierwszym planie - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Wyłączamy renderowanie wideo (dźwięk zostaje!) dla najlepszej wydajności. W przypadku problemów, możesz wyłączyć tę funkcję tutaj. Wymaga ponownego uruchomienia tapety! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + Wyłączamy renderowanie wideo (dźwięk zostaje!) dla najlepszej wydajności. W przypadku problemów, możesz wyłączyć tę funkcję tutaj. Wymaga ponownego uruchomienia tapety! - Default Fill Mode - Domyślny tryb wypełniania + Default Fill Mode + Domyślny tryb wypełniania - Set this property to define how the video is scaled to fit the target area. - To ustawienie określa, w jaki sposób film jest skalowany, aby dopasować go do obszaru docelowego. + Set this property to define how the video is scaled to fit the target area. + To ustawienie określa, w jaki sposób film jest skalowany, aby dopasować go do obszaru docelowego. - Stretch - Rozciągnięcie + Stretch + Rozciągnięcie - Fill - Wypełnienie + Fill + Wypełnienie - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - About - Informacje + About + Informacje - Thank you for using ScreenPlay - Dziękujemy za wypróbowanie ScreenPlay + Thank you for using ScreenPlay + Dziękujemy za wypróbowanie ScreenPlay - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Cześć, nazywam się Elias Steurer znany również jako Kelteseth i jestem programistą ScreenPlay. Dziękuję Ci za wypróbowanie mojego oprogramowania. Obserwuj mnie, aby być na bieżąco z aktualizacjami ScreenPlay: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Cześć, nazywam się Elias Steurer znany również jako Kelteseth i jestem programistą ScreenPlay. Dziękuję Ci za wypróbowanie mojego oprogramowania. Obserwuj mnie, aby być na bieżąco z aktualizacjami ScreenPlay: - Version - Wersja + Version + Wersja - Open Changelog - Wyświetl listę zmian + Open Changelog + Wyświetl listę zmian - Third Party Software - Oprogramowanie zewnętrzne + Third Party Software + Oprogramowanie zewnętrzne - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay nie powstałoby gdyby nie prace innych osób. Ogromne podziękowania dla: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay nie powstałoby gdyby nie prace innych osób. Ogromne podziękowania dla: - Licenses - Licencje + Licenses + Licencje - Logs - Rejestry + Logs + Rejestry - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Tutaj znajdziesz wyjaśnienie, jeśli ScreenPlay nie działa poprawnie. Wyświetla wszystkie rejestry oraz ostrzeżenia podczas działania. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + Tutaj znajdziesz wyjaśnienie, jeśli ScreenPlay nie działa poprawnie. Wyświetla wszystkie rejestry oraz ostrzeżenia podczas działania. - Show Logs - Pokaż rejestry + Show Logs + Pokaż rejestry - Data Protection - Ochrona danych + Data Protection + Ochrona danych - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Bardzo ostrożnie używamy danych w celu rozwoju ScreenPlay. Nie sprzedajemy oraz nie udostępniamy tych (anonimowych) informacji osobom trzecim! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + Bardzo ostrożnie używamy danych w celu rozwoju ScreenPlay. Nie sprzedajemy oraz nie udostępniamy tych (anonimowych) informacji osobom trzecim! - Privacy - Prywatność + Privacy + Prywatność - ScreenPlay Build Version + ScreenPlay Build Version - Wersja kompilacji ScreenPlay + Wersja kompilacji ScreenPlay - - + + SettingsExpander - Copy text to clipboard - Kopiuj tekst do schowka + Copy text to clipboard + Kopiuj tekst do schowka - - + + Sidebar - Tools Overview - Przegląd narzędzi + Tools Overview + Przegląd narzędzi - Video Import h264 (.mp4) - Importuj film h264 (.mp4) + Video Import h264 (.mp4) + Importuj film h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Importuj film VP8 lub VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Importuj film VP8 lub VP9 (.webm) - Video import (all types) - Importuj film (dowolny typ) + Video import (all types) + Importuj film (dowolny typ) - GIF Wallpaper - Tapeta GIF + GIF Wallpaper + Tapeta GIF - QML Wallpaper - Tapeta QML + QML Wallpaper + Tapeta QML - HTML5 Wallpaper - Tapeta HTML5 + HTML5 Wallpaper + Tapeta HTML5 - Website Wallpaper - Website Wallpaper + Website Wallpaper + Website Wallpaper - QML Widget - Widżet QML + QML Widget + Widżet QML - HTML Widget - Widżet HTML + HTML Widget + Widżet HTML - Set Wallpaper - Ustaw tapetę + Set Wallpaper + Ustaw tapetę - Set Widget - Ustaw widżet + Set Widget + Ustaw widżet - Headline - Nagłówek + Headline + Nagłówek - Select a Monitor to display the content - Wybierz monitor do wyświetlania treści + Select a Monitor to display the content + Wybierz monitor do wyświetlania treści - Set Volume - Ustaw głośność + Set Volume + Ustaw głośność - Fill Mode - Tryb wypełnienia + Fill Mode + Tryb wypełnienia - Stretch - Rozciągnięcie + Stretch + Rozciągnięcie - Fill - Wypełnienie + Fill + Wypełnienie - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - Size: - Rozmiar: + Size: + Rozmiar: - No description... - Brak opisu... + No description... + Brak opisu... - Click here if you like the content - Naciśnij tutaj, jeśli lubisz tę treść + Click here if you like the content + Naciśnij tutaj, jeśli lubisz tę treść - Click here if you do not like the content - Naciśnij tutaj, jeśli nie lubisz tej treści + Click here if you do not like the content + Naciśnij tutaj, jeśli nie lubisz tej treści - Subscribtions: - Subskrypcje: + Subscribtions: + Subskrypcje: - Open In Steam - Otwórz w Steam + Open In Steam + Otwórz w Steam - Subscribed! - Subskrybujesz! + Subscribed! + Subskrybujesz! - Subscribe - Subskrybuj + Subscribe + Subskrybuj - - + + StartInfo - Free tools to help you to create wallpaper - Bezpłatne narzędzia ułatwiające tworzenie tapety + Free tools to help you to create wallpaper + Bezpłatne narzędzia ułatwiające tworzenie tapety - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Poniżej znajdziesz dodatkowe narzędzia do tworzenia tapety poza tymi, które oferuje dla Ciebie ScreenPlay! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Poniżej znajdziesz dodatkowe narzędzia do tworzenia tapety poza tymi, które oferuje dla Ciebie ScreenPlay! - - + + SteamNotAvailable - Could not load steam integration! - Błąd wczytywania integracji Steam! + Could not load steam integration! + Błąd wczytywania integracji Steam! - - + + SteamProfile - Back - Wstecz + Back + Wstecz - Forward - Dalej + Forward + Dalej - - + + SteamWorkshopStartPage - Loading - Wczytywanie + Loading + Wczytywanie - Download now! - Pobierz teraz! + Download now! + Pobierz teraz! - Downloading... - Pobieranie... + Downloading... + Pobieranie... - Details - Szczegóły + Details + Szczegóły - Open In Steam - Otwórz w Steam + Open In Steam + Otwórz w Steam - Profile - Profil + Profile + Profil - Upload - Prześlij + Upload + Prześlij - Search for Wallpaper and Widgets... - Szukaj tapet i widżetów... + Search for Wallpaper and Widgets... + Szukaj tapet i widżetów... - Open Workshop in Steam - Otwórz Warsztat Steam + Open Workshop in Steam + Otwórz Warsztat Steam - Ranked By Vote - Ilość głosów + Ranked By Vote + Ilość głosów - Publication Date - Data publikacji + Publication Date + Data publikacji - Ranked By Trend - Popularność + Ranked By Trend + Popularność - Favorited By Friends - Lubiane przez znajomych + Favorited By Friends + Lubiane przez znajomych - Created By Friends - Utworzone przez znajomych + Created By Friends + Utworzone przez znajomych - Created By Followed Users - Utworzone przez obserwowane osoby + Created By Followed Users + Utworzone przez obserwowane osoby - Not Yet Rated - Bez ocen + Not Yet Rated + Bez ocen - Total VotesAsc - Ilość głosów: rosnąco + Total VotesAsc + Ilość głosów: rosnąco - Votes Up - Głosy pozytywne + Votes Up + Głosy pozytywne - Total Unique Subscriptions - Łącznie unikalnych subskrypcji + Total Unique Subscriptions + Łącznie unikalnych subskrypcji - Back - Wstecz + Back + Wstecz - Forward - Dalej + Forward + Dalej - - + + TagSelector - Save - Zapisz + Save + Zapisz - Add tag - Dodaj znacznik + Add tag + Dodaj znacznik - Cancel - Anuluj + Cancel + Anuluj - Add Tag - Dodaj znacznik + Add Tag + Dodaj znacznik - - + + TextField - Label - Etykieta + Label + Etykieta - *Required - *Wymagane + *Required + *Wymagane - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - naciśnij dwukrotnie, aby zmienić ustawienia. + ScreenPlay - Double click to change you settings. + ScreenPlay - naciśnij dwukrotnie, aby zmienić ustawienia. - Open ScreenPlay - Otwórz ScreenPlay + Open ScreenPlay + Otwórz ScreenPlay - Mute all - Wycisz wszystkie + Mute all + Wycisz wszystkie - Unmute all - Unmute all + Unmute all + Unmute all - Pause all - Wstrzymaj wszystkie + Pause all + Wstrzymaj wszystkie - Play all - Odtwórz wszystkie + Play all + Odtwórz wszystkie - Quit - Wyjdź + Quit + Wyjdź - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Prześlij tapetę/widżet do Steam + Upload Wallpaper/Widgets to Steam + Prześlij tapetę/widżet do Steam - Abort - Przerwij + Abort + Przerwij - Upload Selected Projects - Prześlij wybrane projekty + Upload Selected Projects + Prześlij wybrane projekty - Finish - Zakończ + Finish + Zakończ - - + + UploadProjectBigItem - Type: - Typ: + Type: + Typ: - Open Folder - Otwórz folder + Open Folder + Otwórz folder - Invalid Project! - Nieprawidłowy projekt! + Invalid Project! + Nieprawidłowy projekt! - - + + UploadProjectItem - Fail - Niepowodzenie + Fail + Niepowodzenie - No Connection - Brak połączenia + No Connection + Brak połączenia - Invalid Password - Nieprawidłowe hasło + Invalid Password + Nieprawidłowe hasło - Logged In Elsewhere - Zalogowano w innym miejscu + Logged In Elsewhere + Zalogowano w innym miejscu - Invalid Protocol Version - Nieprawidłowa wersja protokołu + Invalid Protocol Version + Nieprawidłowa wersja protokołu - Invalid Param - Nieprawidłowy parametr + Invalid Param + Nieprawidłowy parametr - File Not Found - Nie znaleziono pliku + File Not Found + Nie znaleziono pliku - Busy - Zajęte + Busy + Zajęte - Invalid State - Invalid State + Invalid State + Invalid State - Invalid Name - Nieprawidłowa nazwa + Invalid Name + Nieprawidłowa nazwa - Invalid Email - Nieprawidłowy adres e-mail + Invalid Email + Nieprawidłowy adres e-mail - Duplicate Name - Duplikat nazwy + Duplicate Name + Duplikat nazwy - Access Denied - Odmowa dostępu + Access Denied + Odmowa dostępu - Timeout - Upłynął limit czasu + Timeout + Upłynął limit czasu - Banned - Zbanowano + Banned + Zbanowano - Account Not Found - Nie znaleziono konta + Account Not Found + Nie znaleziono konta - Invalid SteamID - Nieprawidłowe SteamID + Invalid SteamID + Nieprawidłowe SteamID - Service Unavailable - Usługa jest niedostępna + Service Unavailable + Usługa jest niedostępna - Not Logged On - Nie zalogowano + Not Logged On + Nie zalogowano - Pending - Pending + Pending + Pending - Encryption Failure - Błąd szyfrowania + Encryption Failure + Błąd szyfrowania - Insufficient Privilege - Brak uprawnień + Insufficient Privilege + Brak uprawnień - Limit Exceeded - Limit Exceeded + Limit Exceeded + Limit Exceeded - Revoked - Revoked + Revoked + Revoked - Expired - Expired + Expired + Expired - Already Redeemed - Already Redeemed + Already Redeemed + Already Redeemed - Duplicate Request - Duplicate Request + Duplicate Request + Duplicate Request - Already Owned - Already Owned + Already Owned + Already Owned - IP Not Found - IP Not Found + IP Not Found + IP Not Found - Persist Failed - Persist Failed + Persist Failed + Persist Failed - Locking Failed - Locking Failed + Locking Failed + Locking Failed - Logon Session Replaced - Logon Session Replaced + Logon Session Replaced + Logon Session Replaced - Connect Failed - Connect Failed + Connect Failed + Connect Failed - Handshake Failed - Handshake Failed + Handshake Failed + Handshake Failed - IO Failure - IO Failure + IO Failure + IO Failure - Remote Disconnect - Remote Disconnect + Remote Disconnect + Remote Disconnect - Shopping Cart Not Found - Shopping Cart Not Found + Shopping Cart Not Found + Shopping Cart Not Found - Blocked - Zablokowane + Blocked + Zablokowane - Ignored - Ignorowane + Ignored + Ignorowane - No Match - No Match + No Match + No Match - Account Disabled - Account Disabled + Account Disabled + Account Disabled - Service ReadOnly - Service ReadOnly + Service ReadOnly + Service ReadOnly - Account Not Featured - Account Not Featured + Account Not Featured + Account Not Featured - Administrator OK - Administrator OK + Administrator OK + Administrator OK - Content Version - Wersja treści + Content Version + Wersja treści - Try Another CM - Try Another CM + Try Another CM + Try Another CM - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Already Logged In Elsewhere + Already Logged In Elsewhere + Already Logged In Elsewhere - Suspended - Wstrzymane + Suspended + Wstrzymane - Cancelled - Anulowane + Cancelled + Anulowane - Data Corruption - Data Corruption + Data Corruption + Data Corruption - Disk Full - Brak miejsca na dysku + Disk Full + Brak miejsca na dysku - Remote Call Failed - Remote Call Failed + Remote Call Failed + Remote Call Failed - Password Unset - Nie ustawiono hasła + Password Unset + Nie ustawiono hasła - External Account Unlinked - Odłączone konto zewnętrzne + External Account Unlinked + Odłączone konto zewnętrzne - PSN Ticket Invalid - PSN Ticket Invalid + PSN Ticket Invalid + PSN Ticket Invalid - External Account Already Linked - Konto zewnętrzne już połączone + External Account Already Linked + Konto zewnętrzne już połączone - Remote File Conflict - Remote File Conflict + Remote File Conflict + Remote File Conflict - Illegal Password - Niedopuszczalne hasło + Illegal Password + Niedopuszczalne hasło - Same As Previous Value - Same As Previous Value + Same As Previous Value + Same As Previous Value - Account Logon Denied - Account Logon Denied + Account Logon Denied + Account Logon Denied - Cannot Use Old Password - Nie można użyć poprzedniego hasła + Cannot Use Old Password + Nie można użyć poprzedniego hasła - Invalid Login AuthCode - Nieprawidłowe logowanie AuthCode + Invalid Login AuthCode + Nieprawidłowe logowanie AuthCode - Account Logon Denied No Mail - Account Logon Denied No Mail + Account Logon Denied No Mail + Account Logon Denied No Mail - Hardware Not Capable Of IPT - Hardware Not Capable Of IPT + Hardware Not Capable Of IPT + Hardware Not Capable Of IPT - IPT Init Error - IPT Init Error + IPT Init Error + IPT Init Error - Parental Control Restricted - Parental Control Restricted + Parental Control Restricted + Parental Control Restricted - Facebook Query Error - Facebook Query Error + Facebook Query Error + Facebook Query Error - Expired Login Auth Code - Expired Login Auth Code + Expired Login Auth Code + Expired Login Auth Code - IP Login Restriction Failed - IP Login Restriction Failed + IP Login Restriction Failed + IP Login Restriction Failed - Account Locked Down - Account Locked Down + Account Locked Down + Account Locked Down - Account Logon Denied Verified Email Required - Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required - No MatchingURL - No MatchingURL + No MatchingURL + No MatchingURL - Bad Response - Bad Response + Bad Response + Bad Response - Require Password ReEntry - Require Password ReEntry + Require Password ReEntry + Require Password ReEntry - Value Out Of Range - Value Out Of Range + Value Out Of Range + Value Out Of Range - Unexpecte Error - Unexpecte Error + Unexpecte Error + Unexpecte Error - Disabled - Disabled + Disabled + Disabled - Invalid CEG Submission - Invalid CEG Submission + Invalid CEG Submission + Invalid CEG Submission - Restricted Device - Restricted Device + Restricted Device + Restricted Device - Region Locked - Region Locked + Region Locked + Region Locked - Rate Limit Exceeded - Rate Limit Exceeded + Rate Limit Exceeded + Rate Limit Exceeded - Account Login Denied Need Two Factor - Account Login Denied Need Two Factor + Account Login Denied Need Two Factor + Account Login Denied Need Two Factor - Item Deleted - Item Deleted + Item Deleted + Item Deleted - Account Login Denied Throttle - Account Login Denied Throttle + Account Login Denied Throttle + Account Login Denied Throttle - Two Factor Code Mismatch - Błędny kod uwierzytelniania dwuskładnikowego + Two Factor Code Mismatch + Błędny kod uwierzytelniania dwuskładnikowego - Two Factor Activation Code Mismatch - Błędny kod aktywacyjny uwierzytelniania dwuskładnikowego + Two Factor Activation Code Mismatch + Błędny kod aktywacyjny uwierzytelniania dwuskładnikowego - Account Associated To Multiple Partners - Account Associated To Multiple Partners + Account Associated To Multiple Partners + Account Associated To Multiple Partners - Not Modified - Not Modified + Not Modified + Not Modified - No Mobile Device - Brak urządzenia mobilnego + No Mobile Device + Brak urządzenia mobilnego - Time Not Synced - Time Not Synced + Time Not Synced + Time Not Synced - Sms Code Failed - Błąd wysyłania kodu SMS + Sms Code Failed + Błąd wysyłania kodu SMS - Account Limit Exceeded - Account Limit Exceeded + Account Limit Exceeded + Account Limit Exceeded - Account Activity Limit Exceeded - Account Activity Limit Exceeded + Account Activity Limit Exceeded + Account Activity Limit Exceeded - Phone Activity Limit Exceeded - Phone Activity Limit Exceeded + Phone Activity Limit Exceeded + Phone Activity Limit Exceeded - Refund To Wallet - Refund To Wallet + Refund To Wallet + Refund To Wallet - Email Send Failure - Email Send Failure + Email Send Failure + Email Send Failure - Not Settled - Not Settled + Not Settled + Not Settled - Need Captcha - Wymagana Captcha + Need Captcha + Wymagana Captcha - GSLT Denied - GSLT Denied + GSLT Denied + GSLT Denied - GS Owner Denied - GS Owner Denied + GS Owner Denied + GS Owner Denied - Invalid Item Type - Invalid Item Type + Invalid Item Type + Invalid Item Type - IP Banned - Zbanowany adres IP + IP Banned + Zbanowany adres IP - GSLT Expired - GSLT Expired + GSLT Expired + GSLT Expired - Insufficient Funds - Insufficient Funds + Insufficient Funds + Insufficient Funds - Too Many Pending - Too Many Pending + Too Many Pending + Too Many Pending - No Site Licenses Found - No Site Licenses Found + No Site Licenses Found + No Site Licenses Found - WG Network Send Exceeded - WG Network Send Exceeded + WG Network Send Exceeded + WG Network Send Exceeded - Account Not Friends - Account Not Friends + Account Not Friends + Account Not Friends - Limited User Account - Limited User Account + Limited User Account + Limited User Account - Cant Remove Item - Cant Remove Item + Cant Remove Item + Cant Remove Item - Account Deleted - Account Deleted + Account Deleted + Account Deleted - Existing User Cancelled License - Existing User Cancelled License + Existing User Cancelled License + Existing User Cancelled License - Community Cooldown - Community Cooldown + Community Cooldown + Community Cooldown - Status: - Status: + Status: + Status: - Upload Progress: - Postęp przesyłania: + Upload Progress: + Postęp przesyłania: - - + + WebsiteWallpaper - Create a Website Wallpaper - Create a Website Wallpaper + Create a Website Wallpaper + Create a Website Wallpaper - General - Ogólne + General + Ogólne - Wallpaper name - Nazwa tapety + Wallpaper name + Nazwa tapety - Created By - Utworzone przez + Created By + Utworzone przez - Description - Opis + Description + Opis - Tags - Znaczniki + Tags + Znaczniki - Preview Image - Obraz podglądu + Preview Image + Obraz podglądu - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Czy na pewno chcesz zamknąć ScreenPlay? +Spowoduje to wyłączenie wszystkich tapet oraz widżetów. + + + WizardPage - Save - Zapisz + Save + Zapisz - Saving... - Zapisywanie... + Saving... + Zapisywanie... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Pomyślnie subskrybujesz element z Warsztatu! + Successfully subscribed to Workshop Item! + Pomyślnie subskrybujesz element z Warsztatu! - Download complete! - Pobieranie ukończone! + Download complete! + Pobieranie ukończone! - - + + XMLNewsfeed - News & Patchnotes - Aktualności i lista zmian + News & Patchnotes + Aktualności i lista zmian - + diff --git a/ScreenPlay/translations/ScreenPlay_pt_BR.ts b/ScreenPlay/translations/ScreenPlay_pt_BR.ts index 3177e467..33d696b2 100644 --- a/ScreenPlay/translations/ScreenPlay_pt_BR.ts +++ b/ScreenPlay/translations/ScreenPlay_pt_BR.ts @@ -1,1945 +1,1953 @@ - + ColorPicker - Red - Vermelho + Red + Vermelho - Green - Verde + Green + Verde - Blue - Azul + Blue + Azul - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - R: + R: + R: - G: - G: + G: + G: - B: - B: + B: + B: - H: - H: + H: + H: - S: - S: + S: + S: - V: - V: + V: + V: - Alpha: - Alpha: + Alpha: + Alpha: - # - # + # + # - - + + Community - News - Novidades + News + Novidades - Wiki - Wiki + Wiki + Wiki - Forum - Fórum + Forum + Fórum - Contribute - Contribuir + Contribute + Contribuir - Steam Workshop - Oficina Steam + Steam Workshop + Oficina Steam - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - Abrir no navegador + Open in browser + Abrir no navegador - - + + CreateWallpaperInit - Import any video type - Importar qualquer tipo de vídeo + Import any video type + Importar qualquer tipo de vídeo - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Dependendo da configuração do seu PC, é melhor converter seu papel de parede para um codec de vídeo específico. Se ambos tiverem desempenho ruim, você também pode tentar um papel de parede QML! Formatos de vídeo suportados são: + Dependendo da configuração do seu PC, é melhor converter seu papel de parede para um codec de vídeo específico. Se ambos tiverem desempenho ruim, você também pode tentar um papel de parede QML! Formatos de vídeo suportados são: *. p4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Defina o codec de vídeo de sua escolha: + Set your preffered video codec: + Defina o codec de vídeo de sua escolha: - Quality slider. Lower value means better quality. - Controle de qualidade. Menor valor significa melhor qualidade. + Quality slider. Lower value means better quality. + Controle de qualidade. Menor valor significa melhor qualidade. - Open Documentation - Abrir documentação + Open Documentation + Abrir documentação - Select file - Selecionar arquivo + Select file + Selecionar arquivo - - + + CreateWallpaperResult - An error occurred! - Um erro ocorreu! + An error occurred! + Um erro ocorreu! - Copy text to clipboard - Copiar texto para a área de transferência + Copy text to clipboard + Copiar texto para a área de transferência - Back to create and send an error report! - Voltar para criar e enviar um relatório de erros! + Back to create and send an error report! + Voltar para criar e enviar um relatório de erros! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - Gerando pré-visualização... + Generating preview image... + Gerando pré-visualização... - Generating preview thumbnail image... - Gerando pré-visualização de miniaturas... + Generating preview thumbnail image... + Gerando pré-visualização de miniaturas... - Generating 5 second preview video... - Gerando pré-visualização de vídeo de 5 segundos... + Generating 5 second preview video... + Gerando pré-visualização de vídeo de 5 segundos... - Generating preview gif... - Gerando gif de pré-visualização... + Generating preview gif... + Gerando gif de pré-visualização... - Converting Audio... - Convertendo áudio... + Converting Audio... + Convertendo áudio... - Converting Video... This can take some time! - Convertendo vídeo... Isso pode levar algum tempo! + Converting Video... This can take some time! + Convertendo vídeo... Isso pode levar algum tempo! - Converting Video ERROR! - Erro de conversão de vídeo! + Converting Video ERROR! + Erro de conversão de vídeo! - Analyse Video ERROR! - Erro de análise de vídeo! + Analyse Video ERROR! + Erro de análise de vídeo! - Convert a video to a wallpaper - Converter um vídeo para um plano de fundo + Convert a video to a wallpaper + Converter um vídeo para um plano de fundo - Generating preview video... - Gerando vídeo de pré-visualização... + Generating preview video... + Gerando vídeo de pré-visualização... - Name (required!) - Nome (obrigatório!) + Name (required!) + Nome (obrigatório!) - Description - Descrição + Description + Descrição - Youtube URL - URL do Youtube + Youtube URL + URL do Youtube - Abort - Abortar + Abort + Abortar - Save - Salvar + Save + Salvar - Save Wallpaper... - Salvar o papel de parede... + Save Wallpaper... + Salvar o papel de parede... - - + + DefaultVideoControls - Volume - Volume + Volume + Volume - Playback rate - Taxa de reprodução + Playback rate + Taxa de reprodução - Current Video Time - Tempo atual do vídeo + Current Video Time + Tempo atual do vídeo - Fill Mode - Modo de preenchimento + Fill Mode + Modo de preenchimento - Stretch - Esticar + Stretch + Esticar - Fill - Preencher + Fill + Preencher - Contain - Contém + Contain + Contém - Cover - Capa + Cover + Capa - Scale_Down - Escalonar_Abaixo + Scale_Down + Escalonar_Abaixo - - + + FileSelector - Clear - Limpar + Clear + Limpar - Select File - Selecionar arquivo + Select File + Selecionar arquivo - Please choose a file - Por favor, escolha um arquivo + Please choose a file + Por favor, escolha um arquivo - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Baixe papéis de parede e widgets manualmente através de nossos fóruns. Se você quiser baixar conteúdo da Oficina Steam, você precisa instalar ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Baixe papéis de parede e widgets manualmente através de nossos fóruns. Se você quiser baixar conteúdo da Oficina Steam, você precisa instalar ScreenPlay via Steam. - Install Steam Version - Install Steam Version + Install Steam Version + Install Steam Version - Open In Browser - Open In Browser + Open In Browser + Open In Browser - - + + GifWallpaper - Import a Gif Wallpaper - Import a Gif Wallpaper + Import a Gif Wallpaper + Import a Gif Wallpaper - Drop a *.gif file here or use 'Select file' below. - Drop a *.gif file here or use 'Select file' below. + Drop a *.gif file here or use 'Select file' below. + Drop a *.gif file here or use 'Select file' below. - Select your gif - Select your gif + Select your gif + Select your gif - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Tags - Tags + Tags + Tags - - + + HTMLWallpaper - Create a HTML Wallpaper - Create a HTML Wallpaper + Create a HTML Wallpaper + Create a HTML Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - License & Tags - License & Tags + License & Tags + License & Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + HTMLWidget - Create a HTML widget - Create a HTML widget + Create a HTML widget + Create a HTML widget - General - General + General + General - Widget name - Widget name + Widget name + Widget name - Created by - Created by + Created by + Created by - Tags - Tags + Tags + Tags - - + + HeadlineSection - Headline Section - Headline Section + Headline Section + Headline Section - - + + ImageSelector - Set your own preview image - Set your own preview image + Set your own preview image + Set your own preview image - Clear - Clear + Clear + Clear - Select Preview Image - Select Preview Image + Select Preview Image + Select Preview Image - - + + ImportWebmConvert - - + + - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + ImportWebmInit - Import a .webm video - Import a .webm video + Import a .webm video + Import a .webm video - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Drop a *.webm file here or use 'Select file' below. - Drop a *.webm file here or use 'Select file' below. + Drop a *.webm file here or use 'Select file' below. + Drop a *.webm file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Selecionar arquivo + Select file + Selecionar arquivo - - + + Importh264Convert - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + Importh264Init - Import a .mp4 video - Import a .mp4 video + Import a .mp4 video + Import a .mp4 video - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - Invalid file type. Must be valid h264 (*.mp4)! - Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Installed - - + + - Refreshing! - Atualizando! + Refreshing! + Atualizando! - Pull to refresh! - Pull to refresh! + Pull to refresh! + Pull to refresh! - Get more Wallpaper & Widgets via the Steam workshop! - Obtenha mais papéis de parede e Widgets através da Oficina Steam! + Get more Wallpaper & Widgets via the Steam workshop! + Obtenha mais papéis de parede e Widgets através da Oficina Steam! - Open containing folder - Abrir a pasta + Open containing folder + Abrir a pasta - Remove Item - Remover Item + Remove Item + Remover Item - Remove via Workshop - Remover da Oficina + Remove via Workshop + Remover da Oficina - Open Workshop Page - Abrir Página da Oficina + Open Workshop Page + Abrir Página da Oficina - Are you sure you want to delete this item? - Tem certeza que deseja remover este item? + Are you sure you want to delete this item? + Tem certeza que deseja remover este item? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Obtenha widgets e papéis de parede gratuitos através da Oficina Steam + Get free Widgets and Wallpaper via the Steam Workshop + Obtenha widgets e papéis de parede gratuitos através da Oficina Steam - Browse the Steam Workshop - Navegar na Oficina Steam + Browse the Steam Workshop + Navegar na Oficina Steam - - + + LicenseSelector - License - Licença + License + Licença - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Share — copie e redistribua o material por qualquer meio ou formato. Adapte — modifique, transforme e desenvolva o material para qualquer propósito, mesmo comercialmente. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Share — copie e redistribua o material por qualquer meio ou formato. Adapte — modifique, transforme e desenvolva o material para qualquer propósito, mesmo comercialmente. - You grant other to remix your work and change the license to their liking. - Você permite que outros modifiquem seu trabalho e alterem a licença livremente. + You grant other to remix your work and change the license to their liking. + Você permite que outros modifiquem seu trabalho e alterem a licença livremente. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Share — copie e redistribua o material por qualquer meio ou formato. Adapte — modifique, transforme e desenvolva o material. Você não está permitido a usar isso comercialmente! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Share — copie e redistribua o material por qualquer meio ou formato. Adapte — modifique, transforme e desenvolva o material. Você não está permitido a usar isso comercialmente! - You allow everyone to do anything with your work. - Você permite que todos façam qualquer coisa com seu trabalho. + You allow everyone to do anything with your work. + Você permite que todos façam qualquer coisa com seu trabalho. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - - + + Monitors - Wallpaper Configuration - Wallpaper Configuration + Wallpaper Configuration + Wallpaper Configuration - Remove selected - Remove selected + Remove selected + Remove selected - Wallpapers - Wallpapers + Wallpapers + Wallpapers - Widgets - Widgets + Widgets + Widgets - Remove all - Remove all + Remove all + Remove all - - + + MonitorsProjectSettingItem - Set color - Set color + Set color + Set color - Please choose a color - Please choose a color + Please choose a color + Please choose a color - - + + Navigation - All - All + All + All - Scenes - Scenes + Scenes + Scenes - Videos - Videos + Videos + Videos - Widgets - Widgets + Widgets + Widgets - Install Date Ascending - Install Date Ascending + Install Date Ascending + Install Date Ascending - Install Date Descending - Install Date Descending + Install Date Descending + Install Date Descending - Subscribed items: - Subscribed items: + Subscribed items: + Subscribed items: - Upload to the Steam Workshop - Upload to the Steam Workshop + Upload to the Steam Workshop + Upload to the Steam Workshop - Create - Create + Create + Create - Workshop - Workshop + Workshop + Workshop - Installed - Installed + Installed + Installed - Community - Community + Community + Community - Settings - Settings + Settings + Settings - Mute/Unmute all Wallpaper - Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper - Pause/Play all Wallpaper - Pause/Play all Wallpaper + Pause/Play all Wallpaper + Pause/Play all Wallpaper - Configure Wallpaper - Configure Wallpaper + Configure Wallpaper + Configure Wallpaper - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Back - Back - Back + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - You Need to Agree To The Steam Subscriber Agreement First + You Need to Agree To The Steam Subscriber Agreement First + You Need to Agree To The Steam Subscriber Agreement First - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - View The Steam Subscriber Agreement - View The Steam Subscriber Agreement + View The Steam Subscriber Agreement + View The Steam Subscriber Agreement - Accept Steam Workshop Agreement - Accept Steam Workshop Agreement + Accept Steam Workshop Agreement + Accept Steam Workshop Agreement - - + + QMLWallpaper - Create a QML Wallpaper - Create a QML Wallpaper + Create a QML Wallpaper + Create a QML Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - License & Tags - License & Tags + License & Tags + License & Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + QMLWidget - Create a QML widget - Create a QML widget + Create a QML widget + Create a QML widget - General - General + General + General - Widget name - Widget name + Widget name + Widget name - Created by - Created by + Created by + Created by - Tags - Tags + Tags + Tags - - + + SaveNotification - Profile saved successfully! - Profile saved successfully! + Profile saved successfully! + Profile saved successfully! - - + + ScreenPlayItem - NEW - NEW + NEW + NEW - - + + Search - Search for Wallpaper & Widgets - Search for Wallpaper & Widgets + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets - - + + Settings - General - General + General + General - Autostart - Autostart + Autostart + Autostart - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. - High priority Autostart - High priority Autostart + High priority Autostart + High priority Autostart - This options grants ScreenPlay a higher autostart priority than other apps. - This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. - Send anonymous crash reports and statistics - Send anonymous crash reports and statistics + Send anonymous crash reports and statistics + Send anonymous crash reports and statistics - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Set save location - Set save location + Set save location + Set save location - Set location - Set location + Set location + Set location - Your storage path is empty! - Your storage path is empty! + Your storage path is empty! + Your storage path is empty! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Language - Language + Language + Language - Set the ScreenPlay UI Language - Set the ScreenPlay UI Language + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language - Theme - Theme + Theme + Theme - Switch dark/light theme - Switch dark/light theme + Switch dark/light theme + Switch dark/light theme - System Default - System Default + System Default + System Default - Dark - Dark + Dark + Dark - Light - Light + Light + Light - Performance - Performance + Performance + Performance - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Default Fill Mode - Default Fill Mode + Default Fill Mode + Default Fill Mode - Set this property to define how the video is scaled to fit the target area. - Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - About - About + About + About - Thank you for using ScreenPlay - Thank you for using ScreenPlay + Thank you for using ScreenPlay + Thank you for using ScreenPlay - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Version - Version + Version + Version - Open Changelog - Open Changelog + Open Changelog + Open Changelog - Third Party Software - Third Party Software + Third Party Software + Third Party Software - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - Licenses - Licenses + Licenses + Licenses - Logs - Logs + Logs + Logs - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Show Logs - Show Logs + Show Logs + Show Logs - Data Protection - Data Protection + Data Protection + Data Protection - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Privacy - Privacy + Privacy + Privacy - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay Build Version - - + + SettingsExpander - Copy text to clipboard - Copy text to clipboard + Copy text to clipboard + Copy text to clipboard - - + + Sidebar - Tools Overview - Tools Overview + Tools Overview + Tools Overview - Video Import h264 (.mp4) - Video Import h264 (.mp4) + Video Import h264 (.mp4) + Video Import h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) - Video import (all types) - Video import (all types) + Video import (all types) + Video import (all types) - GIF Wallpaper - GIF Wallpaper + GIF Wallpaper + GIF Wallpaper - QML Wallpaper - QML Wallpaper + QML Wallpaper + QML Wallpaper - HTML5 Wallpaper - HTML5 Wallpaper + HTML5 Wallpaper + HTML5 Wallpaper - Website Wallpaper - Website Wallpaper + Website Wallpaper + Website Wallpaper - QML Widget - QML Widget + QML Widget + QML Widget - HTML Widget - HTML Widget + HTML Widget + HTML Widget - Set Wallpaper - Set Wallpaper + Set Wallpaper + Set Wallpaper - Set Widget - Set Widget + Set Widget + Set Widget - Headline - Headline + Headline + Headline - Select a Monitor to display the content - Select a Monitor to display the content + Select a Monitor to display the content + Select a Monitor to display the content - Set Volume - Set Volume + Set Volume + Set Volume - Fill Mode - Fill Mode + Fill Mode + Fill Mode - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - Size: - Size: + Size: + Size: - No description... - No description... + No description... + No description... - Click here if you like the content - Click here if you like the content + Click here if you like the content + Click here if you like the content - Click here if you do not like the content - Click here if you do not like the content + Click here if you do not like the content + Click here if you do not like the content - Subscribtions: - Subscribtions: + Subscribtions: + Subscribtions: - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Subscribed! - Subscribed! + Subscribed! + Subscribed! - Subscribe - Subscribe + Subscribe + Subscribe - - + + StartInfo - Free tools to help you to create wallpaper - Free tools to help you to create wallpaper + Free tools to help you to create wallpaper + Free tools to help you to create wallpaper - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - - + + SteamNotAvailable - Could not load steam integration! - Could not load steam integration! + Could not load steam integration! + Could not load steam integration! - - + + SteamProfile - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + SteamWorkshopStartPage - Loading - Loading + Loading + Loading - Download now! - Download now! + Download now! + Download now! - Downloading... - Downloading... + Downloading... + Downloading... - Details - Details + Details + Details - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Profile - Profile + Profile + Profile - Upload - Upload + Upload + Upload - Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... - Open Workshop in Steam - Open Workshop in Steam + Open Workshop in Steam + Open Workshop in Steam - Ranked By Vote - Ranked By Vote + Ranked By Vote + Ranked By Vote - Publication Date - Publication Date + Publication Date + Publication Date - Ranked By Trend - Ranked By Trend + Ranked By Trend + Ranked By Trend - Favorited By Friends - Favorited By Friends + Favorited By Friends + Favorited By Friends - Created By Friends - Created By Friends + Created By Friends + Created By Friends - Created By Followed Users - Created By Followed Users + Created By Followed Users + Created By Followed Users - Not Yet Rated - Not Yet Rated + Not Yet Rated + Not Yet Rated - Total VotesAsc - Total VotesAsc + Total VotesAsc + Total VotesAsc - Votes Up - Votes Up + Votes Up + Votes Up - Total Unique Subscriptions - Total Unique Subscriptions + Total Unique Subscriptions + Total Unique Subscriptions - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + TagSelector - Save - Save + Save + Save - Add tag - Add tag + Add tag + Add tag - Cancel - Cancel + Cancel + Cancel - Add Tag - Add Tag + Add Tag + Add Tag - - + + TextField - Label - Label + Label + Label - *Required - *Required + *Required + *Required - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. - Open ScreenPlay - Open ScreenPlay + Open ScreenPlay + Open ScreenPlay - Mute all - Mute all + Mute all + Mute all - Unmute all - Unmute all + Unmute all + Unmute all - Pause all - Pause all + Pause all + Pause all - Play all - Play all + Play all + Play all - Quit - Quit + Quit + Quit - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - Abort - Abort + Abort + Abort - Upload Selected Projects - Upload Selected Projects + Upload Selected Projects + Upload Selected Projects - Finish - Finish + Finish + Finish - - + + UploadProjectBigItem - Type: - Type: + Type: + Type: - Open Folder - Open Folder + Open Folder + Open Folder - Invalid Project! - Invalid Project! + Invalid Project! + Invalid Project! - - + + UploadProjectItem - Fail - Fail + Fail + Fail - No Connection - No Connection + No Connection + No Connection - Invalid Password - Invalid Password + Invalid Password + Invalid Password - Logged In Elsewhere - Logged In Elsewhere + Logged In Elsewhere + Logged In Elsewhere - Invalid Protocol Version - Invalid Protocol Version + Invalid Protocol Version + Invalid Protocol Version - Invalid Param - Invalid Param + Invalid Param + Invalid Param - File Not Found - File Not Found + File Not Found + File Not Found - Busy - Busy + Busy + Busy - Invalid State - Invalid State + Invalid State + Invalid State - Invalid Name - Invalid Name + Invalid Name + Invalid Name - Invalid Email - Invalid Email + Invalid Email + Invalid Email - Duplicate Name - Duplicate Name + Duplicate Name + Duplicate Name - Access Denied - Access Denied + Access Denied + Access Denied - Timeout - Timeout + Timeout + Timeout - Banned - Banned + Banned + Banned - Account Not Found - Account Not Found + Account Not Found + Account Not Found - Invalid SteamID - Invalid SteamID + Invalid SteamID + Invalid SteamID - Service Unavailable - Service Unavailable + Service Unavailable + Service Unavailable - Not Logged On - Not Logged On + Not Logged On + Not Logged On - Pending - Pending + Pending + Pending - Encryption Failure - Encryption Failure + Encryption Failure + Encryption Failure - Insufficient Privilege - Insufficient Privilege + Insufficient Privilege + Insufficient Privilege - Limit Exceeded - Limit Exceeded + Limit Exceeded + Limit Exceeded - Revoked - Revoked + Revoked + Revoked - Expired - Expired + Expired + Expired - Already Redeemed - Already Redeemed + Already Redeemed + Already Redeemed - Duplicate Request - Duplicate Request + Duplicate Request + Duplicate Request - Already Owned - Already Owned + Already Owned + Already Owned - IP Not Found - IP Not Found + IP Not Found + IP Not Found - Persist Failed - Persist Failed + Persist Failed + Persist Failed - Locking Failed - Locking Failed + Locking Failed + Locking Failed - Logon Session Replaced - Logon Session Replaced + Logon Session Replaced + Logon Session Replaced - Connect Failed - Connect Failed + Connect Failed + Connect Failed - Handshake Failed - Handshake Failed + Handshake Failed + Handshake Failed - IO Failure - IO Failure + IO Failure + IO Failure - Remote Disconnect - Remote Disconnect + Remote Disconnect + Remote Disconnect - Shopping Cart Not Found - Shopping Cart Not Found + Shopping Cart Not Found + Shopping Cart Not Found - Blocked - Blocked + Blocked + Blocked - Ignored - Ignored + Ignored + Ignored - No Match - No Match + No Match + No Match - Account Disabled - Account Disabled + Account Disabled + Account Disabled - Service ReadOnly - Service ReadOnly + Service ReadOnly + Service ReadOnly - Account Not Featured - Account Not Featured + Account Not Featured + Account Not Featured - Administrator OK - Administrator OK + Administrator OK + Administrator OK - Content Version - Content Version + Content Version + Content Version - Try Another CM - Try Another CM + Try Another CM + Try Another CM - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Already Logged In Elsewhere + Already Logged In Elsewhere + Already Logged In Elsewhere - Suspended - Suspended + Suspended + Suspended - Cancelled - Cancelled + Cancelled + Cancelled - Data Corruption - Data Corruption + Data Corruption + Data Corruption - Disk Full - Disk Full + Disk Full + Disk Full - Remote Call Failed - Remote Call Failed + Remote Call Failed + Remote Call Failed - Password Unset - Password Unset + Password Unset + Password Unset - External Account Unlinked - External Account Unlinked + External Account Unlinked + External Account Unlinked - PSN Ticket Invalid - PSN Ticket Invalid + PSN Ticket Invalid + PSN Ticket Invalid - External Account Already Linked - External Account Already Linked + External Account Already Linked + External Account Already Linked - Remote File Conflict - Remote File Conflict + Remote File Conflict + Remote File Conflict - Illegal Password - Illegal Password + Illegal Password + Illegal Password - Same As Previous Value - Same As Previous Value + Same As Previous Value + Same As Previous Value - Account Logon Denied - Account Logon Denied + Account Logon Denied + Account Logon Denied - Cannot Use Old Password - Cannot Use Old Password + Cannot Use Old Password + Cannot Use Old Password - Invalid Login AuthCode - Invalid Login AuthCode + Invalid Login AuthCode + Invalid Login AuthCode - Account Logon Denied No Mail - Account Logon Denied No Mail + Account Logon Denied No Mail + Account Logon Denied No Mail - Hardware Not Capable Of IPT - Hardware Not Capable Of IPT + Hardware Not Capable Of IPT + Hardware Not Capable Of IPT - IPT Init Error - IPT Init Error + IPT Init Error + IPT Init Error - Parental Control Restricted - Parental Control Restricted + Parental Control Restricted + Parental Control Restricted - Facebook Query Error - Facebook Query Error + Facebook Query Error + Facebook Query Error - Expired Login Auth Code - Expired Login Auth Code + Expired Login Auth Code + Expired Login Auth Code - IP Login Restriction Failed - IP Login Restriction Failed + IP Login Restriction Failed + IP Login Restriction Failed - Account Locked Down - Account Locked Down + Account Locked Down + Account Locked Down - Account Logon Denied Verified Email Required - Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required - No MatchingURL - No MatchingURL + No MatchingURL + No MatchingURL - Bad Response - Bad Response + Bad Response + Bad Response - Require Password ReEntry - Require Password ReEntry + Require Password ReEntry + Require Password ReEntry - Value Out Of Range - Value Out Of Range + Value Out Of Range + Value Out Of Range - Unexpecte Error - Unexpecte Error + Unexpecte Error + Unexpecte Error - Disabled - Disabled + Disabled + Disabled - Invalid CEG Submission - Invalid CEG Submission + Invalid CEG Submission + Invalid CEG Submission - Restricted Device - Restricted Device + Restricted Device + Restricted Device - Region Locked - Region Locked + Region Locked + Region Locked - Rate Limit Exceeded - Rate Limit Exceeded + Rate Limit Exceeded + Rate Limit Exceeded - Account Login Denied Need Two Factor - Account Login Denied Need Two Factor + Account Login Denied Need Two Factor + Account Login Denied Need Two Factor - Item Deleted - Item Deleted + Item Deleted + Item Deleted - Account Login Denied Throttle - Account Login Denied Throttle + Account Login Denied Throttle + Account Login Denied Throttle - Two Factor Code Mismatch - Two Factor Code Mismatch + Two Factor Code Mismatch + Two Factor Code Mismatch - Two Factor Activation Code Mismatch - Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch - Account Associated To Multiple Partners - Account Associated To Multiple Partners + Account Associated To Multiple Partners + Account Associated To Multiple Partners - Not Modified - Not Modified + Not Modified + Not Modified - No Mobile Device - No Mobile Device + No Mobile Device + No Mobile Device - Time Not Synced - Time Not Synced + Time Not Synced + Time Not Synced - Sms Code Failed - Sms Code Failed + Sms Code Failed + Sms Code Failed - Account Limit Exceeded - Account Limit Exceeded + Account Limit Exceeded + Account Limit Exceeded - Account Activity Limit Exceeded - Account Activity Limit Exceeded + Account Activity Limit Exceeded + Account Activity Limit Exceeded - Phone Activity Limit Exceeded - Phone Activity Limit Exceeded + Phone Activity Limit Exceeded + Phone Activity Limit Exceeded - Refund To Wallet - Refund To Wallet + Refund To Wallet + Refund To Wallet - Email Send Failure - Email Send Failure + Email Send Failure + Email Send Failure - Not Settled - Not Settled + Not Settled + Not Settled - Need Captcha - Need Captcha + Need Captcha + Need Captcha - GSLT Denied - GSLT Denied + GSLT Denied + GSLT Denied - GS Owner Denied - GS Owner Denied + GS Owner Denied + GS Owner Denied - Invalid Item Type - Invalid Item Type + Invalid Item Type + Invalid Item Type - IP Banned - IP Banned + IP Banned + IP Banned - GSLT Expired - GSLT Expired + GSLT Expired + GSLT Expired - Insufficient Funds - Insufficient Funds + Insufficient Funds + Insufficient Funds - Too Many Pending - Too Many Pending + Too Many Pending + Too Many Pending - No Site Licenses Found - No Site Licenses Found + No Site Licenses Found + No Site Licenses Found - WG Network Send Exceeded - WG Network Send Exceeded + WG Network Send Exceeded + WG Network Send Exceeded - Account Not Friends - Account Not Friends + Account Not Friends + Account Not Friends - Limited User Account - Limited User Account + Limited User Account + Limited User Account - Cant Remove Item - Cant Remove Item + Cant Remove Item + Cant Remove Item - Account Deleted - Account Deleted + Account Deleted + Account Deleted - Existing User Cancelled License - Existing User Cancelled License + Existing User Cancelled License + Existing User Cancelled License - Community Cooldown - Community Cooldown + Community Cooldown + Community Cooldown - Status: - Status: + Status: + Status: - Upload Progress: - Upload Progress: + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - Create a Website Wallpaper - Create a Website Wallpaper + Create a Website Wallpaper + Create a Website Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - Tags - Tags + Tags + Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage - Save - Save + Save + Save - Saving... - Saving... + Saving... + Saving... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - Download complete! - Download complete! + Download complete! + Download complete! - - + + XMLNewsfeed - News & Patchnotes - News & Patchnotes + News & Patchnotes + News & Patchnotes - + diff --git a/ScreenPlay/translations/ScreenPlay_ru_RU.ts b/ScreenPlay/translations/ScreenPlay_ru_RU.ts index 490fe76b..547eaeab 100644 --- a/ScreenPlay/translations/ScreenPlay_ru_RU.ts +++ b/ScreenPlay/translations/ScreenPlay_ru_RU.ts @@ -1,1945 +1,1953 @@ - + ColorPicker - Red - Красный + Red + Красный - Green - Зеленый + Green + Зеленый - Blue - Синий + Blue + Синий - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - R: + R: + R: - G: - G: + G: + G: - B: - B: + B: + B: - H: - H: + H: + H: - S: - S: + S: + S: - V: - В: + V: + В: - Alpha: - Прозрачность: + Alpha: + Прозрачность: - # - # + # + # - - + + Community - News - Новости + News + Новости - Wiki - Википедия + Wiki + Википедия - Forum - Форум + Forum + Форум - Contribute - Внести вклад + Contribute + Внести вклад - Steam Workshop - Мастерская Steam + Steam Workshop + Мастерская Steam - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - Открыть в браузере + Open in browser + Открыть в браузере - - + + CreateWallpaperInit - Import any video type - Импортируй любых типов видео + Import any video type + Импортируй любых типов видео - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Установите предпочитаемый видео кодек: + Set your preffered video codec: + Установите предпочитаемый видео кодек: - Quality slider. Lower value means better quality. - Ползунок качества. Чем ниже значение тем выше качество. + Quality slider. Lower value means better quality. + Ползунок качества. Чем ниже значение тем выше качество. - Open Documentation - Открыть документацию + Open Documentation + Открыть документацию - Select file - Выберите файл + Select file + Выберите файл - - + + CreateWallpaperResult - An error occurred! - Произошла ошибка! + An error occurred! + Произошла ошибка! - Copy text to clipboard - Копировать текст в буфер обмена + Copy text to clipboard + Копировать текст в буфер обмена - Back to create and send an error report! - Вернуться к созданию и отправить отчет об ошибке! + Back to create and send an error report! + Вернуться к созданию и отправить отчет об ошибке! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - Создание изображения предпросмотра... + Generating preview image... + Создание изображения предпросмотра... - Generating preview thumbnail image... - Создание миниатюр изображений... + Generating preview thumbnail image... + Создание миниатюр изображений... - Generating 5 second preview video... - Создание 5 секундного видео предпросмотра... + Generating 5 second preview video... + Создание 5 секундного видео предпросмотра... - Generating preview gif... - Создание предварительной gif... + Generating preview gif... + Создание предварительной gif... - Converting Audio... - Конвертирование аудио... + Converting Audio... + Конвертирование аудио... - Converting Video... This can take some time! - Преобразование видео... Это может занять некоторое время! + Converting Video... This can take some time! + Преобразование видео... Это может занять некоторое время! - Converting Video ERROR! - Ошибка конвертации видео! + Converting Video ERROR! + Ошибка конвертации видео! - Analyse Video ERROR! - Ошибка анализа видео! + Analyse Video ERROR! + Ошибка анализа видео! - Convert a video to a wallpaper - Преобразовать видео в обои + Convert a video to a wallpaper + Преобразовать видео в обои - Generating preview video... - Создание предварительного видео... + Generating preview video... + Создание предварительного видео... - Name (required!) - Имя (обязательно) + Name (required!) + Имя (обязательно) - Description - Описание + Description + Описание - Youtube URL - YouTube URL-адрес + Youtube URL + YouTube URL-адрес - Abort - Прервать + Abort + Прервать - Save - Сохранить + Save + Сохранить - Save Wallpaper... - Сохранить обои... + Save Wallpaper... + Сохранить обои... - - + + DefaultVideoControls - Volume - Громкость + Volume + Громкость - Playback rate - Частота воспроизведения + Playback rate + Частота воспроизведения - Current Video Time - Текущее время видео + Current Video Time + Текущее время видео - Fill Mode - Режим заливки + Fill Mode + Режим заливки - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale_Down - Scale_Down + Scale_Down + Scale_Down - - + + FileSelector - Clear - Clear + Clear + Clear - Select File - Select File + Select File + Select File - Please choose a file - Please choose a file + Please choose a file + Please choose a file - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Install Steam Version - Install Steam Version + Install Steam Version + Install Steam Version - Open In Browser - Open In Browser + Open In Browser + Open In Browser - - + + GifWallpaper - Import a Gif Wallpaper - Import a Gif Wallpaper + Import a Gif Wallpaper + Import a Gif Wallpaper - Drop a *.gif file here or use 'Select file' below. - Drop a *.gif file here or use 'Select file' below. + Drop a *.gif file here or use 'Select file' below. + Drop a *.gif file here or use 'Select file' below. - Select your gif - Select your gif + Select your gif + Select your gif - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Tags - Tags + Tags + Tags - - + + HTMLWallpaper - Create a HTML Wallpaper - Create a HTML Wallpaper + Create a HTML Wallpaper + Create a HTML Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - License & Tags - License & Tags + License & Tags + License & Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + HTMLWidget - Create a HTML widget - Create a HTML widget + Create a HTML widget + Create a HTML widget - General - General + General + General - Widget name - Widget name + Widget name + Widget name - Created by - Created by + Created by + Created by - Tags - Tags + Tags + Tags - - + + HeadlineSection - Headline Section - Headline Section + Headline Section + Headline Section - - + + ImageSelector - Set your own preview image - Set your own preview image + Set your own preview image + Set your own preview image - Clear - Clear + Clear + Clear - Select Preview Image - Select Preview Image + Select Preview Image + Select Preview Image - - + + ImportWebmConvert - - + + - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + ImportWebmInit - Import a .webm video - Import a .webm video + Import a .webm video + Import a .webm video - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Drop a *.webm file here or use 'Select file' below. - Drop a *.webm file here or use 'Select file' below. + Drop a *.webm file here or use 'Select file' below. + Drop a *.webm file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Importh264Convert - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + Importh264Init - Import a .mp4 video - Import a .mp4 video + Import a .mp4 video + Import a .mp4 video - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - Invalid file type. Must be valid h264 (*.mp4)! - Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Installed - - + + - Refreshing! - Refreshing! + Refreshing! + Refreshing! - Pull to refresh! - Pull to refresh! + Pull to refresh! + Pull to refresh! - Get more Wallpaper & Widgets via the Steam workshop! - Get more Wallpaper & Widgets via the Steam workshop! + Get more Wallpaper & Widgets via the Steam workshop! + Get more Wallpaper & Widgets via the Steam workshop! - Open containing folder - Open containing folder + Open containing folder + Open containing folder - Remove Item - Remove Item + Remove Item + Remove Item - Remove via Workshop - Remove via Workshop + Remove via Workshop + Remove via Workshop - Open Workshop Page - Open Workshop Page + Open Workshop Page + Open Workshop Page - Are you sure you want to delete this item? - Are you sure you want to delete this item? + Are you sure you want to delete this item? + Are you sure you want to delete this item? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Get free Widgets and Wallpaper via the Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop - Browse the Steam Workshop - Browse the Steam Workshop + Browse the Steam Workshop + Browse the Steam Workshop - - + + LicenseSelector - License - License + License + License - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - You grant other to remix your work and change the license to their liking. - You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - You allow everyone to do anything with your work. - You allow everyone to do anything with your work. + You allow everyone to do anything with your work. + You allow everyone to do anything with your work. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - - + + Monitors - Wallpaper Configuration - Wallpaper Configuration + Wallpaper Configuration + Wallpaper Configuration - Remove selected - Remove selected + Remove selected + Remove selected - Wallpapers - Wallpapers + Wallpapers + Wallpapers - Widgets - Widgets + Widgets + Widgets - Remove all - Remove all + Remove all + Remove all - - + + MonitorsProjectSettingItem - Set color - Set color + Set color + Set color - Please choose a color - Please choose a color + Please choose a color + Please choose a color - - + + Navigation - All - All + All + All - Scenes - Scenes + Scenes + Scenes - Videos - Videos + Videos + Videos - Widgets - Widgets + Widgets + Widgets - Install Date Ascending - Install Date Ascending + Install Date Ascending + Install Date Ascending - Install Date Descending - Install Date Descending + Install Date Descending + Install Date Descending - Subscribed items: - Subscribed items: + Subscribed items: + Subscribed items: - Upload to the Steam Workshop - Upload to the Steam Workshop + Upload to the Steam Workshop + Upload to the Steam Workshop - Create - Create + Create + Create - Workshop - Workshop + Workshop + Workshop - Installed - Installed + Installed + Installed - Community - Community + Community + Community - Settings - Settings + Settings + Settings - Mute/Unmute all Wallpaper - Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper - Pause/Play all Wallpaper - Pause/Play all Wallpaper + Pause/Play all Wallpaper + Pause/Play all Wallpaper - Configure Wallpaper - Configure Wallpaper + Configure Wallpaper + Configure Wallpaper - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Back - Back - Back + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - You Need to Agree To The Steam Subscriber Agreement First + You Need to Agree To The Steam Subscriber Agreement First + You Need to Agree To The Steam Subscriber Agreement First - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - View The Steam Subscriber Agreement - View The Steam Subscriber Agreement + View The Steam Subscriber Agreement + View The Steam Subscriber Agreement - Accept Steam Workshop Agreement - Accept Steam Workshop Agreement + Accept Steam Workshop Agreement + Accept Steam Workshop Agreement - - + + QMLWallpaper - Create a QML Wallpaper - Create a QML Wallpaper + Create a QML Wallpaper + Create a QML Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - License & Tags - License & Tags + License & Tags + License & Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + QMLWidget - Create a QML widget - Create a QML widget + Create a QML widget + Create a QML widget - General - General + General + General - Widget name - Widget name + Widget name + Widget name - Created by - Created by + Created by + Created by - Tags - Tags + Tags + Tags - - + + SaveNotification - Profile saved successfully! - Profile saved successfully! + Profile saved successfully! + Profile saved successfully! - - + + ScreenPlayItem - NEW - NEW + NEW + NEW - - + + Search - Search for Wallpaper & Widgets - Search for Wallpaper & Widgets + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets - - + + Settings - General - General + General + General - Autostart - Autostart + Autostart + Autostart - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. - High priority Autostart - High priority Autostart + High priority Autostart + High priority Autostart - This options grants ScreenPlay a higher autostart priority than other apps. - This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. + This options grants ScreenPlay a higher autostart priority than other apps. - Send anonymous crash reports and statistics - Send anonymous crash reports and statistics + Send anonymous crash reports and statistics + Send anonymous crash reports and statistics - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Set save location - Set save location + Set save location + Set save location - Set location - Set location + Set location + Set location - Your storage path is empty! - Your storage path is empty! + Your storage path is empty! + Your storage path is empty! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Language - Language + Language + Language - Set the ScreenPlay UI Language - Set the ScreenPlay UI Language + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language - Theme - Theme + Theme + Theme - Switch dark/light theme - Switch dark/light theme + Switch dark/light theme + Switch dark/light theme - System Default - System Default + System Default + System Default - Dark - Dark + Dark + Dark - Light - Light + Light + Light - Performance - Performance + Performance + Performance - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Default Fill Mode - Default Fill Mode + Default Fill Mode + Default Fill Mode - Set this property to define how the video is scaled to fit the target area. - Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - About - About + About + About - Thank you for using ScreenPlay - Thank you for using ScreenPlay + Thank you for using ScreenPlay + Thank you for using ScreenPlay - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Version - Version + Version + Version - Open Changelog - Open Changelog + Open Changelog + Open Changelog - Third Party Software - Third Party Software + Third Party Software + Third Party Software - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - Licenses - Licenses + Licenses + Licenses - Logs - Logs + Logs + Logs - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Show Logs - Show Logs + Show Logs + Show Logs - Data Protection - Data Protection + Data Protection + Data Protection - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Privacy - Privacy + Privacy + Privacy - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay Build Version - - + + SettingsExpander - Copy text to clipboard - Copy text to clipboard + Copy text to clipboard + Copy text to clipboard - - + + Sidebar - Tools Overview - Tools Overview + Tools Overview + Tools Overview - Video Import h264 (.mp4) - Video Import h264 (.mp4) + Video Import h264 (.mp4) + Video Import h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) - Video import (all types) - Video import (all types) + Video import (all types) + Video import (all types) - GIF Wallpaper - GIF Wallpaper + GIF Wallpaper + GIF Wallpaper - QML Wallpaper - QML Wallpaper + QML Wallpaper + QML Wallpaper - HTML5 Wallpaper - HTML5 Wallpaper + HTML5 Wallpaper + HTML5 Wallpaper - Website Wallpaper - Website Wallpaper + Website Wallpaper + Website Wallpaper - QML Widget - QML Widget + QML Widget + QML Widget - HTML Widget - HTML Widget + HTML Widget + HTML Widget - Set Wallpaper - Set Wallpaper + Set Wallpaper + Set Wallpaper - Set Widget - Set Widget + Set Widget + Set Widget - Headline - Headline + Headline + Headline - Select a Monitor to display the content - Select a Monitor to display the content + Select a Monitor to display the content + Select a Monitor to display the content - Set Volume - Set Volume + Set Volume + Set Volume - Fill Mode - Fill Mode + Fill Mode + Fill Mode - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - Size: - Size: + Size: + Size: - No description... - No description... + No description... + No description... - Click here if you like the content - Click here if you like the content + Click here if you like the content + Click here if you like the content - Click here if you do not like the content - Click here if you do not like the content + Click here if you do not like the content + Click here if you do not like the content - Subscribtions: - Subscribtions: + Subscribtions: + Subscribtions: - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Subscribed! - Subscribed! + Subscribed! + Subscribed! - Subscribe - Subscribe + Subscribe + Subscribe - - + + StartInfo - Free tools to help you to create wallpaper - Free tools to help you to create wallpaper + Free tools to help you to create wallpaper + Free tools to help you to create wallpaper - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - - + + SteamNotAvailable - Could not load steam integration! - Could not load steam integration! + Could not load steam integration! + Could not load steam integration! - - + + SteamProfile - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + SteamWorkshopStartPage - Loading - Loading + Loading + Loading - Download now! - Download now! + Download now! + Download now! - Downloading... - Downloading... + Downloading... + Downloading... - Details - Details + Details + Details - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Profile - Profile + Profile + Profile - Upload - Upload + Upload + Upload - Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... - Open Workshop in Steam - Open Workshop in Steam + Open Workshop in Steam + Open Workshop in Steam - Ranked By Vote - Ranked By Vote + Ranked By Vote + Ranked By Vote - Publication Date - Publication Date + Publication Date + Publication Date - Ranked By Trend - Ranked By Trend + Ranked By Trend + Ranked By Trend - Favorited By Friends - Favorited By Friends + Favorited By Friends + Favorited By Friends - Created By Friends - Created By Friends + Created By Friends + Created By Friends - Created By Followed Users - Created By Followed Users + Created By Followed Users + Created By Followed Users - Not Yet Rated - Not Yet Rated + Not Yet Rated + Not Yet Rated - Total VotesAsc - Total VotesAsc + Total VotesAsc + Total VotesAsc - Votes Up - Votes Up + Votes Up + Votes Up - Total Unique Subscriptions - Total Unique Subscriptions + Total Unique Subscriptions + Total Unique Subscriptions - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + TagSelector - Save - Save + Save + Save - Add tag - Add tag + Add tag + Add tag - Cancel - Cancel + Cancel + Cancel - Add Tag - Add Tag + Add Tag + Add Tag - - + + TextField - Label - Label + Label + Label - *Required - *Required + *Required + *Required - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. - Open ScreenPlay - Open ScreenPlay + Open ScreenPlay + Open ScreenPlay - Mute all - Mute all + Mute all + Mute all - Unmute all - Unmute all + Unmute all + Unmute all - Pause all - Pause all + Pause all + Pause all - Play all - Play all + Play all + Play all - Quit - Quit + Quit + Quit - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - Abort - Abort + Abort + Abort - Upload Selected Projects - Upload Selected Projects + Upload Selected Projects + Upload Selected Projects - Finish - Finish + Finish + Finish - - + + UploadProjectBigItem - Type: - Type: + Type: + Type: - Open Folder - Open Folder + Open Folder + Open Folder - Invalid Project! - Invalid Project! + Invalid Project! + Invalid Project! - - + + UploadProjectItem - Fail - Fail + Fail + Fail - No Connection - No Connection + No Connection + No Connection - Invalid Password - Invalid Password + Invalid Password + Invalid Password - Logged In Elsewhere - Logged In Elsewhere + Logged In Elsewhere + Logged In Elsewhere - Invalid Protocol Version - Invalid Protocol Version + Invalid Protocol Version + Invalid Protocol Version - Invalid Param - Invalid Param + Invalid Param + Invalid Param - File Not Found - File Not Found + File Not Found + File Not Found - Busy - Busy + Busy + Busy - Invalid State - Invalid State + Invalid State + Invalid State - Invalid Name - Invalid Name + Invalid Name + Invalid Name - Invalid Email - Invalid Email + Invalid Email + Invalid Email - Duplicate Name - Duplicate Name + Duplicate Name + Duplicate Name - Access Denied - Access Denied + Access Denied + Access Denied - Timeout - Timeout + Timeout + Timeout - Banned - Banned + Banned + Banned - Account Not Found - Account Not Found + Account Not Found + Account Not Found - Invalid SteamID - Invalid SteamID + Invalid SteamID + Invalid SteamID - Service Unavailable - Service Unavailable + Service Unavailable + Service Unavailable - Not Logged On - Not Logged On + Not Logged On + Not Logged On - Pending - Pending + Pending + Pending - Encryption Failure - Encryption Failure + Encryption Failure + Encryption Failure - Insufficient Privilege - Insufficient Privilege + Insufficient Privilege + Insufficient Privilege - Limit Exceeded - Limit Exceeded + Limit Exceeded + Limit Exceeded - Revoked - Revoked + Revoked + Revoked - Expired - Expired + Expired + Expired - Already Redeemed - Already Redeemed + Already Redeemed + Already Redeemed - Duplicate Request - Duplicate Request + Duplicate Request + Duplicate Request - Already Owned - Already Owned + Already Owned + Already Owned - IP Not Found - IP Not Found + IP Not Found + IP Not Found - Persist Failed - Persist Failed + Persist Failed + Persist Failed - Locking Failed - Locking Failed + Locking Failed + Locking Failed - Logon Session Replaced - Logon Session Replaced + Logon Session Replaced + Logon Session Replaced - Connect Failed - Connect Failed + Connect Failed + Connect Failed - Handshake Failed - Handshake Failed + Handshake Failed + Handshake Failed - IO Failure - IO Failure + IO Failure + IO Failure - Remote Disconnect - Remote Disconnect + Remote Disconnect + Remote Disconnect - Shopping Cart Not Found - Shopping Cart Not Found + Shopping Cart Not Found + Shopping Cart Not Found - Blocked - Blocked + Blocked + Blocked - Ignored - Ignored + Ignored + Ignored - No Match - No Match + No Match + No Match - Account Disabled - Account Disabled + Account Disabled + Account Disabled - Service ReadOnly - Service ReadOnly + Service ReadOnly + Service ReadOnly - Account Not Featured - Account Not Featured + Account Not Featured + Account Not Featured - Administrator OK - Administrator OK + Administrator OK + Administrator OK - Content Version - Content Version + Content Version + Content Version - Try Another CM - Try Another CM + Try Another CM + Try Another CM - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Already Logged In Elsewhere + Already Logged In Elsewhere + Already Logged In Elsewhere - Suspended - Suspended + Suspended + Suspended - Cancelled - Cancelled + Cancelled + Cancelled - Data Corruption - Data Corruption + Data Corruption + Data Corruption - Disk Full - Disk Full + Disk Full + Disk Full - Remote Call Failed - Remote Call Failed + Remote Call Failed + Remote Call Failed - Password Unset - Password Unset + Password Unset + Password Unset - External Account Unlinked - External Account Unlinked + External Account Unlinked + External Account Unlinked - PSN Ticket Invalid - PSN Ticket Invalid + PSN Ticket Invalid + PSN Ticket Invalid - External Account Already Linked - External Account Already Linked + External Account Already Linked + External Account Already Linked - Remote File Conflict - Remote File Conflict + Remote File Conflict + Remote File Conflict - Illegal Password - Illegal Password + Illegal Password + Illegal Password - Same As Previous Value - Same As Previous Value + Same As Previous Value + Same As Previous Value - Account Logon Denied - Account Logon Denied + Account Logon Denied + Account Logon Denied - Cannot Use Old Password - Cannot Use Old Password + Cannot Use Old Password + Cannot Use Old Password - Invalid Login AuthCode - Invalid Login AuthCode + Invalid Login AuthCode + Invalid Login AuthCode - Account Logon Denied No Mail - Account Logon Denied No Mail + Account Logon Denied No Mail + Account Logon Denied No Mail - Hardware Not Capable Of IPT - Hardware Not Capable Of IPT + Hardware Not Capable Of IPT + Hardware Not Capable Of IPT - IPT Init Error - IPT Init Error + IPT Init Error + IPT Init Error - Parental Control Restricted - Parental Control Restricted + Parental Control Restricted + Parental Control Restricted - Facebook Query Error - Facebook Query Error + Facebook Query Error + Facebook Query Error - Expired Login Auth Code - Expired Login Auth Code + Expired Login Auth Code + Expired Login Auth Code - IP Login Restriction Failed - IP Login Restriction Failed + IP Login Restriction Failed + IP Login Restriction Failed - Account Locked Down - Account Locked Down + Account Locked Down + Account Locked Down - Account Logon Denied Verified Email Required - Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required - No MatchingURL - No MatchingURL + No MatchingURL + No MatchingURL - Bad Response - Bad Response + Bad Response + Bad Response - Require Password ReEntry - Require Password ReEntry + Require Password ReEntry + Require Password ReEntry - Value Out Of Range - Value Out Of Range + Value Out Of Range + Value Out Of Range - Unexpecte Error - Unexpecte Error + Unexpecte Error + Unexpecte Error - Disabled - Disabled + Disabled + Disabled - Invalid CEG Submission - Invalid CEG Submission + Invalid CEG Submission + Invalid CEG Submission - Restricted Device - Restricted Device + Restricted Device + Restricted Device - Region Locked - Region Locked + Region Locked + Region Locked - Rate Limit Exceeded - Rate Limit Exceeded + Rate Limit Exceeded + Rate Limit Exceeded - Account Login Denied Need Two Factor - Account Login Denied Need Two Factor + Account Login Denied Need Two Factor + Account Login Denied Need Two Factor - Item Deleted - Item Deleted + Item Deleted + Item Deleted - Account Login Denied Throttle - Account Login Denied Throttle + Account Login Denied Throttle + Account Login Denied Throttle - Two Factor Code Mismatch - Two Factor Code Mismatch + Two Factor Code Mismatch + Two Factor Code Mismatch - Two Factor Activation Code Mismatch - Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch - Account Associated To Multiple Partners - Account Associated To Multiple Partners + Account Associated To Multiple Partners + Account Associated To Multiple Partners - Not Modified - Not Modified + Not Modified + Not Modified - No Mobile Device - No Mobile Device + No Mobile Device + No Mobile Device - Time Not Synced - Time Not Synced + Time Not Synced + Time Not Synced - Sms Code Failed - Sms Code Failed + Sms Code Failed + Sms Code Failed - Account Limit Exceeded - Account Limit Exceeded + Account Limit Exceeded + Account Limit Exceeded - Account Activity Limit Exceeded - Account Activity Limit Exceeded + Account Activity Limit Exceeded + Account Activity Limit Exceeded - Phone Activity Limit Exceeded - Phone Activity Limit Exceeded + Phone Activity Limit Exceeded + Phone Activity Limit Exceeded - Refund To Wallet - Refund To Wallet + Refund To Wallet + Refund To Wallet - Email Send Failure - Email Send Failure + Email Send Failure + Email Send Failure - Not Settled - Not Settled + Not Settled + Not Settled - Need Captcha - Need Captcha + Need Captcha + Need Captcha - GSLT Denied - GSLT Denied + GSLT Denied + GSLT Denied - GS Owner Denied - GS Owner Denied + GS Owner Denied + GS Owner Denied - Invalid Item Type - Invalid Item Type + Invalid Item Type + Invalid Item Type - IP Banned - IP Banned + IP Banned + IP Banned - GSLT Expired - GSLT Expired + GSLT Expired + GSLT Expired - Insufficient Funds - Insufficient Funds + Insufficient Funds + Insufficient Funds - Too Many Pending - Too Many Pending + Too Many Pending + Too Many Pending - No Site Licenses Found - No Site Licenses Found + No Site Licenses Found + No Site Licenses Found - WG Network Send Exceeded - WG Network Send Exceeded + WG Network Send Exceeded + WG Network Send Exceeded - Account Not Friends - Account Not Friends + Account Not Friends + Account Not Friends - Limited User Account - Limited User Account + Limited User Account + Limited User Account - Cant Remove Item - Cant Remove Item + Cant Remove Item + Cant Remove Item - Account Deleted - Account Deleted + Account Deleted + Account Deleted - Existing User Cancelled License - Existing User Cancelled License + Existing User Cancelled License + Existing User Cancelled License - Community Cooldown - Community Cooldown + Community Cooldown + Community Cooldown - Status: - Status: + Status: + Status: - Upload Progress: - Upload Progress: + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - Create a Website Wallpaper - Create a Website Wallpaper + Create a Website Wallpaper + Create a Website Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - Tags - Tags + Tags + Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage - Save - Save + Save + Save - Saving... - Saving... + Saving... + Saving... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - Download complete! - Download complete! + Download complete! + Download complete! - - + + XMLNewsfeed - News & Patchnotes - News & Patchnotes + News & Patchnotes + News & Patchnotes - + diff --git a/ScreenPlay/translations/ScreenPlay_tr_TR.ts b/ScreenPlay/translations/ScreenPlay_tr_TR.ts index 849cf2d9..60e0ee04 100644 --- a/ScreenPlay/translations/ScreenPlay_tr_TR.ts +++ b/ScreenPlay/translations/ScreenPlay_tr_TR.ts @@ -1,1945 +1,1953 @@ - + ColorPicker - Red - Kırmızı + Red + Kırmızı - Green - Yeşil + Green + Yeşil - Blue - Mavi + Blue + Mavi - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - R: + R: + R: - G: - G: + G: + G: - B: - B: + B: + B: - H: - H: + H: + H: - S: - S: + S: + S: - V: - V: + V: + V: - Alpha: - Şeffaflık: + Alpha: + Şeffaflık: - # - # + # + # - - + + Community - News - Yenilikler + News + Yenilikler - Wiki - Wiki + Wiki + Wiki - Forum - Forum + Forum + Forum - Contribute - Bağış yap + Contribute + Bağış yap - Steam Workshop - Steam Atölyesi + Steam Workshop + Steam Atölyesi - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - Tarayıcıda aç + Open in browser + Tarayıcıda aç - - + + CreateWallpaperInit - Import any video type - Video içe aktarın + Import any video type + Video içe aktarın - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - PC yapılandırmanıza bağlı olarak, duvar kağıdınızı belirli bir video codec bileşenine dönüştürmek daha iyidir. Her ikisinin de performansı kötüyse, bir QML duvar kağıdını da deneyebilirsiniz! Desteklenen video biçimleri şunlardır: + PC yapılandırmanıza bağlı olarak, duvar kağıdınızı belirli bir video codec bileşenine dönüştürmek daha iyidir. Her ikisinin de performansı kötüyse, bir QML duvar kağıdını da deneyebilirsiniz! Desteklenen video biçimleri şunlardır: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Tercih ettiğiniz video codec bileşenini ayarlayın: + Set your preffered video codec: + Tercih ettiğiniz video codec bileşenini ayarlayın: - Quality slider. Lower value means better quality. - Kalite kaydırıcısı. Daha düşük değer, daha iyi kalite anlamına gelir. + Quality slider. Lower value means better quality. + Kalite kaydırıcısı. Daha düşük değer, daha iyi kalite anlamına gelir. - Open Documentation - Belgeyi Aç + Open Documentation + Belgeyi Aç - Select file - Dosya seç + Select file + Dosya seç - - + + CreateWallpaperResult - An error occurred! - Bir hata oluştu! + An error occurred! + Bir hata oluştu! - Copy text to clipboard - Metni panoya kopyala + Copy text to clipboard + Metni panoya kopyala - Back to create and send an error report! - Bir hata raporu oluşturmak ve göndermek için geri dönün! + Back to create and send an error report! + Bir hata raporu oluşturmak ve göndermek için geri dönün! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - Önizleme oluşturuluyor... + Generating preview image... + Önizleme oluşturuluyor... - Generating preview thumbnail image... - Önizleme küçük resmi oluşturuluyor... + Generating preview thumbnail image... + Önizleme küçük resmi oluşturuluyor... - Generating 5 second preview video... - 5 saniyelik önizleme videosu oluşturuluyor... + Generating 5 second preview video... + 5 saniyelik önizleme videosu oluşturuluyor... - Generating preview gif... - Özizleme gifi oluşturuluyor... + Generating preview gif... + Özizleme gifi oluşturuluyor... - Converting Audio... - Ses Dönüştürülüyor... + Converting Audio... + Ses Dönüştürülüyor... - Converting Video... This can take some time! - Video dönüştürülüyor... Biraz zaman alabilir! + Converting Video... This can take some time! + Video dönüştürülüyor... Biraz zaman alabilir! - Converting Video ERROR! - Video Dönüştürülürken Hata Oluştu! + Converting Video ERROR! + Video Dönüştürülürken Hata Oluştu! - Analyse Video ERROR! - Video Hatasını Analiz Edin! + Analyse Video ERROR! + Video Hatasını Analiz Edin! - Convert a video to a wallpaper - Bir videoyu duvar kağıdına dönüştürün + Convert a video to a wallpaper + Bir videoyu duvar kağıdına dönüştürün - Generating preview video... - Önizleme videosu oluşturuluyor... + Generating preview video... + Önizleme videosu oluşturuluyor... - Name (required!) - İsim (gerekli) + Name (required!) + İsim (gerekli) - Description - Açıklama + Description + Açıklama - Youtube URL - YouTube URL + Youtube URL + YouTube URL - Abort - İptal + Abort + İptal - Save - Kaydet + Save + Kaydet - Save Wallpaper... - Duvar kağıdını kaydet... + Save Wallpaper... + Duvar kağıdını kaydet... - - + + DefaultVideoControls - Volume - Ses Düzeyi + Volume + Ses Düzeyi - Playback rate - Oynatma oranını ayarla + Playback rate + Oynatma oranını ayarla - Current Video Time - Geçerli Video Zamanı + Current Video Time + Geçerli Video Zamanı - Fill Mode - Doldurma Kipi + Fill Mode + Doldurma Kipi - Stretch - Esnet + Stretch + Esnet - Fill - Doldur + Fill + Doldur - Contain - İçeren + Contain + İçeren - Cover - Kapak + Cover + Kapak - Scale_Down - Ölçek_Düşür + Scale_Down + Ölçek_Düşür - - + + FileSelector - Clear - Temizle + Clear + Temizle - Select File - Dosya Seç + Select File + Dosya Seç - Please choose a file - Lütfen bir dosya seçiniz + Please choose a file + Lütfen bir dosya seçiniz - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Install Steam Version - Install Steam Version + Install Steam Version + Install Steam Version - Open In Browser - Open In Browser + Open In Browser + Open In Browser - - + + GifWallpaper - Import a Gif Wallpaper - Bir Gif Duvar Kağıdını İçe Aktarın + Import a Gif Wallpaper + Bir Gif Duvar Kağıdını İçe Aktarın - Drop a *.gif file here or use 'Select file' below. - Bir *.gif dosyasını sürükleyin ' Ya da Dosyayı seçin ' + Drop a *.gif file here or use 'Select file' below. + Bir *.gif dosyasını sürükleyin ' Ya da Dosyayı seçin ' - Select your gif - Gif seç + Select your gif + Gif seç - General - Genel + General + Genel - Wallpaper name - Duvar Kağıdı adı + Wallpaper name + Duvar Kağıdı adı - Created By - Oluşturan + Created By + Oluşturan - Tags - Etiketler + Tags + Etiketler - - + + HTMLWallpaper - Create a HTML Wallpaper - HTML Duvar Kağıdı Oluşturun + Create a HTML Wallpaper + HTML Duvar Kağıdı Oluşturun - General - Genel + General + Genel - Wallpaper name - Duvar Kağıdı adı + Wallpaper name + Duvar Kağıdı adı - Created By - Oluşturan + Created By + Oluşturan - Description - Açıklama + Description + Açıklama - License & Tags - Lisans & Etiketler + License & Tags + Lisans & Etiketler - Preview Image - Resim Önizleme + Preview Image + Resim Önizleme - - + + HTMLWidget - Create a HTML widget - Bir HTML widget'ı oluşturun + Create a HTML widget + Bir HTML widget'ı oluşturun - General - Genel + General + Genel - Widget name - Widget adı + Widget name + Widget adı - Created by - Oluşturan + Created by + Oluşturan - Tags - Etiketler + Tags + Etiketler - - + + HeadlineSection - Headline Section - Başlık Bölümü + Headline Section + Başlık Bölümü - - + + ImageSelector - Set your own preview image - Kendi önizleme resminizi ayarlayın + Set your own preview image + Kendi önizleme resminizi ayarlayın - Clear - Temizle + Clear + Temizle - Select Preview Image - Önizleme Resminizi Seçin + Select Preview Image + Önizleme Resminizi Seçin - - + + ImportWebmConvert - - + + - AnalyseVideo... - VideoAnaliz... + AnalyseVideo... + VideoAnaliz... - Generating preview image... - Önizleme oluşturuluyor... + Generating preview image... + Önizleme oluşturuluyor... - Generating preview thumbnail image... - Önizleme küçük resmi oluşturuluyor... + Generating preview thumbnail image... + Önizleme küçük resmi oluşturuluyor... - Generating 5 second preview video... - 5 saniyelik önizleme videosu oluşturuluyor... + Generating 5 second preview video... + 5 saniyelik önizleme videosu oluşturuluyor... - Generating preview gif... - Özizleme gifi oluşturuluyor... + Generating preview gif... + Özizleme gifi oluşturuluyor... - Converting Audio... - Ses Dönüştürülüyor... + Converting Audio... + Ses Dönüştürülüyor... - Converting Video... This can take some time! - Video dönüştürülüyor... Biraz zaman alabilir! + Converting Video... This can take some time! + Video dönüştürülüyor... Biraz zaman alabilir! - Converting Video ERROR! - Video Dönüştürülürken Hata Oluştu! + Converting Video ERROR! + Video Dönüştürülürken Hata Oluştu! - Analyse Video ERROR! - Video Hatasını Analiz Edin! + Analyse Video ERROR! + Video Hatasını Analiz Edin! - Import a video to a wallpaper - Bir videoyu duvar kağıdına aktarın + Import a video to a wallpaper + Bir videoyu duvar kağıdına aktarın - Generating preview video... - Önizleme videosu oluşturuluyor... + Generating preview video... + Önizleme videosu oluşturuluyor... - Name (required!) - İsim (gerekli) + Name (required!) + İsim (gerekli) - Description - Açıklama + Description + Açıklama - Youtube URL - YouTube URL + Youtube URL + YouTube URL - Abort - İptal + Abort + İptal - Save - Kaydet + Save + Kaydet - Save Wallpaper... - Duvar kağıdını kaydet... + Save Wallpaper... + Duvar kağıdını kaydet... - - + + ImportWebmInit - Import a .webm video - .webm uzantılı bir videoyu içe aktarın + Import a .webm video + .webm uzantılı bir videoyu içe aktarın - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Webm'yi içe aktarırken uzun dönüşümü atlayabiliriz. ' Video içe aktarma ve dönüştürmeden (tüm türler) ScreenPlay içe aktarıcı ile tatmin edici olmayan sonuçlar aldığınızda, ücretsiz ve açık kaynaklı El Freni aracılığıyla da dönüştürebilirsiniz! ' + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + Webm'yi içe aktarırken uzun dönüşümü atlayabiliriz. ' Video içe aktarma ve dönüştürmeden (tüm türler) ScreenPlay içe aktarıcı ile tatmin edici olmayan sonuçlar aldığınızda, ücretsiz ve açık kaynaklı El Freni aracılığıyla da dönüştürebilirsiniz! ' - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Geçersiz dosya türü. Geçerli VP8 veya VP9 (*.webm) olmalıdır! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Geçersiz dosya türü. Geçerli VP8 veya VP9 (*.webm) olmalıdır! - Drop a *.webm file here or use 'Select file' below. - Bir *.webm dosyasını sürükleyin ' Ya da Dosyayı seçin ' + Drop a *.webm file here or use 'Select file' below. + Bir *.webm dosyasını sürükleyin ' Ya da Dosyayı seçin ' - Open Documentation - Belgeyi Aç + Open Documentation + Belgeyi Aç - Select file - Dosya seç + Select file + Dosya seç - - + + Importh264Convert - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + Importh264Init - Import a .mp4 video - Import a .mp4 video + Import a .mp4 video + Import a .mp4 video - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - Invalid file type. Must be valid h264 (*.mp4)! - Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Installed - - + + - Refreshing! - Yenileniyor! + Refreshing! + Yenileniyor! - Pull to refresh! - Yenilemek için çek! + Pull to refresh! + Yenilemek için çek! - Get more Wallpaper & Widgets via the Steam workshop! - Steam atölyesi aracılığıyla daha fazla Duvar Kağıdı ve Widget edinin! + Get more Wallpaper & Widgets via the Steam workshop! + Steam atölyesi aracılığıyla daha fazla Duvar Kağıdı ve Widget edinin! - Open containing folder - İçeren klasörü aç + Open containing folder + İçeren klasörü aç - Remove Item - Öğeyi Kaldır + Remove Item + Öğeyi Kaldır - Remove via Workshop - Atölye ile Kaldır + Remove via Workshop + Atölye ile Kaldır - Open Workshop Page - Atölyeyi Aç + Open Workshop Page + Atölyeyi Aç - Are you sure you want to delete this item? - Bu öğeyi silmek istediğinizden emin misiniz? + Are you sure you want to delete this item? + Bu öğeyi silmek istediğinizden emin misiniz? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Steam Atölyesi aracılığıyla ücretsiz Widget'lar ve Duvar Kağıdı alın + Get free Widgets and Wallpaper via the Steam Workshop + Steam Atölyesi aracılığıyla ücretsiz Widget'lar ve Duvar Kağıdı alın - Browse the Steam Workshop - Steam Atölyesine Göz Atın + Browse the Steam Workshop + Steam Atölyesine Göz Atın - - + + LicenseSelector - License - Lisans + License + Lisans - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Paylaş — materyali herhangi bir ortamda veya biçimde kopyalayın ve yeniden dağıtın. Uyarlayın - ticari olarak bile olsa herhangi bir amaç için malzemeyi yeniden karıştırın, dönüştürün ve üzerine inşa edin. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Paylaş — materyali herhangi bir ortamda veya biçimde kopyalayın ve yeniden dağıtın. Uyarlayın - ticari olarak bile olsa herhangi bir amaç için malzemeyi yeniden karıştırın, dönüştürün ve üzerine inşa edin. - You grant other to remix your work and change the license to their liking. - You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Paylaş — materyali herhangi bir ortamda veya biçimde kopyalayın ve yeniden dağıtın. Uyarlayın - ticari olarak bile olsa herhangi bir amaç için malzemeyi yeniden karıştırın, dönüştürün ve üzerine inşa edin! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Paylaş — materyali herhangi bir ortamda veya biçimde kopyalayın ve yeniden dağıtın. Uyarlayın - ticari olarak bile olsa herhangi bir amaç için malzemeyi yeniden karıştırın, dönüştürün ve üzerine inşa edin! - You allow everyone to do anything with your work. - Herkesin işinizle ilgili her şeyi yapmasına izin veriyorsunuz. + You allow everyone to do anything with your work. + Herkesin işinizle ilgili her şeyi yapmasına izin veriyorsunuz. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - Başkalarına çalışmanızı yeniden düzenlemeleri için izin veriyorsunuz, ancak çalışmanızın GPLv3 kapsamında kalması gerekiyor. Bu lisansı tüm kod duvar kağıtları için öneriyoruz! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + Başkalarına çalışmanızı yeniden düzenlemeleri için izin veriyorsunuz, ancak çalışmanızın GPLv3 kapsamında kalması gerekiyor. Bu lisansı tüm kod duvar kağıtları için öneriyoruz! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - Hiçbir hakkı paylaşmıyorsunuz ve hiç kimsenin onu kullanmasına veya remiks yapmasına izin verilmiyor (Tavsiye edilmez). Başkalarının çalışmasına kredi vermek için de kullanılabilir. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + Hiçbir hakkı paylaşmıyorsunuz ve hiç kimsenin onu kullanmasına veya remiks yapmasına izin verilmiyor (Tavsiye edilmez). Başkalarının çalışmasına kredi vermek için de kullanılabilir. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - Monitör kurulumunuz değişti! + Monitör kurulumunuz değişti! Lütfen duvar kağıdınızı yeniden yapılandırın. - - + + Monitors - Wallpaper Configuration - Duvar Kağıdı Yapılandırması + Wallpaper Configuration + Duvar Kağıdı Yapılandırması - Remove selected - Seçilenleri kaldır + Remove selected + Seçilenleri kaldır - Wallpapers - Duvar kağıtları + Wallpapers + Duvar kağıtları - Widgets - Widget’lar + Widgets + Widget’lar - Remove all - Remove all + Remove all + Remove all - - + + MonitorsProjectSettingItem - Set color - Renk seç + Set color + Renk seç - Please choose a color - Lütfen renk seçin + Please choose a color + Lütfen renk seçin - - + + Navigation - All - Hepsi + All + Hepsi - Scenes - Sahneler + Scenes + Sahneler - Videos - Videolar + Videos + Videolar - Widgets - Widget’lar + Widgets + Widget’lar - Install Date Ascending - Artan Kurulum Tarihi + Install Date Ascending + Artan Kurulum Tarihi - Install Date Descending - Azalan Kurulum Tarihi + Install Date Descending + Azalan Kurulum Tarihi - Subscribed items: - Abone olunan öğeler: + Subscribed items: + Abone olunan öğeler: - Upload to the Steam Workshop - Steam Atölyesine yükleyin + Upload to the Steam Workshop + Steam Atölyesine yükleyin - Create - Create + Create + Create - Workshop - Workshop + Workshop + Workshop - Installed - Installed + Installed + Installed - Community - Community + Community + Community - Settings - Settings + Settings + Settings - Mute/Unmute all Wallpaper - Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper - Pause/Play all Wallpaper - Pause/Play all Wallpaper + Pause/Play all Wallpaper + Pause/Play all Wallpaper - Configure Wallpaper - Configure Wallpaper + Configure Wallpaper + Configure Wallpaper - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - Bunun için Steam'i çalıştırmanız gerekiyor. steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Geri - Back - Geri + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - Öncelikle Steam Abonelik Sözleşmesini Kabul Etmeniz Gerekiyor + You Need to Agree To The Steam Subscriber Agreement First + Öncelikle Steam Abonelik Sözleşmesini Kabul Etmeniz Gerekiyor - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - ETKİNLEŞTİRMEK İÇİN İNTERNET BAĞLANTISI VE ÜCRETSİZ BUHAR HESABI GEREKTİRİR. Uyarı: Ürün, Steam Abonelik Sözleşmesini (SSA) kabul etmenize tabi olarak sunulur. Bu ürünü bir Steam hesabına kaydolarak ve SSA'yı kabul ederek İnternet üzerinden etkinleştirmelisiniz. Satın almadan önce SSA'yı görüntülemek için lütfen https://store.steampowered.com/subscriber_agreement/ adresini ziyaret edin. SSA hükümlerini kabul etmiyorsanız, bu oyunu açılmadan satıcınıza iade politikalarına uygun olarak iade etmelisiniz. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + ETKİNLEŞTİRMEK İÇİN İNTERNET BAĞLANTISI VE ÜCRETSİZ BUHAR HESABI GEREKTİRİR. Uyarı: Ürün, Steam Abonelik Sözleşmesini (SSA) kabul etmenize tabi olarak sunulur. Bu ürünü bir Steam hesabına kaydolarak ve SSA'yı kabul ederek İnternet üzerinden etkinleştirmelisiniz. Satın almadan önce SSA'yı görüntülemek için lütfen https://store.steampowered.com/subscriber_agreement/ adresini ziyaret edin. SSA hükümlerini kabul etmiyorsanız, bu oyunu açılmadan satıcınıza iade politikalarına uygun olarak iade etmelisiniz. - View The Steam Subscriber Agreement - Steam Abonelik Sözleşmesini Görüntüle + View The Steam Subscriber Agreement + Steam Abonelik Sözleşmesini Görüntüle - Accept Steam Workshop Agreement - Steam Atölye Sözleşmesini Kabul Edin + Accept Steam Workshop Agreement + Steam Atölye Sözleşmesini Kabul Edin - - + + QMLWallpaper - Create a QML Wallpaper - Bir QML Duvar Kağıdı Oluşturun + Create a QML Wallpaper + Bir QML Duvar Kağıdı Oluşturun - General - Genel + General + Genel - Wallpaper name - Duvar Kağıdı adı + Wallpaper name + Duvar Kağıdı adı - Created By - Oluşturan + Created By + Oluşturan - Description - Açıklama + Description + Açıklama - License & Tags - Lisans & Etiketler + License & Tags + Lisans & Etiketler - Preview Image - Resim Önizleme + Preview Image + Resim Önizleme - - + + QMLWidget - Create a QML widget - Bir QML widget'ı oluşturun + Create a QML widget + Bir QML widget'ı oluşturun - General - Genel + General + Genel - Widget name - Widget adı + Widget name + Widget adı - Created by - Oluşturan + Created by + Oluşturan - Tags - Etiketler + Tags + Etiketler - - + + SaveNotification - Profile saved successfully! - Profil başarıyla kaydedildi! + Profile saved successfully! + Profil başarıyla kaydedildi! - - + + ScreenPlayItem - NEW - YENİ + NEW + YENİ - - + + Search - Search for Wallpaper & Widgets - Duvar Kağıdı ve Widget'ları Ara + Search for Wallpaper & Widgets + Duvar Kağıdı ve Widget'ları Ara - - + + Settings - General - Genel + General + Genel - Autostart - Otomatik başlatma + Autostart + Otomatik başlatma - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay, Windows ile başlayacak ve her seferinde sizin için Masaüstünüzü kuracaktır. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay, Windows ile başlayacak ve her seferinde sizin için Masaüstünüzü kuracaktır. - High priority Autostart - Yüksek öncelikli Otomatik başlatma + High priority Autostart + Yüksek öncelikli Otomatik başlatma - This options grants ScreenPlay a higher autostart priority than other apps. - Bu seçenekler, ScreenPlay'e diğer uygulamalardan daha yüksek bir otomatik başlatma önceliği verir. + This options grants ScreenPlay a higher autostart priority than other apps. + Bu seçenekler, ScreenPlay'e diğer uygulamalardan daha yüksek bir otomatik başlatma önceliği verir. - Send anonymous crash reports and statistics - Send anonymous crash reports and statistics + Send anonymous crash reports and statistics + Send anonymous crash reports and statistics - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Set save location - Set save location + Set save location + Set save location - Set location - Set location + Set location + Set location - Your storage path is empty! - Your storage path is empty! + Your storage path is empty! + Your storage path is empty! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Önemli: Bu dizini değiştirmenin atölye indirme yolu üzerinde hiçbir etkisi yoktur. ScreenPlay yalnızca bir içerik klasörüne sahip olmayı destekler! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Önemli: Bu dizini değiştirmenin atölye indirme yolu üzerinde hiçbir etkisi yoktur. ScreenPlay yalnızca bir içerik klasörüne sahip olmayı destekler! - Language - Dil + Language + Dil - Set the ScreenPlay UI Language - ScreenPlay Arayüz Dilini Ayarlayın + Set the ScreenPlay UI Language + ScreenPlay Arayüz Dilini Ayarlayın - Theme - Tema + Theme + Tema - Switch dark/light theme - Koyu/Açık temayı değiştir + Switch dark/light theme + Koyu/Açık temayı değiştir - System Default - Sistem Varsayılanı + System Default + Sistem Varsayılanı - Dark - Karanlık + Dark + Karanlık - Light - Aydınlık + Light + Aydınlık - Performance - Performans + Performance + Performans - Pause wallpaper video rendering while another app is in the foreground - Başka bir uygulama ön plandayken duvar kağıdı video oluşturmayı duraklatın + Pause wallpaper video rendering while another app is in the foreground + Başka bir uygulama ön plandayken duvar kağıdı video oluşturmayı duraklatın - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - En iyi performans için video oluşturmayı (sesi değil!) devre dışı bırakıyoruz. Sorun yaşıyorsanız, bu davranışı buradan devre dışı bırakabilirsiniz. Duvar kağıdının yeniden başlatılması gerekiyor! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + En iyi performans için video oluşturmayı (sesi değil!) devre dışı bırakıyoruz. Sorun yaşıyorsanız, bu davranışı buradan devre dışı bırakabilirsiniz. Duvar kağıdının yeniden başlatılması gerekiyor! - Default Fill Mode - Varsayılan Doldurma Modu + Default Fill Mode + Varsayılan Doldurma Modu - Set this property to define how the video is scaled to fit the target area. - Videonun hedef alana sığacak şekilde nasıl ölçeklendirileceğini tanımlamak için bu özelliği ayarlayın. + Set this property to define how the video is scaled to fit the target area. + Videonun hedef alana sığacak şekilde nasıl ölçeklendirileceğini tanımlamak için bu özelliği ayarlayın. - Stretch - Esnet + Stretch + Esnet - Fill - Doldur + Fill + Doldur - Contain - İçeren + Contain + İçeren - Cover - Kapak + Cover + Kapak - Scale-Down - Ölçek-Düşür + Scale-Down + Ölçek-Düşür - About - Hakkında + About + Hakkında - Thank you for using ScreenPlay - ScreePlay'i kullandığınız için teşekkür ederiz! + Thank you for using ScreenPlay + ScreePlay'i kullandığınız için teşekkür ederiz! - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Version - Version + Version + Version - Open Changelog - Open Changelog + Open Changelog + Open Changelog - Third Party Software - Third Party Software + Third Party Software + Third Party Software - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - Licenses - Licenses + Licenses + Licenses - Logs - Logs + Logs + Logs - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Show Logs - Show Logs + Show Logs + Show Logs - Data Protection - Data Protection + Data Protection + Data Protection - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Privacy - Privacy + Privacy + Privacy - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay Build Version - - + + SettingsExpander - Copy text to clipboard - Copy text to clipboard + Copy text to clipboard + Copy text to clipboard - - + + Sidebar - Tools Overview - Tools Overview + Tools Overview + Tools Overview - Video Import h264 (.mp4) - Video Import h264 (.mp4) + Video Import h264 (.mp4) + Video Import h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) - Video import (all types) - Video import (all types) + Video import (all types) + Video import (all types) - GIF Wallpaper - GIF Wallpaper + GIF Wallpaper + GIF Wallpaper - QML Wallpaper - QML Wallpaper + QML Wallpaper + QML Wallpaper - HTML5 Wallpaper - HTML5 Wallpaper + HTML5 Wallpaper + HTML5 Wallpaper - Website Wallpaper - Website Wallpaper + Website Wallpaper + Website Wallpaper - QML Widget - QML Widget + QML Widget + QML Widget - HTML Widget - HTML Widget + HTML Widget + HTML Widget - Set Wallpaper - Set Wallpaper + Set Wallpaper + Set Wallpaper - Set Widget - Set Widget + Set Widget + Set Widget - Headline - Headline + Headline + Headline - Select a Monitor to display the content - Select a Monitor to display the content + Select a Monitor to display the content + Select a Monitor to display the content - Set Volume - Set Volume + Set Volume + Set Volume - Fill Mode - Fill Mode + Fill Mode + Fill Mode - Stretch - Stretch + Stretch + Stretch - Fill - Fill + Fill + Fill - Contain - Contain + Contain + Contain - Cover - Cover + Cover + Cover - Scale-Down - Scale-Down + Scale-Down + Scale-Down - Size: - Size: + Size: + Size: - No description... - No description... + No description... + No description... - Click here if you like the content - Click here if you like the content + Click here if you like the content + Click here if you like the content - Click here if you do not like the content - Click here if you do not like the content + Click here if you do not like the content + Click here if you do not like the content - Subscribtions: - Subscribtions: + Subscribtions: + Subscribtions: - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Subscribed! - Subscribed! + Subscribed! + Subscribed! - Subscribe - Subscribe + Subscribe + Subscribe - - + + StartInfo - Free tools to help you to create wallpaper - Free tools to help you to create wallpaper + Free tools to help you to create wallpaper + Free tools to help you to create wallpaper - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - - + + SteamNotAvailable - Could not load steam integration! - Could not load steam integration! + Could not load steam integration! + Could not load steam integration! - - + + SteamProfile - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + SteamWorkshopStartPage - Loading - Loading + Loading + Loading - Download now! - Download now! + Download now! + Download now! - Downloading... - Downloading... + Downloading... + Downloading... - Details - Details + Details + Details - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Profile - Profile + Profile + Profile - Upload - Upload + Upload + Upload - Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... - Open Workshop in Steam - Open Workshop in Steam + Open Workshop in Steam + Open Workshop in Steam - Ranked By Vote - Ranked By Vote + Ranked By Vote + Ranked By Vote - Publication Date - Publication Date + Publication Date + Publication Date - Ranked By Trend - Ranked By Trend + Ranked By Trend + Ranked By Trend - Favorited By Friends - Favorited By Friends + Favorited By Friends + Favorited By Friends - Created By Friends - Created By Friends + Created By Friends + Created By Friends - Created By Followed Users - Created By Followed Users + Created By Followed Users + Created By Followed Users - Not Yet Rated - Not Yet Rated + Not Yet Rated + Not Yet Rated - Total VotesAsc - Total VotesAsc + Total VotesAsc + Total VotesAsc - Votes Up - Votes Up + Votes Up + Votes Up - Total Unique Subscriptions - Total Unique Subscriptions + Total Unique Subscriptions + Total Unique Subscriptions - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + TagSelector - Save - Save + Save + Save - Add tag - Add tag + Add tag + Add tag - Cancel - Cancel + Cancel + Cancel - Add Tag - Add Tag + Add Tag + Add Tag - - + + TextField - Label - Label + Label + Label - *Required - *Required + *Required + *Required - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. + ScreenPlay - Double click to change you settings. - Open ScreenPlay - Open ScreenPlay + Open ScreenPlay + Open ScreenPlay - Mute all - Mute all + Mute all + Mute all - Unmute all - Unmute all + Unmute all + Unmute all - Pause all - Pause all + Pause all + Pause all - Play all - Play all + Play all + Play all - Quit - Quit + Quit + Quit - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - Abort - Abort + Abort + Abort - Upload Selected Projects - Upload Selected Projects + Upload Selected Projects + Upload Selected Projects - Finish - Finish + Finish + Finish - - + + UploadProjectBigItem - Type: - Type: + Type: + Type: - Open Folder - Open Folder + Open Folder + Open Folder - Invalid Project! - Invalid Project! + Invalid Project! + Invalid Project! - - + + UploadProjectItem - Fail - Fail + Fail + Fail - No Connection - No Connection + No Connection + No Connection - Invalid Password - Invalid Password + Invalid Password + Invalid Password - Logged In Elsewhere - Logged In Elsewhere + Logged In Elsewhere + Logged In Elsewhere - Invalid Protocol Version - Invalid Protocol Version + Invalid Protocol Version + Invalid Protocol Version - Invalid Param - Invalid Param + Invalid Param + Invalid Param - File Not Found - File Not Found + File Not Found + File Not Found - Busy - Busy + Busy + Busy - Invalid State - Invalid State + Invalid State + Invalid State - Invalid Name - Invalid Name + Invalid Name + Invalid Name - Invalid Email - Invalid Email + Invalid Email + Invalid Email - Duplicate Name - Duplicate Name + Duplicate Name + Duplicate Name - Access Denied - Access Denied + Access Denied + Access Denied - Timeout - Timeout + Timeout + Timeout - Banned - Banned + Banned + Banned - Account Not Found - Account Not Found + Account Not Found + Account Not Found - Invalid SteamID - Invalid SteamID + Invalid SteamID + Invalid SteamID - Service Unavailable - Service Unavailable + Service Unavailable + Service Unavailable - Not Logged On - Not Logged On + Not Logged On + Not Logged On - Pending - Pending + Pending + Pending - Encryption Failure - Encryption Failure + Encryption Failure + Encryption Failure - Insufficient Privilege - Insufficient Privilege + Insufficient Privilege + Insufficient Privilege - Limit Exceeded - Limit Exceeded + Limit Exceeded + Limit Exceeded - Revoked - Revoked + Revoked + Revoked - Expired - Expired + Expired + Expired - Already Redeemed - Already Redeemed + Already Redeemed + Already Redeemed - Duplicate Request - Duplicate Request + Duplicate Request + Duplicate Request - Already Owned - Already Owned + Already Owned + Already Owned - IP Not Found - IP Not Found + IP Not Found + IP Not Found - Persist Failed - Persist Failed + Persist Failed + Persist Failed - Locking Failed - Locking Failed + Locking Failed + Locking Failed - Logon Session Replaced - Logon Session Replaced + Logon Session Replaced + Logon Session Replaced - Connect Failed - Connect Failed + Connect Failed + Connect Failed - Handshake Failed - Handshake Failed + Handshake Failed + Handshake Failed - IO Failure - IO Failure + IO Failure + IO Failure - Remote Disconnect - Remote Disconnect + Remote Disconnect + Remote Disconnect - Shopping Cart Not Found - Shopping Cart Not Found + Shopping Cart Not Found + Shopping Cart Not Found - Blocked - Blocked + Blocked + Blocked - Ignored - Ignored + Ignored + Ignored - No Match - No Match + No Match + No Match - Account Disabled - Account Disabled + Account Disabled + Account Disabled - Service ReadOnly - Service ReadOnly + Service ReadOnly + Service ReadOnly - Account Not Featured - Account Not Featured + Account Not Featured + Account Not Featured - Administrator OK - Administrator OK + Administrator OK + Administrator OK - Content Version - Content Version + Content Version + Content Version - Try Another CM - Try Another CM + Try Another CM + Try Another CM - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Already Logged In Elsewhere + Already Logged In Elsewhere + Already Logged In Elsewhere - Suspended - Suspended + Suspended + Suspended - Cancelled - Cancelled + Cancelled + Cancelled - Data Corruption - Data Corruption + Data Corruption + Data Corruption - Disk Full - Disk Full + Disk Full + Disk Full - Remote Call Failed - Remote Call Failed + Remote Call Failed + Remote Call Failed - Password Unset - Password Unset + Password Unset + Password Unset - External Account Unlinked - External Account Unlinked + External Account Unlinked + External Account Unlinked - PSN Ticket Invalid - PSN Ticket Invalid + PSN Ticket Invalid + PSN Ticket Invalid - External Account Already Linked - External Account Already Linked + External Account Already Linked + External Account Already Linked - Remote File Conflict - Remote File Conflict + Remote File Conflict + Remote File Conflict - Illegal Password - Illegal Password + Illegal Password + Illegal Password - Same As Previous Value - Same As Previous Value + Same As Previous Value + Same As Previous Value - Account Logon Denied - Account Logon Denied + Account Logon Denied + Account Logon Denied - Cannot Use Old Password - Cannot Use Old Password + Cannot Use Old Password + Cannot Use Old Password - Invalid Login AuthCode - Invalid Login AuthCode + Invalid Login AuthCode + Invalid Login AuthCode - Account Logon Denied No Mail - Account Logon Denied No Mail + Account Logon Denied No Mail + Account Logon Denied No Mail - Hardware Not Capable Of IPT - Hardware Not Capable Of IPT + Hardware Not Capable Of IPT + Hardware Not Capable Of IPT - IPT Init Error - IPT Init Error + IPT Init Error + IPT Init Error - Parental Control Restricted - Parental Control Restricted + Parental Control Restricted + Parental Control Restricted - Facebook Query Error - Facebook Query Error + Facebook Query Error + Facebook Query Error - Expired Login Auth Code - Expired Login Auth Code + Expired Login Auth Code + Expired Login Auth Code - IP Login Restriction Failed - IP Login Restriction Failed + IP Login Restriction Failed + IP Login Restriction Failed - Account Locked Down - Account Locked Down + Account Locked Down + Account Locked Down - Account Logon Denied Verified Email Required - Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required + Account Logon Denied Verified Email Required - No MatchingURL - No MatchingURL + No MatchingURL + No MatchingURL - Bad Response - Bad Response + Bad Response + Bad Response - Require Password ReEntry - Require Password ReEntry + Require Password ReEntry + Require Password ReEntry - Value Out Of Range - Value Out Of Range + Value Out Of Range + Value Out Of Range - Unexpecte Error - Unexpecte Error + Unexpecte Error + Unexpecte Error - Disabled - Disabled + Disabled + Disabled - Invalid CEG Submission - Invalid CEG Submission + Invalid CEG Submission + Invalid CEG Submission - Restricted Device - Restricted Device + Restricted Device + Restricted Device - Region Locked - Region Locked + Region Locked + Region Locked - Rate Limit Exceeded - Rate Limit Exceeded + Rate Limit Exceeded + Rate Limit Exceeded - Account Login Denied Need Two Factor - Account Login Denied Need Two Factor + Account Login Denied Need Two Factor + Account Login Denied Need Two Factor - Item Deleted - Item Deleted + Item Deleted + Item Deleted - Account Login Denied Throttle - Account Login Denied Throttle + Account Login Denied Throttle + Account Login Denied Throttle - Two Factor Code Mismatch - Two Factor Code Mismatch + Two Factor Code Mismatch + Two Factor Code Mismatch - Two Factor Activation Code Mismatch - Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch + Two Factor Activation Code Mismatch - Account Associated To Multiple Partners - Account Associated To Multiple Partners + Account Associated To Multiple Partners + Account Associated To Multiple Partners - Not Modified - Not Modified + Not Modified + Not Modified - No Mobile Device - No Mobile Device + No Mobile Device + No Mobile Device - Time Not Synced - Time Not Synced + Time Not Synced + Time Not Synced - Sms Code Failed - Sms Code Failed + Sms Code Failed + Sms Code Failed - Account Limit Exceeded - Account Limit Exceeded + Account Limit Exceeded + Account Limit Exceeded - Account Activity Limit Exceeded - Account Activity Limit Exceeded + Account Activity Limit Exceeded + Account Activity Limit Exceeded - Phone Activity Limit Exceeded - Phone Activity Limit Exceeded + Phone Activity Limit Exceeded + Phone Activity Limit Exceeded - Refund To Wallet - Refund To Wallet + Refund To Wallet + Refund To Wallet - Email Send Failure - Email Send Failure + Email Send Failure + Email Send Failure - Not Settled - Not Settled + Not Settled + Not Settled - Need Captcha - Need Captcha + Need Captcha + Need Captcha - GSLT Denied - GSLT Denied + GSLT Denied + GSLT Denied - GS Owner Denied - GS Owner Denied + GS Owner Denied + GS Owner Denied - Invalid Item Type - Invalid Item Type + Invalid Item Type + Invalid Item Type - IP Banned - IP Banned + IP Banned + IP Banned - GSLT Expired - GSLT Expired + GSLT Expired + GSLT Expired - Insufficient Funds - Insufficient Funds + Insufficient Funds + Insufficient Funds - Too Many Pending - Too Many Pending + Too Many Pending + Too Many Pending - No Site Licenses Found - No Site Licenses Found + No Site Licenses Found + No Site Licenses Found - WG Network Send Exceeded - WG Network Send Exceeded + WG Network Send Exceeded + WG Network Send Exceeded - Account Not Friends - Account Not Friends + Account Not Friends + Account Not Friends - Limited User Account - Limited User Account + Limited User Account + Limited User Account - Cant Remove Item - Cant Remove Item + Cant Remove Item + Cant Remove Item - Account Deleted - Account Deleted + Account Deleted + Account Deleted - Existing User Cancelled License - Existing User Cancelled License + Existing User Cancelled License + Existing User Cancelled License - Community Cooldown - Community Cooldown + Community Cooldown + Community Cooldown - Status: - Status: + Status: + Status: - Upload Progress: - Upload Progress: + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - Create a Website Wallpaper - Create a Website Wallpaper + Create a Website Wallpaper + Create a Website Wallpaper - General - General + General + General - Wallpaper name - Wallpaper name + Wallpaper name + Wallpaper name - Created By - Created By + Created By + Created By - Description - Description + Description + Description - Tags - Tags + Tags + Tags - Preview Image - Preview Image + Preview Image + Preview Image - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage - Save - Save + Save + Save - Saving... - Saving... + Saving... + Saving... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - Download complete! - Download complete! + Download complete! + Download complete! - - + + XMLNewsfeed - News & Patchnotes - News & Patchnotes + News & Patchnotes + News & Patchnotes - + diff --git a/ScreenPlay/translations/ScreenPlay_vi_VN.ts b/ScreenPlay/translations/ScreenPlay_vi_VN.ts index ffe4ed15..6756d3ce 100644 --- a/ScreenPlay/translations/ScreenPlay_vi_VN.ts +++ b/ScreenPlay/translations/ScreenPlay_vi_VN.ts @@ -1,1945 +1,1953 @@ - + ColorPicker - Red - Đỏ + Red + Đỏ - Green - Xanh lá + Green + Xanh lá - Blue - Xanh dương + Blue + Xanh dương - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - Đỏ: + R: + Đỏ: - G: - Xanh lá: + G: + Xanh lá: - B: - Xanh dương: + B: + Xanh dương: - H: - Màu: + H: + Màu: - S: - Độ bão hòa: + S: + Độ bão hòa: - V: - Giá trị: + V: + Giá trị: - Alpha: - Độ trong suốt: + Alpha: + Độ trong suốt: - # - # + # + # - - + + Community - News - Tin tức + News + Tin tức - Wiki - Wiki + Wiki + Wiki - Forum - Diễn đàn + Forum + Diễn đàn - Contribute - Đóng góp + Contribute + Đóng góp - Steam Workshop - Steam Workshop + Steam Workshop + Steam Workshop - Issue Tracker - Issue Tracker + Issue Tracker + Issue Tracker - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - Mở trong trình duyệt + Open in browser + Mở trong trình duyệt - - + + CreateWallpaperInit - Import any video type - Nhập bất kì loại video + Import any video type + Nhập bất kì loại video - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Tùy thuộc vào cấu hình của PC mà việc chuyển đổi ảnh động của bạn sang một dạng video khác sẽ tốt hơn. Nếu cả hai đều có hiệu năng kém thì bạn có thể dùng một ảnh động QML!. Các loại video hỗ trợ: + Tùy thuộc vào cấu hình của PC mà việc chuyển đổi ảnh động của bạn sang một dạng video khác sẽ tốt hơn. Nếu cả hai đều có hiệu năng kém thì bạn có thể dùng một ảnh động QML!. Các loại video hỗ trợ: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - Chọn loại video mà bạn muốn: + Set your preffered video codec: + Chọn loại video mà bạn muốn: - Quality slider. Lower value means better quality. - Chất lượng video: Giá trị thấp hơn đồng nghĩa với việc chất lượng cao hơn. + Quality slider. Lower value means better quality. + Chất lượng video: Giá trị thấp hơn đồng nghĩa với việc chất lượng cao hơn. - Open Documentation - Mở tài liệu tham khảo + Open Documentation + Mở tài liệu tham khảo - Select file - Chọn tệp + Select file + Chọn tệp - - + + CreateWallpaperResult - An error occurred! - Đã có lỗi xảy ra! + An error occurred! + Đã có lỗi xảy ra! - Copy text to clipboard - Sao chép vào khay nhớ tạm + Copy text to clipboard + Sao chép vào khay nhớ tạm - Back to create and send an error report! - Quay trở lại việc tạo ảnh động và gửi một báo cáo lỗi! + Back to create and send an error report! + Quay trở lại việc tạo ảnh động và gửi một báo cáo lỗi! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - Đang tạo ra ảnh xem trước... + Generating preview image... + Đang tạo ra ảnh xem trước... - Generating preview thumbnail image... - Đang tạo ra hình thu nhỏ xem trước... + Generating preview thumbnail image... + Đang tạo ra hình thu nhỏ xem trước... - Generating 5 second preview video... - Đang tao ra video 5 giây xem trước... + Generating 5 second preview video... + Đang tao ra video 5 giây xem trước... - Generating preview gif... - Đang tạo ra gif xem trước... + Generating preview gif... + Đang tạo ra gif xem trước... - Converting Audio... - Đang chuyển đổi dạng âm thanh... + Converting Audio... + Đang chuyển đổi dạng âm thanh... - Converting Video... This can take some time! - Đang chuyển đổi dạng video... Việc này có thể tốn kha khá thời gian! + Converting Video... This can take some time! + Đang chuyển đổi dạng video... Việc này có thể tốn kha khá thời gian! - Converting Video ERROR! - Đã có lỗi xảy ra khi chuyển đổi dạng video! + Converting Video ERROR! + Đã có lỗi xảy ra khi chuyển đổi dạng video! - Analyse Video ERROR! - Đã có lỗi xảy ra khi đang xử lý video! + Analyse Video ERROR! + Đã có lỗi xảy ra khi đang xử lý video! - Convert a video to a wallpaper - Chuyển đổi một video sang ảnh động + Convert a video to a wallpaper + Chuyển đổi một video sang ảnh động - Generating preview video... - Đang tạo ra video xem trước... + Generating preview video... + Đang tạo ra video xem trước... - Name (required!) - Tên (bắt buộc!) + Name (required!) + Tên (bắt buộc!) - Description - Mô tả + Description + Mô tả - Youtube URL - Link YouTube + Youtube URL + Link YouTube - Abort - Hủy bỏ + Abort + Hủy bỏ - Save - Lưu + Save + Lưu - Save Wallpaper... - Lưu hình nền... + Save Wallpaper... + Lưu hình nền... - - + + DefaultVideoControls - Volume - Âm lượng + Volume + Âm lượng - Playback rate - Tốc độ phát lại + Playback rate + Tốc độ phát lại - Current Video Time - Thời gian video hiện tại + Current Video Time + Thời gian video hiện tại - Fill Mode - Cách lấp đầy + Fill Mode + Cách lấp đầy - Stretch - Kéo dài + Stretch + Kéo dài - Fill - Lấp đầy + Fill + Lấp đầy - Contain - Chứa đựng + Contain + Chứa đựng - Cover - Bao phủ + Cover + Bao phủ - Scale_Down - Giảm tỉ lệ + Scale_Down + Giảm tỉ lệ - - + + FileSelector - Clear - Xóa + Clear + Xóa - Select File - Chọn một tệp + Select File + Chọn một tệp - Please choose a file - Xin hãy chọn một tệp + Please choose a file + Xin hãy chọn một tệp - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Install Steam Version - Install Steam Version + Install Steam Version + Install Steam Version - Open In Browser - Open In Browser + Open In Browser + Open In Browser - - + + GifWallpaper - Import a Gif Wallpaper - Nhập một ảnh động gif + Import a Gif Wallpaper + Nhập một ảnh động gif - Drop a *.gif file here or use 'Select file' below. - Thả một tệp *.gif vào đây hoặc nhấn nút 'Chọn một tệp' ở dưới đây. + Drop a *.gif file here or use 'Select file' below. + Thả một tệp *.gif vào đây hoặc nhấn nút 'Chọn một tệp' ở dưới đây. - Select your gif - Chọn gif của bạn + Select your gif + Chọn gif của bạn - General - Chung + General + Chung - Wallpaper name - Tên ảnh động + Wallpaper name + Tên ảnh động - Created By - Đươc tạo bởi + Created By + Đươc tạo bởi - Tags - Thẻ + Tags + Thẻ - - + + HTMLWallpaper - Create a HTML Wallpaper - Tạo một ảnh động HTML + Create a HTML Wallpaper + Tạo một ảnh động HTML - General - Chung + General + Chung - Wallpaper name - Tên ảnh động + Wallpaper name + Tên ảnh động - Created By - Được tạo bởi + Created By + Được tạo bởi - Description - Mô tả + Description + Mô tả - License & Tags - Bản quyền & Thẻ + License & Tags + Bản quyền & Thẻ - Preview Image - Ảnh xem trước + Preview Image + Ảnh xem trước - - + + HTMLWidget - Create a HTML widget - Tạo một widget HTML + Create a HTML widget + Tạo một widget HTML - General - Chung + General + Chung - Widget name - Tên widget + Widget name + Tên widget - Created by - Đươc tạo bởi + Created by + Đươc tạo bởi - Tags - Thẻ + Tags + Thẻ - - + + HeadlineSection - Headline Section - Phần tiêu đề + Headline Section + Phần tiêu đề - - + + ImageSelector - Set your own preview image - Đặt ảnh xem trước của bạn + Set your own preview image + Đặt ảnh xem trước của bạn - Clear - Xóa + Clear + Xóa - Select Preview Image - Chọn ảnh xem trước + Select Preview Image + Chọn ảnh xem trước - - + + ImportWebmConvert - - + + - AnalyseVideo... - Đang xử lý video... + AnalyseVideo... + Đang xử lý video... - Generating preview image... - Đang tạo ra ảnh xem trước... + Generating preview image... + Đang tạo ra ảnh xem trước... - Generating preview thumbnail image... - Đang tạo ra hình thu nhỏ xem trước... + Generating preview thumbnail image... + Đang tạo ra hình thu nhỏ xem trước... - Generating 5 second preview video... - Đang tao ra video 5 giây xem trước... + Generating 5 second preview video... + Đang tao ra video 5 giây xem trước... - Generating preview gif... - Đang tạo ra gif xem trước... + Generating preview gif... + Đang tạo ra gif xem trước... - Converting Audio... - Đang chuyển đổi dạng âm thanh... + Converting Audio... + Đang chuyển đổi dạng âm thanh... - Converting Video... This can take some time! - Đang chuyển đổi dạng video... Việc này có thể tốn kha khá thời gian! + Converting Video... This can take some time! + Đang chuyển đổi dạng video... Việc này có thể tốn kha khá thời gian! - Converting Video ERROR! - Đã có lỗi xảy ra khi chuyển đổi dạng video! + Converting Video ERROR! + Đã có lỗi xảy ra khi chuyển đổi dạng video! - Analyse Video ERROR! - Đã có lỗi xảy ra khi đang xử lý video! + Analyse Video ERROR! + Đã có lỗi xảy ra khi đang xử lý video! - Import a video to a wallpaper - Nhập một video vào hình nền + Import a video to a wallpaper + Nhập một video vào hình nền - Generating preview video... - Đang tạo ra video xem trước... + Generating preview video... + Đang tạo ra video xem trước... - Name (required!) - Tên (bắt buộc!) + Name (required!) + Tên (bắt buộc!) - Description - Mô tả + Description + Mô tả - Youtube URL - Link YouTube + Youtube URL + Link YouTube - Abort - Hủy bỏ + Abort + Hủy bỏ - Save - Lưu + Save + Lưu - Save Wallpaper... - Lưu hình nền... + Save Wallpaper... + Lưu hình nền... - - + + ImportWebmInit - Import a .webm video - Nhập một tệp webm + Import a .webm video + Nhập một tệp webm - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - Khi mà nhập tệp webm chúng ta có thể bỏ qua quá trình chuyển đổi. Khi mà bạn có được kết quả không thỏa mãn với trình nhập tệp tất cả các loại video của ScreenPlay thì bạn cũng có thể sử dụng công cụ mã nguồn mở HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + Khi mà nhập tệp webm chúng ta có thể bỏ qua quá trình chuyển đổi. Khi mà bạn có được kết quả không thỏa mãn với trình nhập tệp tất cả các loại video của ScreenPlay thì bạn cũng có thể sử dụng công cụ mã nguồn mở HandBrake! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - Loại tệp không hợp lệ. Bắt buộc phải là tệp VP8 hoặc VP9 hợp lệ (*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + Loại tệp không hợp lệ. Bắt buộc phải là tệp VP8 hoặc VP9 hợp lệ (*.webm)! - Drop a *.webm file here or use 'Select file' below. - Thả một tệp *.webm vào đây hoặc nhấn nút 'Chọn một tệp' ở dưới đây. + Drop a *.webm file here or use 'Select file' below. + Thả một tệp *.webm vào đây hoặc nhấn nút 'Chọn một tệp' ở dưới đây. - Open Documentation - Mở tài liệu tham khảo + Open Documentation + Mở tài liệu tham khảo - Select file - Chọn một tệp + Select file + Chọn một tệp - - + + Importh264Convert - AnalyseVideo... - AnalyseVideo... + AnalyseVideo... + AnalyseVideo... - Generating preview image... - Generating preview image... + Generating preview image... + Generating preview image... - Generating preview thumbnail image... - Generating preview thumbnail image... + Generating preview thumbnail image... + Generating preview thumbnail image... - Generating 5 second preview video... - Generating 5 second preview video... + Generating 5 second preview video... + Generating 5 second preview video... - Generating preview gif... - Generating preview gif... + Generating preview gif... + Generating preview gif... - Converting Audio... - Converting Audio... + Converting Audio... + Converting Audio... - Converting Video... This can take some time! - Converting Video... This can take some time! + Converting Video... This can take some time! + Converting Video... This can take some time! - Converting Video ERROR! - Converting Video ERROR! + Converting Video ERROR! + Converting Video ERROR! - Analyse Video ERROR! - Analyse Video ERROR! + Analyse Video ERROR! + Analyse Video ERROR! - Import a video to a wallpaper - Import a video to a wallpaper + Import a video to a wallpaper + Import a video to a wallpaper - Generating preview video... - Generating preview video... + Generating preview video... + Generating preview video... - Name (required!) - Name (required!) + Name (required!) + Name (required!) - Description - Description + Description + Description - Youtube URL - Youtube URL + Youtube URL + Youtube URL - Abort - Abort + Abort + Abort - Save - Save + Save + Save - Save Wallpaper... - Save Wallpaper... + Save Wallpaper... + Save Wallpaper... - - + + Importh264Init - Import a .mp4 video - Import a .mp4 video + Import a .mp4 video + Import a .mp4 video - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - Invalid file type. Must be valid h264 (*.mp4)! - Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. + Drop a *.mp4 file here or use 'Select file' below. - Open Documentation - Open Documentation + Open Documentation + Open Documentation - Select file - Select file + Select file + Select file - - + + Installed - - + + - Refreshing! - Đang làm mới! + Refreshing! + Đang làm mới! - Pull to refresh! - Kéo xuống để làm mới! + Pull to refresh! + Kéo xuống để làm mới! - Get more Wallpaper & Widgets via the Steam workshop! - Lấy thêm nhiều hình nền & widgets từ Steam Workshop! + Get more Wallpaper & Widgets via the Steam workshop! + Lấy thêm nhiều hình nền & widgets từ Steam Workshop! - Open containing folder - Mở thư mục chứa hình nền. + Open containing folder + Mở thư mục chứa hình nền. - Remove Item - Xóa hình nền + Remove Item + Xóa hình nền - Remove via Workshop - Xóa nhờ Workshop + Remove via Workshop + Xóa nhờ Workshop - Open Workshop Page - Mở trang workshop + Open Workshop Page + Mở trang workshop - Are you sure you want to delete this item? - Bạn có chắc chắn muốn xóa hình nền này không? + Are you sure you want to delete this item? + Bạn có chắc chắn muốn xóa hình nền này không? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - Lấy thêm nhiều hình nền & widgets từ Steam Workshop + Get free Widgets and Wallpaper via the Steam Workshop + Lấy thêm nhiều hình nền & widgets từ Steam Workshop - Browse the Steam Workshop - Duyệt qua Steam Workshop + Browse the Steam Workshop + Duyệt qua Steam Workshop - - + + LicenseSelector - License - Bản quyền + License + Bản quyền - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - Chia sẻ - sao chép và phân phối lại tài liệu ở bất kỳ phương tiện hoặc định dạng nào. Thích ứng - phối lại, biến đổi và xây dựng dựa trên chất liệu cho bất kỳ mục đích nào, kể cả về mặt thương mại. + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + Chia sẻ - sao chép và phân phối lại tài liệu ở bất kỳ phương tiện hoặc định dạng nào. Thích ứng - phối lại, biến đổi và xây dựng dựa trên chất liệu cho bất kỳ mục đích nào, kể cả về mặt thương mại. - You grant other to remix your work and change the license to their liking. - You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. + You grant other to remix your work and change the license to their liking. - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Chia sẻ - sao chép và phân phối lại tài liệu ở bất kỳ phương tiện hoặc định dạng nào. Thích ứng - phối lại, chuyển đổi và xây dựng dựa trên chất liệu. Bạn không được phép sử dụng nó cho mục đích thương mại! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Chia sẻ - sao chép và phân phối lại tài liệu ở bất kỳ phương tiện hoặc định dạng nào. Thích ứng - phối lại, chuyển đổi và xây dựng dựa trên chất liệu. Bạn không được phép sử dụng nó cho mục đích thương mại! - You allow everyone to do anything with your work. - Bạn cho phép mọi người làm bất cứ điều gì với thành quả của bạn. + You allow everyone to do anything with your work. + Bạn cho phép mọi người làm bất cứ điều gì với thành quả của bạn. - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - Bạn cấp cho người khác để phối lại tác phẩm của bạn nhưng nó phải vẫn theo GPLv3. Chúng tôi đề xuất giấy phép này cho tất cả các hình nền mã! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + Bạn cấp cho người khác để phối lại tác phẩm của bạn nhưng nó phải vẫn theo GPLv3. Chúng tôi đề xuất giấy phép này cho tất cả các hình nền mã! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - Bạn không chia sẻ bất kỳ quyền nào và không ai được phép sử dụng hoặc phối lại nó (Không khuyến khích). Cũng có thể được sử dụng để ghi thành quả của người khác. + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + Bạn không chia sẻ bất kỳ quyền nào và không ai được phép sử dụng hoặc phối lại nó (Không khuyến khích). Cũng có thể được sử dụng để ghi thành quả của người khác. - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - Thiết lập màn hình của bạn đã thay đổi! + Thiết lập màn hình của bạn đã thay đổi! Xin hãy thiết lập lại hình nền của bạn. - - + + Monitors - Wallpaper Configuration - Cấu hình ảnh động + Wallpaper Configuration + Cấu hình ảnh động - Remove selected - Xóa mục đã chọn + Remove selected + Xóa mục đã chọn - Wallpapers - Ảnh động + Wallpapers + Ảnh động - Widgets - Widgets + Widgets + Widgets - Remove all - Remove all + Remove all + Remove all - - + + MonitorsProjectSettingItem - Set color - Đặt màu + Set color + Đặt màu - Please choose a color - Xin hãy chọn một màu + Please choose a color + Xin hãy chọn một màu - - + + Navigation - All - Tất cả + All + Tất cả - Scenes - Cảnh + Scenes + Cảnh - Videos - Videos + Videos + Videos - Widgets - Widgets + Widgets + Widgets - Install Date Ascending - Ngày cài đặt tăng dần + Install Date Ascending + Ngày cài đặt tăng dần - Install Date Descending - Ngày cài đặt giảm dần + Install Date Descending + Ngày cài đặt giảm dần - Subscribed items: - Những mục đã đăng ký: + Subscribed items: + Những mục đã đăng ký: - Upload to the Steam Workshop - Tải lên Steam Workshop + Upload to the Steam Workshop + Tải lên Steam Workshop - Create - Create + Create + Create - Workshop - Workshop + Workshop + Workshop - Installed - Installed + Installed + Installed - Community - Community + Community + Community - Settings - Settings + Settings + Settings - Mute/Unmute all Wallpaper - Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper + Mute/Unmute all Wallpaper - Pause/Play all Wallpaper - Pause/Play all Wallpaper + Pause/Play all Wallpaper + Pause/Play all Wallpaper - Configure Wallpaper - Configure Wallpaper + Configure Wallpaper + Configure Wallpaper - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. + Support me on Patreon! + Support me on Patreon! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + Close All Content + Close All Content - - Support me on Patreon! - Support me on Patreon! - - - Close All Content - Close All Content - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - Bạn cần chạy Steam để làm việc này ´。• ω •。` ♡ steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + Quay lại - Back - Quay lại + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - Bạn phải chấp nhận thỏa thuận người đăng ký của Steam trước + You Need to Agree To The Steam Subscriber Agreement First + Bạn phải chấp nhận thỏa thuận người đăng ký của Steam trước - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - YÊU CẦU KẾT NỐI INTERNET VÀ TÀI KHOẢN STEAM MIỄN PHÍ ĐỂ KÍCH HOẠT. Thông báo: Sản phẩm được cung cấp tùy thuộc vào việc bạn chấp nhận Thỏa thuận người đăng ký Steam (SSA). Bạn phải kích hoạt sản phẩm này qua Internet bằng cách đăng ký tài khoản Steam và chấp nhận SSA. Vui lòng xem https://store.steampowered.com/subscriber_agosystem/ để xem SSA trước khi mua. Nếu bạn không đồng ý với các quy định của SSA, bạn nên trả lại trò chơi chưa mở này cho nhà bán lẻ của bạn theo chính sách hoàn trả của họ. + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + YÊU CẦU KẾT NỐI INTERNET VÀ TÀI KHOẢN STEAM MIỄN PHÍ ĐỂ KÍCH HOẠT. Thông báo: Sản phẩm được cung cấp tùy thuộc vào việc bạn chấp nhận Thỏa thuận người đăng ký Steam (SSA). Bạn phải kích hoạt sản phẩm này qua Internet bằng cách đăng ký tài khoản Steam và chấp nhận SSA. Vui lòng xem https://store.steampowered.com/subscriber_agosystem/ để xem SSA trước khi mua. Nếu bạn không đồng ý với các quy định của SSA, bạn nên trả lại trò chơi chưa mở này cho nhà bán lẻ của bạn theo chính sách hoàn trả của họ. - View The Steam Subscriber Agreement - Xem thỏa thuận người đăng ký của Steam + View The Steam Subscriber Agreement + Xem thỏa thuận người đăng ký của Steam - Accept Steam Workshop Agreement - Chấp nhận thỏa thuận của Steam Workshop + Accept Steam Workshop Agreement + Chấp nhận thỏa thuận của Steam Workshop - - + + QMLWallpaper - Create a QML Wallpaper - Tạo một ảnh động QML + Create a QML Wallpaper + Tạo một ảnh động QML - General - Chung + General + Chung - Wallpaper name - Tên ảnh động + Wallpaper name + Tên ảnh động - Created By - Đươc tạo bởi + Created By + Đươc tạo bởi - Description - Mô tả + Description + Mô tả - License & Tags - Bản quyền & Thẻ + License & Tags + Bản quyền & Thẻ - Preview Image - Ảnh xem trước + Preview Image + Ảnh xem trước - - + + QMLWidget - Create a QML widget - Tạo một widget QML + Create a QML widget + Tạo một widget QML - General - Chung + General + Chung - Widget name - Tên widget + Widget name + Tên widget - Created by - Đươc tạo bởi + Created by + Đươc tạo bởi - Tags - Thẻ + Tags + Thẻ - - + + SaveNotification - Profile saved successfully! - Đã lưu cấu hình thành công! + Profile saved successfully! + Đã lưu cấu hình thành công! - - + + ScreenPlayItem - NEW - MỚI + NEW + MỚI - - + + Search - Search for Wallpaper & Widgets - Tìm ảnh động & widgets + Search for Wallpaper & Widgets + Tìm ảnh động & widgets - - + + Settings - General - Chung + General + Chung - Autostart - Tự động mở + Autostart + Tự động mở - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay sẽ chạy cùng với Windows và sẽ thiết lập màn hình nền cho bạn. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay sẽ chạy cùng với Windows và sẽ thiết lập màn hình nền cho bạn. - High priority Autostart - Tự động mở ưu tiên hơn + High priority Autostart + Tự động mở ưu tiên hơn - This options grants ScreenPlay a higher autostart priority than other apps. - Tùy chọn này cho phép ScreenPlay quyền tự động chạy ưu tiên hơn những ứng dụng khác. + This options grants ScreenPlay a higher autostart priority than other apps. + Tùy chọn này cho phép ScreenPlay quyền tự động chạy ưu tiên hơn những ứng dụng khác. - Send anonymous crash reports and statistics - Gửi báo cáo sự cố và só liệu thống kê ẩn danh + Send anonymous crash reports and statistics + Gửi báo cáo sự cố và só liệu thống kê ẩn danh - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - Giúp chúng tôi làm ScreenPlay trở nên nhanh và ổn định hơn. Tất cả các dữ liệu thu thập được đều là ẩn danh và chỉ được sử dụng cho mục đích phát triển! Chúng tôi dùng <a href="https://sentry.io">sentry.io</a> để thu thập và xử lý dữ liệu này. Một <b>sự cảm ơn lớn dành cho họ</b> vì đã cung cấp cho chúng tôi bản trả phí miễn phí cho những dự án mã nguồn mở! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + Giúp chúng tôi làm ScreenPlay trở nên nhanh và ổn định hơn. Tất cả các dữ liệu thu thập được đều là ẩn danh và chỉ được sử dụng cho mục đích phát triển! Chúng tôi dùng <a href="https://sentry.io">sentry.io</a> để thu thập và xử lý dữ liệu này. Một <b>sự cảm ơn lớn dành cho họ</b> vì đã cung cấp cho chúng tôi bản trả phí miễn phí cho những dự án mã nguồn mở! - Set save location - Đặt vị trí lưu + Set save location + Đặt vị trí lưu - Set location - Đặt vị trí + Set location + Đặt vị trí - Your storage path is empty! - Đường dẫn lưu trữ của bạn đang trống! + Your storage path is empty! + Đường dẫn lưu trữ của bạn đang trống! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - Quan trọng: Thay đổi thư mục này không có hiệu ứng gì ở thư mục tải về của workshop. ScreenPlay chỉ hỗ trợ có một thư mục chứa nội dung! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + Quan trọng: Thay đổi thư mục này không có hiệu ứng gì ở thư mục tải về của workshop. ScreenPlay chỉ hỗ trợ có một thư mục chứa nội dung! - Language - Ngôn ngữ + Language + Ngôn ngữ - Set the ScreenPlay UI Language - Đặt ngôn ngữ của ScreenPlay + Set the ScreenPlay UI Language + Đặt ngôn ngữ của ScreenPlay - Theme - Chủ đề + Theme + Chủ đề - Switch dark/light theme - Chuyển chủ để sáng/tôí + Switch dark/light theme + Chuyển chủ để sáng/tôí - System Default - Mặc định theo hệ thống + System Default + Mặc định theo hệ thống - Dark - Tối + Dark + Tối - Light - Sáng + Light + Sáng - Performance - Hiệu suất + Performance + Hiệu suất - Pause wallpaper video rendering while another app is in the foreground - Tạm dừng ảnh nền video khi có một ứng dụng khác đang mở phía trước + Pause wallpaper video rendering while another app is in the foreground + Tạm dừng ảnh nền video khi có một ứng dụng khác đang mở phía trước - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Chúng tôi tắt hiển thị video (không phải âm thanh!) Để có hiệu suất tốt nhất. Nếu bạn gặp sự cố, bạn có thể vô hiệu hóa hành vi này tại đây. Yêu cầu khởi động lại hình nền! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + Chúng tôi tắt hiển thị video (không phải âm thanh!) Để có hiệu suất tốt nhất. Nếu bạn gặp sự cố, bạn có thể vô hiệu hóa hành vi này tại đây. Yêu cầu khởi động lại hình nền! - Default Fill Mode - Cách lấp đầy mặc định + Default Fill Mode + Cách lấp đầy mặc định - Set this property to define how the video is scaled to fit the target area. - Đặt thuộc tính này để xác định cách chia tỷ lệ video để phù hợp với khu vực mục tiêu. + Set this property to define how the video is scaled to fit the target area. + Đặt thuộc tính này để xác định cách chia tỷ lệ video để phù hợp với khu vực mục tiêu. - Stretch - Kéo dài + Stretch + Kéo dài - Fill - Lấp đầy + Fill + Lấp đầy - Contain - Chứa đựng + Contain + Chứa đựng - Cover - Bao phủ + Cover + Bao phủ - Scale-Down - Giảm tỉ lệ + Scale-Down + Giảm tỉ lệ - About - Về ứng dụng + About + Về ứng dụng - Thank you for using ScreenPlay - Cảm ơn bạn vì đã sử dụng ScreenPlay + Thank you for using ScreenPlay + Cảm ơn bạn vì đã sử dụng ScreenPlay - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Chào, tôi là Elias Steurer hay được biết đến là Kelteseth và tôi là người phát triển của ScreenPlay. Cảm ơn bạn đã sử dụng phần mềm của tôi. Bạn có thể theo dõi tôi để nhận được những cập nhật về ScreenPlay tại: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Chào, tôi là Elias Steurer hay được biết đến là Kelteseth và tôi là người phát triển của ScreenPlay. Cảm ơn bạn đã sử dụng phần mềm của tôi. Bạn có thể theo dõi tôi để nhận được những cập nhật về ScreenPlay tại: - Version - Phiên bản + Version + Phiên bản - Open Changelog - Mở nhật kí thay đổi + Open Changelog + Mở nhật kí thay đổi - Third Party Software - Phần mềm của bên thứ ba + Third Party Software + Phần mềm của bên thứ ba - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay sẽ không thể có được nếu như không có thành quả của những người khác. Một lời cảm ơn lớn đến: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay sẽ không thể có được nếu như không có thành quả của những người khác. Một lời cảm ơn lớn đến: - Licenses - Bản quyền + Licenses + Bản quyền - Logs - Nhật kí + Logs + Nhật kí - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Nếu ScreenPlay của bạn hoạt động sai thì đây là một cách tốt để tìm câu trả lời. Ở đây hiện tất cả các nhật kí và cảnh báo trong khi chạy + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + Nếu ScreenPlay của bạn hoạt động sai thì đây là một cách tốt để tìm câu trả lời. Ở đây hiện tất cả các nhật kí và cảnh báo trong khi chạy - Show Logs - Hiện nhật kí + Show Logs + Hiện nhật kí - Data Protection - Bảo vệ dữ liệu + Data Protection + Bảo vệ dữ liệu - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Chúng tôi sử dụng dữ liệu của bạn rất cẩn thận để cải thiện ScreenPlay. Chúng tôi không bán hoặc chia sẻ thông tin này (ẩn danh) với người khác! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + Chúng tôi sử dụng dữ liệu của bạn rất cẩn thận để cải thiện ScreenPlay. Chúng tôi không bán hoặc chia sẻ thông tin này (ẩn danh) với người khác! - Privacy - Quyền riêng tư + Privacy + Quyền riêng tư - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay Build Version - - + + SettingsExpander - Copy text to clipboard - Sao chép vào khay nhớ tạm + Copy text to clipboard + Sao chép vào khay nhớ tạm - - + + Sidebar - Tools Overview - Tổng quan về công cụ + Tools Overview + Tổng quan về công cụ - Video Import h264 (.mp4) - Video Import h264 (.mp4) + Video Import h264 (.mp4) + Video Import h264 (.mp4) - Video Import VP8 & VP9 (.webm) - Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) - Video import (all types) - Video import (all types) + Video import (all types) + Video import (all types) - GIF Wallpaper - Hình nền GIF + GIF Wallpaper + Hình nền GIF - QML Wallpaper - Hình nền QML + QML Wallpaper + Hình nền QML - HTML5 Wallpaper - Hình nền HTML5 + HTML5 Wallpaper + Hình nền HTML5 - Website Wallpaper - Trang chủ của hình nền + Website Wallpaper + Trang chủ của hình nền - QML Widget - Widget QML + QML Widget + Widget QML - HTML Widget - Widget HTML + HTML Widget + Widget HTML - Set Wallpaper - Đặt hình nền + Set Wallpaper + Đặt hình nền - Set Widget - Đặt widget + Set Widget + Đặt widget - Headline - Tiêu đề + Headline + Tiêu đề - Select a Monitor to display the content - Chọn một màn hình để hiển thị nội dung + Select a Monitor to display the content + Chọn một màn hình để hiển thị nội dung - Set Volume - Chỉnh âm lượng + Set Volume + Chỉnh âm lượng - Fill Mode - Cách lấp đầy + Fill Mode + Cách lấp đầy - Stretch - Kéo dài + Stretch + Kéo dài - Fill - Lấp đầy + Fill + Lấp đầy - Contain - Chứa đựng + Contain + Chứa đựng - Cover - Bao phủ + Cover + Bao phủ - Scale-Down - Giảm tỉ lệ + Scale-Down + Giảm tỉ lệ - Size: - Kích cỡ: + Size: + Kích cỡ: - No description... - Không có mô tả... + No description... + Không có mô tả... - Click here if you like the content - Bấm vào đây nếu như bạn thích nội dung này + Click here if you like the content + Bấm vào đây nếu như bạn thích nội dung này - Click here if you do not like the content - Bấm vào đây nếu như bạn không thích nội dung này + Click here if you do not like the content + Bấm vào đây nếu như bạn không thích nội dung này - Subscribtions: - Đăng ký: + Subscribtions: + Đăng ký: - Open In Steam - Mở trong Steam + Open In Steam + Mở trong Steam - Subscribed! - Đã đăng kí! + Subscribed! + Đã đăng kí! - Subscribe - Đăng kí + Subscribe + Đăng kí - - + + StartInfo - Free tools to help you to create wallpaper - Free tools to help you to create wallpaper + Free tools to help you to create wallpaper + Free tools to help you to create wallpaper - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - - + + SteamNotAvailable - Could not load steam integration! - Không thể tải tích hợp Steam! + Could not load steam integration! + Không thể tải tích hợp Steam! - - + + SteamProfile - Back - Quay lại + Back + Quay lại - Forward - Tiếp tục + Forward + Tiếp tục - - + + SteamWorkshopStartPage - Loading - Loading + Loading + Loading - Download now! - Download now! + Download now! + Download now! - Downloading... - Downloading... + Downloading... + Downloading... - Details - Details + Details + Details - Open In Steam - Open In Steam + Open In Steam + Open In Steam - Profile - Profile + Profile + Profile - Upload - Upload + Upload + Upload - Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... - Open Workshop in Steam - Open Workshop in Steam + Open Workshop in Steam + Open Workshop in Steam - Ranked By Vote - Ranked By Vote + Ranked By Vote + Ranked By Vote - Publication Date - Publication Date + Publication Date + Publication Date - Ranked By Trend - Ranked By Trend + Ranked By Trend + Ranked By Trend - Favorited By Friends - Favorited By Friends + Favorited By Friends + Favorited By Friends - Created By Friends - Created By Friends + Created By Friends + Created By Friends - Created By Followed Users - Created By Followed Users + Created By Followed Users + Created By Followed Users - Not Yet Rated - Not Yet Rated + Not Yet Rated + Not Yet Rated - Total VotesAsc - Total VotesAsc + Total VotesAsc + Total VotesAsc - Votes Up - Votes Up + Votes Up + Votes Up - Total Unique Subscriptions - Total Unique Subscriptions + Total Unique Subscriptions + Total Unique Subscriptions - Back - Back + Back + Back - Forward - Forward + Forward + Forward - - + + TagSelector - Save - Lưu + Save + Lưu - Add tag - Thêm thẻ + Add tag + Thêm thẻ - Cancel - Hủy + Cancel + Hủy - Add Tag - Thêm thẻ + Add Tag + Thêm thẻ - - + + TextField - Label - Nhãn mác + Label + Nhãn mác - *Required - *Bắt buộc + *Required + *Bắt buộc - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - Bấm đúp để thay đổi cài đặt + ScreenPlay - Double click to change you settings. + ScreenPlay - Bấm đúp để thay đổi cài đặt - Open ScreenPlay - Mở ScreenPlay + Open ScreenPlay + Mở ScreenPlay - Mute all - Tắt tiếng tất cả hình nền + Mute all + Tắt tiếng tất cả hình nền - Unmute all - Bật tiếng tất cả hình nền + Unmute all + Bật tiếng tất cả hình nền - Pause all - Tạm dừng tất cả hình nền + Pause all + Tạm dừng tất cả hình nền - Play all - Phát tất cả hình nền + Play all + Phát tất cả hình nền - Quit - Thoát + Quit + Thoát - - + + UploadProject - Upload Wallpaper/Widgets to Steam - Tải hình nền/widgets lên Steam + Upload Wallpaper/Widgets to Steam + Tải hình nền/widgets lên Steam - Abort - Hủy bỏ + Abort + Hủy bỏ - Upload Selected Projects - Tải lên dự án đã chọn + Upload Selected Projects + Tải lên dự án đã chọn - Finish - Xong + Finish + Xong - - + + UploadProjectBigItem - Type: - Loại: + Type: + Loại: - Open Folder - Mở thư mục + Open Folder + Mở thư mục - Invalid Project! - Dự án không hợp lệ! + Invalid Project! + Dự án không hợp lệ! - - + + UploadProjectItem - Fail - Thất bại + Fail + Thất bại - No Connection - Không có kết nối + No Connection + Không có kết nối - Invalid Password - Sai mật khẩu + Invalid Password + Sai mật khẩu - Logged In Elsewhere - Đã được đăng nhập từ nơi khác + Logged In Elsewhere + Đã được đăng nhập từ nơi khác - Invalid Protocol Version - Phiên bản giao thức không hợp lệ + Invalid Protocol Version + Phiên bản giao thức không hợp lệ - Invalid Param - Tham số không hợp lệ + Invalid Param + Tham số không hợp lệ - File Not Found - Không tìm thấy tập tin + File Not Found + Không tìm thấy tập tin - Busy - Đang bận + Busy + Đang bận - Invalid State - Trạng thái không hợp lệ + Invalid State + Trạng thái không hợp lệ - Invalid Name - Tên không hợp lệ + Invalid Name + Tên không hợp lệ - Invalid Email - Email không hợp lệ + Invalid Email + Email không hợp lệ - Duplicate Name - Tên bị trùng + Duplicate Name + Tên bị trùng - Access Denied - Không có quyền truy cập + Access Denied + Không có quyền truy cập - Timeout - Hết hạn + Timeout + Hết hạn - Banned - Đã bị cấm + Banned + Đã bị cấm - Account Not Found - Không tìm thấy tài khoản + Account Not Found + Không tìm thấy tài khoản - Invalid SteamID - ID Steam không hợp lệ + Invalid SteamID + ID Steam không hợp lệ - Service Unavailable - Dịch vụ không khả dụng + Service Unavailable + Dịch vụ không khả dụng - Not Logged On - Chưa đăng nhập + Not Logged On + Chưa đăng nhập - Pending - Đang chờ xử lý + Pending + Đang chờ xử lý - Encryption Failure - Lỗi mã hóa + Encryption Failure + Lỗi mã hóa - Insufficient Privilege - Không đủ quyền truy cập + Insufficient Privilege + Không đủ quyền truy cập - Limit Exceeded - Quá giới hạn + Limit Exceeded + Quá giới hạn - Revoked - Đã thu hồi + Revoked + Đã thu hồi - Expired - Đã hết hạn + Expired + Đã hết hạn - Already Redeemed - Đã quy đổi rồi + Already Redeemed + Đã quy đổi rồi - Duplicate Request - Yêu cầu bị trùng + Duplicate Request + Yêu cầu bị trùng - Already Owned - Đã sở hữu + Already Owned + Đã sở hữu - IP Not Found - Không tìm thấy IP + IP Not Found + Không tìm thấy IP - Persist Failed - Chờ đợi thất bại + Persist Failed + Chờ đợi thất bại - Locking Failed - Khóa thất bại + Locking Failed + Khóa thất bại - Logon Session Replaced - Phiên đăng nhập đã được thay thế + Logon Session Replaced + Phiên đăng nhập đã được thay thế - Connect Failed - Kết nối thất bại + Connect Failed + Kết nối thất bại - Handshake Failed - Handshake thất bại + Handshake Failed + Handshake thất bại - IO Failure - Lỗi I/O + IO Failure + Lỗi I/O - Remote Disconnect - Ngắt kết nối từ xa + Remote Disconnect + Ngắt kết nối từ xa - Shopping Cart Not Found - Không tìm thấy giỏ hàng + Shopping Cart Not Found + Không tìm thấy giỏ hàng - Blocked - Đã bị chặn + Blocked + Đã bị chặn - Ignored - Đã bỏ qua + Ignored + Đã bỏ qua - No Match - Không có kết quả nào phù hợp + No Match + Không có kết quả nào phù hợp - Account Disabled - Tài khoản bị vô hiệu hóa + Account Disabled + Tài khoản bị vô hiệu hóa - Service ReadOnly - Dịch vụ chỉ đọc + Service ReadOnly + Dịch vụ chỉ đọc - Account Not Featured - Tài khoản không nổi bật + Account Not Featured + Tài khoản không nổi bật - Administrator OK - Quyền quản trị viên OK + Administrator OK + Quyền quản trị viên OK - Content Version - Phiên bản nội dung + Content Version + Phiên bản nội dung - Try Another CM - Hãy thử một cách khác + Try Another CM + Hãy thử một cách khác - Password Required To Kick Session - Password Required To Kick Session + Password Required To Kick Session + Password Required To Kick Session - Already Logged In Elsewhere - Đã được đăng nhập từ nơi khác + Already Logged In Elsewhere + Đã được đăng nhập từ nơi khác - Suspended - Đã tạm ngưng + Suspended + Đã tạm ngưng - Cancelled - Đã hủy + Cancelled + Đã hủy - Data Corruption - Dữ liệu bị hỏng + Data Corruption + Dữ liệu bị hỏng - Disk Full - Ổ đĩa đầy + Disk Full + Ổ đĩa đầy - Remote Call Failed - Gọi từ xa không thành công + Remote Call Failed + Gọi từ xa không thành công - Password Unset - Mật khẩu chưa được đặt + Password Unset + Mật khẩu chưa được đặt - External Account Unlinked - Tài khoản bên ngoài chưa được liên kết + External Account Unlinked + Tài khoản bên ngoài chưa được liên kết - PSN Ticket Invalid - Phiếu PSN không hợp lệ + PSN Ticket Invalid + Phiếu PSN không hợp lệ - External Account Already Linked - Tài khoản bên ngoài dã được liên kết rồi + External Account Already Linked + Tài khoản bên ngoài dã được liên kết rồi - Remote File Conflict - Tệp ở máy chủ bị xung đột + Remote File Conflict + Tệp ở máy chủ bị xung đột - Illegal Password - Mật khẩu không hợp lệ + Illegal Password + Mật khẩu không hợp lệ - Same As Previous Value - Đặt giống như giá trị trước + Same As Previous Value + Đặt giống như giá trị trước - Account Logon Denied - Đăng nhập bị từ chối + Account Logon Denied + Đăng nhập bị từ chối - Cannot Use Old Password - Không thể sử dụng mật khẩu cũ + Cannot Use Old Password + Không thể sử dụng mật khẩu cũ - Invalid Login AuthCode - Mã xác minh đăng nhập không hợp lệ + Invalid Login AuthCode + Mã xác minh đăng nhập không hợp lệ - Account Logon Denied No Mail - Đăng nhập thất bại, không có thư + Account Logon Denied No Mail + Đăng nhập thất bại, không có thư - Hardware Not Capable Of IPT - Phần cứng không hỗ trợ IPT + Hardware Not Capable Of IPT + Phần cứng không hỗ trợ IPT - IPT Init Error - Lỗi bắt đầu IPT + IPT Init Error + Lỗi bắt đầu IPT - Parental Control Restricted - Kiểm soát của phụ huynh bị hạn chế + Parental Control Restricted + Kiểm soát của phụ huynh bị hạn chế - Facebook Query Error - Kết nối Facebook lỗi + Facebook Query Error + Kết nối Facebook lỗi - Expired Login Auth Code - Mã đăng nhập đã hết hạn + Expired Login Auth Code + Mã đăng nhập đã hết hạn - IP Login Restriction Failed - Hạn chế đăng nhập IP không thành công + IP Login Restriction Failed + Hạn chế đăng nhập IP không thành công - Account Locked Down - Tài khoản đã bị khóa + Account Locked Down + Tài khoản đã bị khóa - Account Logon Denied Verified Email Required - Đăng nhập thất bại, yêu cầu xác thực mail + Account Logon Denied Verified Email Required + Đăng nhập thất bại, yêu cầu xác thực mail - No MatchingURL - Không có địa chỉ nào phù hợp + No MatchingURL + Không có địa chỉ nào phù hợp - Bad Response - Phản hồi xấu + Bad Response + Phản hồi xấu - Require Password ReEntry - Yêu cầu nhập lại mật khâu + Require Password ReEntry + Yêu cầu nhập lại mật khâu - Value Out Of Range - Giá trị quá vùng + Value Out Of Range + Giá trị quá vùng - Unexpecte Error - Lỗi Bất Thường + Unexpecte Error + Lỗi Bất Thường - Disabled - Đã vô hiệu + Disabled + Đã vô hiệu - Invalid CEG Submission - Hồ sơ CEG không hợp lệ + Invalid CEG Submission + Hồ sơ CEG không hợp lệ - Restricted Device - Thiết bị bị giới hạn + Restricted Device + Thiết bị bị giới hạn - Region Locked - Vùng bị khóa + Region Locked + Vùng bị khóa - Rate Limit Exceeded - Vượt quá giới hạn truy cập + Rate Limit Exceeded + Vượt quá giới hạn truy cập - Account Login Denied Need Two Factor - Đăng nhập thất bại, cần 2FA + Account Login Denied Need Two Factor + Đăng nhập thất bại, cần 2FA - Item Deleted - Mặt hàng đã xóa + Item Deleted + Mặt hàng đã xóa - Account Login Denied Throttle - Đăng nhập thất bại + Account Login Denied Throttle + Đăng nhập thất bại - Two Factor Code Mismatch - Mã 2FA không đúng + Two Factor Code Mismatch + Mã 2FA không đúng - Two Factor Activation Code Mismatch - Mã 2FA không đúng + Two Factor Activation Code Mismatch + Mã 2FA không đúng - Account Associated To Multiple Partners - Tài khoản được liên kết với nhiều đối tác + Account Associated To Multiple Partners + Tài khoản được liên kết với nhiều đối tác - Not Modified - Chưa chỉnh sửa + Not Modified + Chưa chỉnh sửa - No Mobile Device - Không có điện thoại + No Mobile Device + Không có điện thoại - Time Not Synced - Chưa đồng bộ thời gian + Time Not Synced + Chưa đồng bộ thời gian - Sms Code Failed - Gửi mã code SMS thất bại + Sms Code Failed + Gửi mã code SMS thất bại - Account Limit Exceeded - Đã vượt quá giới hạn tài khoản + Account Limit Exceeded + Đã vượt quá giới hạn tài khoản - Account Activity Limit Exceeded - Đã vượt quá giới hạn hoạt động của tài khoản + Account Activity Limit Exceeded + Đã vượt quá giới hạn hoạt động của tài khoản - Phone Activity Limit Exceeded - Đã vượt quá giới hạn hoạt động của điện thoại + Phone Activity Limit Exceeded + Đã vượt quá giới hạn hoạt động của điện thoại - Refund To Wallet - Hoàn tiền vào ví + Refund To Wallet + Hoàn tiền vào ví - Email Send Failure - Gửi Thư Thất bại + Email Send Failure + Gửi Thư Thất bại - Not Settled - Chưa được giải quyết + Not Settled + Chưa được giải quyết - Need Captcha - Cần captcha + Need Captcha + Cần captcha - GSLT Denied - Mã đăng nhập máy chủ bị từ chối + GSLT Denied + Mã đăng nhập máy chủ bị từ chối - GS Owner Denied - Máy chủ bị từ chối + GS Owner Denied + Máy chủ bị từ chối - Invalid Item Type - Kiểu mặt hàng không hợp lệ + Invalid Item Type + Kiểu mặt hàng không hợp lệ - IP Banned - IP đã bị cấm + IP Banned + IP đã bị cấm - GSLT Expired - Mã đăng nhập máy chủ đã hết hạn + GSLT Expired + Mã đăng nhập máy chủ đã hết hạn - Insufficient Funds - Không đủ tiền + Insufficient Funds + Không đủ tiền - Too Many Pending - Có quá nhiều mặt hàng đang chờ + Too Many Pending + Có quá nhiều mặt hàng đang chờ - No Site Licenses Found - Không tìm thấy giấy phép trang web + No Site Licenses Found + Không tìm thấy giấy phép trang web - WG Network Send Exceeded - Đã vượt quá quá trình gửi mạng WG + WG Network Send Exceeded + Đã vượt quá quá trình gửi mạng WG - Account Not Friends - Tài khoản không phải bạn bè + Account Not Friends + Tài khoản không phải bạn bè - Limited User Account - Tài khoản bị giới hạn + Limited User Account + Tài khoản bị giới hạn - Cant Remove Item - Không thể xóa mặt hàng + Cant Remove Item + Không thể xóa mặt hàng - Account Deleted - Tài khoản đã bị xóa + Account Deleted + Tài khoản đã bị xóa - Existing User Cancelled License - Người dùng hiện tại đã bị hủy giấy phép + Existing User Cancelled License + Người dùng hiện tại đã bị hủy giấy phép - Community Cooldown - Community Cooldown + Community Cooldown + Community Cooldown - Status: - Trạng thái: + Status: + Trạng thái: - Upload Progress: - Quá trình tải lên: + Upload Progress: + Quá trình tải lên: - - + + WebsiteWallpaper - Create a Website Wallpaper - Tạo một hình nền của trang web + Create a Website Wallpaper + Tạo một hình nền của trang web - General - Chung + General + Chung - Wallpaper name - Tên ảnh động + Wallpaper name + Tên ảnh động - Created By - Đươc tạo bởi + Created By + Đươc tạo bởi - Description - Mô tả + Description + Mô tả - Tags - Thẻ + Tags + Thẻ - Preview Image - Ảnh xem trước + Preview Image + Ảnh xem trước - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + + + WizardPage - Save - Lưu + Save + Lưu - Saving... - Đang lưu... + Saving... + Đang lưu... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - Đăng ký thành công! + Successfully subscribed to Workshop Item! + Đăng ký thành công! - Download complete! - Tải xuống thành công! + Download complete! + Tải xuống thành công! - - + + XMLNewsfeed - News & Patchnotes - Tin tức & Ghi chú bản vá + News & Patchnotes + Tin tức & Ghi chú bản vá - + diff --git a/ScreenPlay/translations/ScreenPlay_zh_CN.ts b/ScreenPlay/translations/ScreenPlay_zh_CN.ts index b747a258..c8955f43 100644 --- a/ScreenPlay/translations/ScreenPlay_zh_CN.ts +++ b/ScreenPlay/translations/ScreenPlay_zh_CN.ts @@ -1,1944 +1,1952 @@ - + ColorPicker - Red - + Red + - Green - 绿 + Green + 绿 - Blue - + Blue + - RGB - RGB + RGB + RGB - HSV - HSV + HSV + HSV - R: - R: + R: + R: - G: - G: + G: + G: - B: - B: + B: + B: - H: - H: + H: + H: - S: - S: + S: + S: - V: - V: + V: + V: - Alpha: - 透明度: + Alpha: + 透明度: - # - # + # + # - - + + Community - News - 新闻 + News + 新闻 - Wiki - 维基 + Wiki + 维基 - Forum - 论坛 + Forum + 论坛 - Contribute - 贡献 + Contribute + 贡献 - Steam Workshop - Steam 创意工坊 + Steam Workshop + Steam 创意工坊 - Issue Tracker - 问题跟踪器 + Issue Tracker + 问题跟踪器 - Reddit - Reddit + Reddit + Reddit - - + + CommunityNavItem - Open in browser - 在浏览器中打开 + Open in browser + 在浏览器中打开 - - + + CreateWallpaperInit - Import any video type - 导入任何视频类型 + Import any video type + 导入任何视频类型 - Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: + Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - 取决于您的PC配置,最好将您的壁纸转换为特定的视频编码格式。如果它们的性能都不好,您还可以尝试 QML 壁纸!已支持的视频格式有: + 取决于您的PC配置,最好将您的壁纸转换为特定的视频编码格式。如果它们的性能都不好,您还可以尝试 QML 壁纸!已支持的视频格式有: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - Set your preffered video codec: - 设置您偏好的视频编码格式: + Set your preffered video codec: + 设置您偏好的视频编码格式: - Quality slider. Lower value means better quality. - 质量滑条,更小的值意味着更好的质量。 + Quality slider. Lower value means better quality. + 质量滑条,更小的值意味着更好的质量。 - Open Documentation - 打开文档 + Open Documentation + 打开文档 - Select file - 选择文件 + Select file + 选择文件 - - + + CreateWallpaperResult - An error occurred! - 发生错误! + An error occurred! + 发生错误! - Copy text to clipboard - 复制到剪贴板 + Copy text to clipboard + 复制到剪贴板 - Back to create and send an error report! - 返回以创建并发送错误报告! + Back to create and send an error report! + 返回以创建并发送错误报告! - - + + CreateWallpaperVideoImportConvert - - + + - Generating preview image... - 生成预览图... + Generating preview image... + 生成预览图... - Generating preview thumbnail image... - 生成预览缩略图... + Generating preview thumbnail image... + 生成预览缩略图... - Generating 5 second preview video... - 生成5秒预览视频... + Generating 5 second preview video... + 生成5秒预览视频... - Generating preview gif... - 生成预览GIF... + Generating preview gif... + 生成预览GIF... - Converting Audio... - 转换音频... + Converting Audio... + 转换音频... - Converting Video... This can take some time! - 转换视频... 这可能需要一些时间! + Converting Video... This can take some time! + 转换视频... 这可能需要一些时间! - Converting Video ERROR! - 转换视频出错! + Converting Video ERROR! + 转换视频出错! - Analyse Video ERROR! - 分析视频出错! + Analyse Video ERROR! + 分析视频出错! - Convert a video to a wallpaper - 将视频转换为壁纸 + Convert a video to a wallpaper + 将视频转换为壁纸 - Generating preview video... - 生成预览视频... + Generating preview video... + 生成预览视频... - Name (required!) - 名称(必选) + Name (required!) + 名称(必选) - Description - 简介 + Description + 简介 - Youtube URL - Youtube 链接 + Youtube URL + Youtube 链接 - Abort - 中止 + Abort + 中止 - Save - 保存 + Save + 保存 - Save Wallpaper... - 保存壁纸到... + Save Wallpaper... + 保存壁纸到... - - + + DefaultVideoControls - Volume - 音量 + Volume + 音量 - Playback rate - 播放速度 + Playback rate + 播放速度 - Current Video Time - 目前视频时间 + Current Video Time + 目前视频时间 - Fill Mode - 填充模式 + Fill Mode + 填充模式 - Stretch - 拉伸 + Stretch + 拉伸 - Fill - 填充 + Fill + 填充 - Contain - 适应 + Contain + 适应 - Cover - 平铺 + Cover + 平铺 - Scale_Down - 裁切 + Scale_Down + 裁切 - - + + FileSelector - Clear - 清空 + Clear + 清空 - Select File - 选择文件 + Select File + 选择文件 - Please choose a file - 请选择文件 + Please choose a file + 请选择文件 - - + + Forum - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - 从我们的论坛手动下载壁纸和小部件。如果您想要下载 Steam 创意工坊内容,您必须通过 Steam 安装ScreenPlay。 + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + 从我们的论坛手动下载壁纸和小部件。如果您想要下载 Steam 创意工坊内容,您必须通过 Steam 安装ScreenPlay。 - Install Steam Version - 安装 Steam 版本 + Install Steam Version + 安装 Steam 版本 - Open In Browser - 在浏览器中打开 + Open In Browser + 在浏览器中打开 - - + + GifWallpaper - Import a Gif Wallpaper - 导入 GIF 壁纸 + Import a Gif Wallpaper + 导入 GIF 壁纸 - Drop a *.gif file here or use 'Select file' below. - 拖放一个 *.gif 文件到这里,或者使用下面的 '选择文件'。 + Drop a *.gif file here or use 'Select file' below. + 拖放一个 *.gif 文件到这里,或者使用下面的 '选择文件'。 - Select your gif - 选择您的 GIF + Select your gif + 选择您的 GIF - General - 常规 + General + 常规 - Wallpaper name - 壁纸名称 + Wallpaper name + 壁纸名称 - Created By - 作者 + Created By + 作者 - Tags - 标签 + Tags + 标签 - - + + HTMLWallpaper - Create a HTML Wallpaper - 创建 HTML 壁纸 + Create a HTML Wallpaper + 创建 HTML 壁纸 - General - 常规 + General + 常规 - Wallpaper name - 壁纸名称 + Wallpaper name + 壁纸名称 - Created By - 作者 + Created By + 作者 - Description - 简介 + Description + 简介 - License & Tags - 许可证 & 标签 + License & Tags + 许可证 & 标签 - Preview Image - 预览图 + Preview Image + 预览图 - - + + HTMLWidget - Create a HTML widget - 创建 HTML 部件 + Create a HTML widget + 创建 HTML 部件 - General - 常规 + General + 常规 - Widget name - 部件名称 + Widget name + 部件名称 - Created by - 作者 + Created by + 作者 - Tags - 标签 + Tags + 标签 - - + + HeadlineSection - Headline Section - 摘要 + Headline Section + 摘要 - - + + ImageSelector - Set your own preview image - 设置您的预览图 + Set your own preview image + 设置您的预览图 - Clear - 清空 + Clear + 清空 - Select Preview Image - 选择预览图 + Select Preview Image + 选择预览图 - - + + ImportWebmConvert - - + + - AnalyseVideo... - 分析视频... + AnalyseVideo... + 分析视频... - Generating preview image... - 生成预览图... + Generating preview image... + 生成预览图... - Generating preview thumbnail image... - 生成预览缩略图... + Generating preview thumbnail image... + 生成预览缩略图... - Generating 5 second preview video... - 生成5秒预览视频... + Generating 5 second preview video... + 生成5秒预览视频... - Generating preview gif... - 生成预览 GIF... + Generating preview gif... + 生成预览 GIF... - Converting Audio... - 转换音频... + Converting Audio... + 转换音频... - Converting Video... This can take some time! - 转换视频... 这可能需要一些时间! + Converting Video... This can take some time! + 转换视频... 这可能需要一些时间! - Converting Video ERROR! - 转换视频出错! + Converting Video ERROR! + 转换视频出错! - Analyse Video ERROR! - 分析视频出错! + Analyse Video ERROR! + 分析视频出错! - Import a video to a wallpaper - 将视频导入为壁纸 + Import a video to a wallpaper + 将视频导入为壁纸 - Generating preview video... - 生成预览视频... + Generating preview video... + 生成预览视频... - Name (required!) - 名称(必选) + Name (required!) + 名称(必选) - Description - 简介 + Description + 简介 - Youtube URL - Youtube 链接 + Youtube URL + Youtube 链接 - Abort - 中止 + Abort + 中止 - Save - 保存 + Save + 保存 - Save Wallpaper... - 保存壁纸... + Save Wallpaper... + 保存壁纸... - - + + ImportWebmInit - Import a .webm video - 导入 .webm 视频 + Import a .webm video + 导入 .webm 视频 - When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! - 导入webm时,我们可以跳过漫长的转换过程。当您对'导入和转换(所有类型)' ScreenPlay 得到的结果不满意时,您还可以使用免费开源的HandBrake! + When importing webm we can skip the long conversion. When you get unsatisfying results with the ScreenPlay importer from 'ideo import and convert (all types)' you can also convert via the free and open source HandBrake! + 导入webm时,我们可以跳过漫长的转换过程。当您对'导入和转换(所有类型)' ScreenPlay 得到的结果不满意时,您还可以使用免费开源的HandBrake! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! - 文件类型无效。必须是 VP8 / VP9(*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + 文件类型无效。必须是 VP8 / VP9(*.webm)! - Drop a *.webm file here or use 'Select file' below. - 将一个webm文件拖到这里,或者使用下面的'选择文件' + Drop a *.webm file here or use 'Select file' below. + 将一个webm文件拖到这里,或者使用下面的'选择文件' - Open Documentation - 打开文档 + Open Documentation + 打开文档 - Select file - 选择文件 + Select file + 选择文件 - - + + Importh264Convert - AnalyseVideo... - 分析视频... + AnalyseVideo... + 分析视频... - Generating preview image... - 生成预览图... + Generating preview image... + 生成预览图... - Generating preview thumbnail image... - 生成预览缩略图... + Generating preview thumbnail image... + 生成预览缩略图... - Generating 5 second preview video... - 生成5秒预览视频... + Generating 5 second preview video... + 生成5秒预览视频... - Generating preview gif... - 生成预览GIF... + Generating preview gif... + 生成预览GIF... - Converting Audio... - 正在转换音频... + Converting Audio... + 正在转换音频... - Converting Video... This can take some time! - 正在转换视频... 这可能需要一些时间! + Converting Video... This can take some time! + 正在转换视频... 这可能需要一些时间! - Converting Video ERROR! - 转换视频出错! + Converting Video ERROR! + 转换视频出错! - Analyse Video ERROR! - 分析视频出错! + Analyse Video ERROR! + 分析视频出错! - Import a video to a wallpaper - 将视频导入为壁纸 + Import a video to a wallpaper + 将视频导入为壁纸 - Generating preview video... - 生成预览视频... + Generating preview video... + 生成预览视频... - Name (required!) - 名称 (必填) + Name (required!) + 名称 (必填) - Description - 简介 + Description + 简介 - Youtube URL - Youtube 链接 + Youtube URL + Youtube 链接 - Abort - 中止 + Abort + 中止 - Save - 保存 + Save + 保存 - Save Wallpaper... - 保存壁纸... + Save Wallpaper... + 保存壁纸... - - + + Importh264Init - Import a .mp4 video - 导入 .mp4 视频 + Import a .mp4 video + 导入 .mp4 视频 - ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. - ScreenPlay V0.15及以上可播放 *.mp4 (通常称为h264),这可以提高旧系统上的性能。 + ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems. + ScreenPlay V0.15及以上可播放 *.mp4 (通常称为h264),这可以提高旧系统上的性能。 - Invalid file type. Must be valid h264 (*.mp4)! - 文件类型无效。必须是有效的 h264 (*.mp4)! + Invalid file type. Must be valid h264 (*.mp4)! + 文件类型无效。必须是有效的 h264 (*.mp4)! - Drop a *.mp4 file here or use 'Select file' below. - 将*.mp4文件拖入此处,或使用下面的 '选择文件'。 + Drop a *.mp4 file here or use 'Select file' below. + 将*.mp4文件拖入此处,或使用下面的 '选择文件'。 - Open Documentation - 打开文档 + Open Documentation + 打开文档 - Select file - 选择文件 + Select file + 选择文件 - - + + Installed - - + + - Refreshing! - 刷新中! + Refreshing! + 刷新中! - Pull to refresh! - 下拉以刷新! + Pull to refresh! + 下拉以刷新! - Get more Wallpaper & Widgets via the Steam workshop! - 从创意工坊获取更多壁纸和物件! + Get more Wallpaper & Widgets via the Steam workshop! + 从创意工坊获取更多壁纸和物件! - Open containing folder - 打开文件夹 + Open containing folder + 打开文件夹 - Remove Item - 删除物品 + Remove Item + 删除物品 - Remove via Workshop - 从创意工坊中删除 + Remove via Workshop + 从创意工坊中删除 - Open Workshop Page - 打开创意工坊页面 + Open Workshop Page + 打开创意工坊页面 - Are you sure you want to delete this item? - 您确定要删除此物品? + Are you sure you want to delete this item? + 您确定要删除此物品? - - + + InstalledWelcomeScreen - Get free Widgets and Wallpaper via the Steam Workshop - 从创意工坊免费获取物件和壁纸 + Get free Widgets and Wallpaper via the Steam Workshop + 从创意工坊免费获取物件和壁纸 - Browse the Steam Workshop - 浏览创意工坊 + Browse the Steam Workshop + 浏览创意工坊 - - + + LicenseSelector - License - 许可证 + License + 许可证 - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. - 分享 — 复制与重分发这个素材,以任何媒介或格式。改动 — 为了任何目的,甚至是商业目的,对材料进行改编、改造和发展。 + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material for any purpose, even commercially. + 分享 — 复制与重分发这个素材,以任何媒介或格式。改动 — 为了任何目的,甚至是商业目的,对材料进行改编、改造和发展。 - You grant other to remix your work and change the license to their liking. - 您授权他人对您的作品进行再创作,并更改其链接的许可证。 + You grant other to remix your work and change the license to their liking. + 您授权他人对您的作品进行再创作,并更改其链接的许可证。 - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - 分享 — 复制与重分发这个素材,以任何媒介或格式。改动 — 对材料进行改编、改造和发展。不允许商业使用! + Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + 分享 — 复制与重分发这个素材,以任何媒介或格式。改动 — 对材料进行改编、改造和发展。不允许商业使用! - You allow everyone to do anything with your work. - 您允许所有人对您的作品做任何事。 + You allow everyone to do anything with your work. + 您允许所有人对您的作品做任何事。 - You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! - 您授权他人对您的作品进行改编,但必须保持在GPLv3下发行。我们建议所有的代码壁纸都使用这个许可证! + You grant other to remix your work but it must remain under the GPLv3. We recommend this license for all code wallpaper! + 您授权他人对您的作品进行改编,但必须保持在GPLv3下发行。我们建议所有的代码壁纸都使用这个许可证! - You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - 您不分享任何权限,没有人可以使用或改编它(不推荐)。这也可用于计入他人的作品。 + You do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. + 您不分享任何权限,没有人可以使用或改编它(不推荐)。这也可用于计入他人的作品。 - - + + MonitorConfiguration - Your monitor setup changed! + Your monitor setup changed! Please configure your wallpaper again. - 您的显示器设置已更改! + 您的显示器设置已更改! 请重新配置您的壁纸。 - - + + Monitors - Wallpaper Configuration - 壁纸配置 + Wallpaper Configuration + 壁纸配置 - Remove selected - 移除已选择 + Remove selected + 移除已选择 - Wallpapers - 壁纸 + Wallpapers + 壁纸 - Widgets - 物件 + Widgets + 物件 - Remove all - 移除所有 + Remove all + 移除所有 - - + + MonitorsProjectSettingItem - Set color - 设置颜色 + Set color + 设置颜色 - Please choose a color - 请选择颜色 + Please choose a color + 请选择颜色 - - + + Navigation - All - 全部 + All + 全部 - Scenes - 场景 + Scenes + 场景 - Videos - 视频 + Videos + 视频 - Widgets - 物件 + Widgets + 物件 - Install Date Ascending - 安装日期↓ + Install Date Ascending + 安装日期↓ - Install Date Descending - 安装日期↑ + Install Date Descending + 安装日期↑ - Subscribed items: - 已订阅: + Subscribed items: + 已订阅: - Upload to the Steam Workshop - 上传到创意工坊 + Upload to the Steam Workshop + 上传到创意工坊 - Create - 创建 + Create + 创建 - Workshop - 创意工坊 + Workshop + 创意工坊 - Installed - 已安装 + Installed + 已安装 - Community - 社区 + Community + 社区 - Settings - 设置 + Settings + 设置 - Mute/Unmute all Wallpaper - 静音/取消静音所有壁纸 + Mute/Unmute all Wallpaper + 静音/取消静音所有壁纸 - Pause/Play all Wallpaper - 暂停/播放所有壁纸 + Pause/Play all Wallpaper + 暂停/播放所有壁纸 - Configure Wallpaper - 配置壁纸 + Configure Wallpaper + 配置壁纸 - Are you sure you want to exit ScreenPlay? -This will shut down all Wallpaper and Widgets. - 您确定要退出ScreenPlay吗? -这将关闭所有壁纸和部件。 + Support me on Patreon! + 在Patreon上支持! - ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets - ScreenPlay Alpha %1 - 开源壁纸与部件 + Close All Content + 关闭所有内容 - - Support me on Patreon! - 在Patreon上支持! - - - Close All Content - 关闭所有内容 - - - + + PopupOffline - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - 您需要先运行Steam。steamErrorRestart: %1 - steamErrorAPIInit: %2 + Back + 返回 - Back - 返回 + You need to run Steam to access the Steam Workshop + - - + + Steam Error Restart: %1 +Steam Error API Init: %2 + + + + PopupSteamWorkshopAgreement - You Need to Agree To The Steam Subscriber Agreement First - 您应先同意Steam订阅者协议 + You Need to Agree To The Steam Subscriber Agreement First + 您应先同意Steam订阅者协议 - REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. - 需要网络连接与免费Steam帐号以激活。注意:产品提供的前提是您接受Steam用户协议(SSA)。您必须通过网络注册一个Steam账户并接受SSA来激活该产品。购买前请打开https://store.steampowered.com/subscriber_agreement/ 查看SSA。如果您不同意SSA的规定,您应该根据零售商的退货政策将本游戏原封不动地退回。 + REQUIRES INTERNET CONNECTION AND FREE STEAM ACCOUNT TO ACTIVATE. Notice: Product offered subject to your acceptance of the Steam Subscriber Agreement (SSA). You must activate this product via the Internet by registering for a Steam account and accepting the SSA. Please see https://store.steampowered.com/subscriber_agreement/ to view the SSA prior to purchase. If you do not agree with the provisions of the SSA, you should return this game unopened to your retailer in accordance with their return policy. + 需要网络连接与免费Steam帐号以激活。注意:产品提供的前提是您接受Steam用户协议(SSA)。您必须通过网络注册一个Steam账户并接受SSA来激活该产品。购买前请打开https://store.steampowered.com/subscriber_agreement/ 查看SSA。如果您不同意SSA的规定,您应该根据零售商的退货政策将本游戏原封不动地退回。 - View The Steam Subscriber Agreement - 查看Steam订阅者协议 + View The Steam Subscriber Agreement + 查看Steam订阅者协议 - Accept Steam Workshop Agreement - 接受Steam创意工坊协议 + Accept Steam Workshop Agreement + 接受Steam创意工坊协议 - - + + QMLWallpaper - Create a QML Wallpaper - 创建一个QML壁纸 + Create a QML Wallpaper + 创建一个QML壁纸 - General - 常规 + General + 常规 - Wallpaper name - 壁纸名 + Wallpaper name + 壁纸名 - Created By - 作者 + Created By + 作者 - Description - 简介 + Description + 简介 - License & Tags - 许可证 & 标签 + License & Tags + 许可证 & 标签 - Preview Image - 预览图 + Preview Image + 预览图 - - + + QMLWidget - Create a QML widget - 创建一个QML部件 + Create a QML widget + 创建一个QML部件 - General - 常规 + General + 常规 - Widget name - 部件名 + Widget name + 部件名 - Created by - 作者 + Created by + 作者 - Tags - 标签 + Tags + 标签 - - + + SaveNotification - Profile saved successfully! - 配置保存成功! + Profile saved successfully! + 配置保存成功! - - + + ScreenPlayItem - NEW - + NEW + - - + + Search - Search for Wallpaper & Widgets - 搜索壁纸和物件... + Search for Wallpaper & Widgets + 搜索壁纸和物件... - - + + Settings - General - 常规 + General + 常规 - Autostart - 自启动 + Autostart + 自启动 - ScreenPlay will start with Windows and will setup your Desktop every time for you. - ScreenPlay将在操作系统启动时启动,并会设置您的桌面。 + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay将在操作系统启动时启动,并会设置您的桌面。 - High priority Autostart - 高优先级自启动 + High priority Autostart + 高优先级自启动 - This options grants ScreenPlay a higher autostart priority than other apps. - 这个选项赋予ScreenPlay比其他应用程序更高的自启动优先级。 + This options grants ScreenPlay a higher autostart priority than other apps. + 这个选项赋予ScreenPlay比其他应用程序更高的自启动优先级。 - Send anonymous crash reports and statistics - 发送匿名崩溃报告和统计数据 + Send anonymous crash reports and statistics + 发送匿名崩溃报告和统计数据 - Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! - 帮助我们让 ScreenPlay 更快更稳定。所有被收集的数据完全匿名,而且仅用于开发用途!我们使用<a href="https://sentry.io">sentry.io</a> 收集与分析数据。<b>感谢他们</b> 为我们提供对开源项目免费而优质的服务! + Help us make ScreenPlay faster and more stable. All collected data is purely anonymous and only used for development purposes! We use <a href="https://sentry.io">sentry.io</a> to collect and analyze this data. A <b>big thanks to them</b> for providing us with free premium support for open source projects! + 帮助我们让 ScreenPlay 更快更稳定。所有被收集的数据完全匿名,而且仅用于开发用途!我们使用<a href="https://sentry.io">sentry.io</a> 收集与分析数据。<b>感谢他们</b> 为我们提供对开源项目免费而优质的服务! - Set save location - 设置保存位置 + Set save location + 设置保存位置 - Set location - 选择位置 + Set location + 选择位置 - Your storage path is empty! - 您的存储路径是空的! + Your storage path is empty! + 您的存储路径是空的! - Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - 注意:修改此目录并不影响创意工坊的下载路径。ScreenPlay仅支持单个内容文件夹! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + 注意:修改此目录并不影响创意工坊的下载路径。ScreenPlay仅支持单个内容文件夹! - Language - 语言 + Language + 语言 - Set the ScreenPlay UI Language - 设置ScreenPlay界面语言 + Set the ScreenPlay UI Language + 设置ScreenPlay界面语言 - Theme - 主题 + Theme + 主题 - Switch dark/light theme - 切换到暗/亮主题 + Switch dark/light theme + 切换到暗/亮主题 - System Default - 跟随系统 + System Default + 跟随系统 - Dark - + Dark + - Light - + Light + - Performance - 性能 + Performance + 性能 - Pause wallpaper video rendering while another app is in the foreground - 当其他应用程序在前台时,暂停壁纸视频渲染 + Pause wallpaper video rendering while another app is in the foreground + 当其他应用程序在前台时,暂停壁纸视频渲染 - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - 我们禁用视频渲染(不是音频)以获得最佳性能。如果您有问题,可以在此处禁用此行为。 需要重启壁纸! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + 我们禁用视频渲染(不是音频)以获得最佳性能。如果您有问题,可以在此处禁用此行为。 需要重启壁纸! - Default Fill Mode - 默认填充模式 + Default Fill Mode + 默认填充模式 - Set this property to define how the video is scaled to fit the target area. - 设置此属性可定义视频的缩放方式以适应目标区域。 + Set this property to define how the video is scaled to fit the target area. + 设置此属性可定义视频的缩放方式以适应目标区域。 - Stretch - 拉伸 + Stretch + 拉伸 - Fill - 填充 + Fill + 填充 - Contain - 适应 + Contain + 适应 - Cover - 平铺 + Cover + 平铺 - Scale-Down - 裁剪 + Scale-Down + 裁剪 - About - 关于 + About + 关于 - Thank you for using ScreenPlay - 感谢您的使用 + Thank you for using ScreenPlay + 感谢您的使用 - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - 您好,我是Elias Steurer,也叫Kelteseth,我是ScreenPlay的开发者。感谢您使用我的软件。您可以在这里关注我,接收ScreenPlay的更新。 + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + 您好,我是Elias Steurer,也叫Kelteseth,我是ScreenPlay的开发者。感谢您使用我的软件。您可以在这里关注我,接收ScreenPlay的更新。 - Version - 版本 + Version + 版本 - Open Changelog - 打开更改日志。 + Open Changelog + 打开更改日志。 - Third Party Software - 第三方软件 + Third Party Software + 第三方软件 - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay离不开一些人的帮助。非常感谢你们: + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay离不开一些人的帮助。非常感谢你们: - Licenses - 许可证 + Licenses + 许可证 - Logs - 日志 + Logs + 日志 - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - 如果您的ScreenPlay出错,这是个很好的查错方式。它显示所有的日志和运行时警告。 + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + 如果您的ScreenPlay出错,这是个很好的查错方式。它显示所有的日志和运行时警告。 - Show Logs - 显示日志 + Show Logs + 显示日志 - Data Protection - 数据保护 + Data Protection + 数据保护 - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - 我们使用您的数据提升ScreenPlay的体验。我们承诺不出售或分享这些匿名信息! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + 我们使用您的数据提升ScreenPlay的体验。我们承诺不出售或分享这些匿名信息! - Privacy - 隐私 + Privacy + 隐私 - ScreenPlay Build Version + ScreenPlay Build Version - ScreenPlay构建版本 + ScreenPlay构建版本 - - + + SettingsExpander - Copy text to clipboard - 复制文本至剪贴板 + Copy text to clipboard + 复制文本至剪贴板 - - + + Sidebar - Tools Overview - 工具概览 + Tools Overview + 工具概览 - Video Import h264 (.mp4) - 视频导入 h264 (.mp4) + Video Import h264 (.mp4) + 视频导入 h264 (.mp4) - Video Import VP8 & VP9 (.webm) - 视频导入 VP8 & VP9 (.webm) + Video Import VP8 & VP9 (.webm) + 视频导入 VP8 & VP9 (.webm) - Video import (all types) - 视频导入(所有类型) + Video import (all types) + 视频导入(所有类型) - GIF Wallpaper - GIF 壁纸 + GIF Wallpaper + GIF 壁纸 - QML Wallpaper - QML 壁纸 + QML Wallpaper + QML 壁纸 - HTML5 Wallpaper - HTML5 壁纸 + HTML5 Wallpaper + HTML5 壁纸 - Website Wallpaper - 网页壁纸 + Website Wallpaper + 网页壁纸 - QML Widget - QML 部件 + QML Widget + QML 部件 - HTML Widget - HTML 部件 + HTML Widget + HTML 部件 - Set Wallpaper - 设置壁纸 + Set Wallpaper + 设置壁纸 - Set Widget - 设置物件 + Set Widget + 设置物件 - Headline - 标题 + Headline + 标题 - Select a Monitor to display the content - 选择显示此内容的显示器 + Select a Monitor to display the content + 选择显示此内容的显示器 - Set Volume - 设置音量 + Set Volume + 设置音量 - Fill Mode - 填充模式 + Fill Mode + 填充模式 - Stretch - 拉伸 + Stretch + 拉伸 - Fill - 填充 + Fill + 填充 - Contain - 适应 + Contain + 适应 - Cover - 平铺 + Cover + 平铺 - Scale-Down - 裁剪 + Scale-Down + 裁剪 - Size: - 大小: + Size: + 大小: - No description... - 没有简介... + No description... + 没有简介... - Click here if you like the content - 如果您喜欢它,点这里! + Click here if you like the content + 如果您喜欢它,点这里! - Click here if you do not like the content - 如果您不喜欢它,点这里 + Click here if you do not like the content + 如果您不喜欢它,点这里 - Subscribtions: - 订阅: + Subscribtions: + 订阅: - Open In Steam - 在Steam打开 + Open In Steam + 在Steam打开 - Subscribed! - 已订阅! + Subscribed! + 已订阅! - Subscribe - 订阅 + Subscribe + 订阅 - - + + StartInfo - Free tools to help you to create wallpaper - 免费壁纸创建工具 + Free tools to help you to create wallpaper + 免费壁纸创建工具 - Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! - 下面是一些非ScreenPlay提供的壁纸创建工具 + Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you! + 下面是一些非ScreenPlay提供的壁纸创建工具 - - + + SteamNotAvailable - Could not load steam integration! - 无法加载steam集成! + Could not load steam integration! + 无法加载steam集成! - - + + SteamProfile - Back - 返回 + Back + 返回 - Forward - 前进 + Forward + 前进 - - + + SteamWorkshopStartPage - Loading - 加载中 + Loading + 加载中 - Download now! - 开始下载 + Download now! + 开始下载 - Downloading... - 下载中... + Downloading... + 下载中... - Details - 查看详情 + Details + 查看详情 - Open In Steam - 在Steam打开 + Open In Steam + 在Steam打开 - Profile - 配置 + Profile + 配置 - Upload - 上传 + Upload + 上传 - Search for Wallpaper and Widgets... - 搜索壁纸和物件... + Search for Wallpaper and Widgets... + 搜索壁纸和物件... - Open Workshop in Steam - 在Steam中打开创意工坊 + Open Workshop in Steam + 在Steam中打开创意工坊 - Ranked By Vote - 评分最好 + Ranked By Vote + 评分最好 - Publication Date - 发布日期 + Publication Date + 发布日期 - Ranked By Trend - 评分趋势 + Ranked By Trend + 评分趋势 - Favorited By Friends - 好友收藏 + Favorited By Friends + 好友收藏 - Created By Friends - 好友创建 + Created By Friends + 好友创建 - Created By Followed Users - 已关注的 + Created By Followed Users + 已关注的 - Not Yet Rated - 尚未评分 + Not Yet Rated + 尚未评分 - Total VotesAsc - 按总票数升序 + Total VotesAsc + 按总票数升序 - Votes Up - 评分上升 + Votes Up + 评分上升 - Total Unique Subscriptions - 总订阅量 + Total Unique Subscriptions + 总订阅量 - Back - 返回 + Back + 返回 - Forward - 前进 + Forward + 前进 - - + + TagSelector - Save - 保存 + Save + 保存 - Add tag - 添加标签 + Add tag + 添加标签 - Cancel - 取消 + Cancel + 取消 - Add Tag - 添加标签 + Add Tag + 添加标签 - - + + TextField - Label - 标识 + Label + 标识 - *Required - *必要的 + *Required + *必要的 - - + + TrayIcon - ScreenPlay - Double click to change you settings. - ScreenPlay - 双击以改变设置 + ScreenPlay - Double click to change you settings. + ScreenPlay - 双击以改变设置 - Open ScreenPlay - 打开ScreenPlay + Open ScreenPlay + 打开ScreenPlay - Mute all - 关闭全部提醒 + Mute all + 关闭全部提醒 - Unmute all - 开启全部提醒 + Unmute all + 开启全部提醒 - Pause all - 暂停全部 + Pause all + 暂停全部 - Play all - 播放全部 + Play all + 播放全部 - Quit - 退出 + Quit + 退出 - - + + UploadProject - Upload Wallpaper/Widgets to Steam - 上传 壁纸/物件 到Steam + Upload Wallpaper/Widgets to Steam + 上传 壁纸/物件 到Steam - Abort - 取消 + Abort + 取消 - Upload Selected Projects - 上传所选项目 + Upload Selected Projects + 上传所选项目 - Finish - 结束 + Finish + 结束 - - + + UploadProjectBigItem - Type: - 类型: + Type: + 类型: - Open Folder - 打开文件夹 + Open Folder + 打开文件夹 - Invalid Project! - 无效的项目! + Invalid Project! + 无效的项目! - - + + UploadProjectItem - Fail - 失败 + Fail + 失败 - No Connection - 没有连接 + No Connection + 没有连接 - Invalid Password - 密码错误 + Invalid Password + 密码错误 - Logged In Elsewhere - 在其他地方登录了 + Logged In Elsewhere + 在其他地方登录了 - Invalid Protocol Version - 无效协议版本 + Invalid Protocol Version + 无效协议版本 - Invalid Param - 参数无效 + Invalid Param + 参数无效 - File Not Found - 文件未找到 + File Not Found + 文件未找到 - Busy - 繁忙 + Busy + 繁忙 - Invalid State - 状态无效 + Invalid State + 状态无效 - Invalid Name - 名称无效 + Invalid Name + 名称无效 - Invalid Email - 邮箱无效 + Invalid Email + 邮箱无效 - Duplicate Name - 重复名称 + Duplicate Name + 重复名称 - Access Denied - 拒绝访问 + Access Denied + 拒绝访问 - Timeout - 超时 + Timeout + 超时 - Banned - 被禁止 + Banned + 被禁止 - Account Not Found - 账户未找到 + Account Not Found + 账户未找到 - Invalid SteamID - SteamID无效 + Invalid SteamID + SteamID无效 - Service Unavailable - 服务不可用 + Service Unavailable + 服务不可用 - Not Logged On - 未登录 + Not Logged On + 未登录 - Pending - 待处理 + Pending + 待处理 - Encryption Failure - 加密失败 + Encryption Failure + 加密失败 - Insufficient Privilege - 权限不足 + Insufficient Privilege + 权限不足 - Limit Exceeded - 超出限制 + Limit Exceeded + 超出限制 - Revoked - 被撤回 + Revoked + 被撤回 - Expired - 已过期 + Expired + 已过期 - Already Redeemed - 已兑换 + Already Redeemed + 已兑换 - Duplicate Request - 重复请求 + Duplicate Request + 重复请求 - Already Owned - 已拥有 + Already Owned + 已拥有 - IP Not Found - 未找到IP + IP Not Found + 未找到IP - Persist Failed - 持续失败 + Persist Failed + 持续失败 - Locking Failed - 锁定失败 + Locking Failed + 锁定失败 - Logon Session Replaced - 登录会话被覆盖 + Logon Session Replaced + 登录会话被覆盖 - Connect Failed - 连接失败 + Connect Failed + 连接失败 - Handshake Failed - 握手失败 + Handshake Failed + 握手失败 - IO Failure - 输入输出失败 + IO Failure + 输入输出失败 - Remote Disconnect - 远程断开连接 + Remote Disconnect + 远程断开连接 - Shopping Cart Not Found - 未找到购物车 + Shopping Cart Not Found + 未找到购物车 - Blocked - 受阻 + Blocked + 受阻 - Ignored - 已忽略 + Ignored + 已忽略 - No Match - 无匹配 + No Match + 无匹配 - Account Disabled - 账号已禁用 + Account Disabled + 账号已禁用 - Service ReadOnly - 服务只读 + Service ReadOnly + 服务只读 - Account Not Featured - 账号未显示 + Account Not Featured + 账号未显示 - Administrator OK - 管理员确定 + Administrator OK + 管理员确定 - Content Version - 内容版本 + Content Version + 内容版本 - Try Another CM - 尝试其他内容管理器 + Try Another CM + 尝试其他内容管理器 - Password Required To Kick Session - 启动会话需要密码 + Password Required To Kick Session + 启动会话需要密码 - Already Logged In Elsewhere - 已在其他地方登录 + Already Logged In Elsewhere + 已在其他地方登录 - Suspended - 已挂起 + Suspended + 已挂起 - Cancelled - 已取消 + Cancelled + 已取消 - Data Corruption - 数据损坏 + Data Corruption + 数据损坏 - Disk Full - 磁盘满 + Disk Full + 磁盘满 - Remote Call Failed - 远程调用失败 + Remote Call Failed + 远程调用失败 - Password Unset - 解除密码 + Password Unset + 解除密码 - External Account Unlinked - 外部账户未链接 + External Account Unlinked + 外部账户未链接 - PSN Ticket Invalid - PSN令牌无效 + PSN Ticket Invalid + PSN令牌无效 - External Account Already Linked - 外部账户已链接 + External Account Already Linked + 外部账户已链接 - Remote File Conflict - 远程文件冲突 + Remote File Conflict + 远程文件冲突 - Illegal Password - 非法密码 + Illegal Password + 非法密码 - Same As Previous Value - 与旧值相同 + Same As Previous Value + 与旧值相同 - Account Logon Denied - 帐户登录被拒绝 + Account Logon Denied + 帐户登录被拒绝 - Cannot Use Old Password - 不可使用旧密码 + Cannot Use Old Password + 不可使用旧密码 - Invalid Login AuthCode - 无效的登录授权码 + Invalid Login AuthCode + 无效的登录授权码 - Account Logon Denied No Mail - 帐户登录被拒绝:没有邮件 + Account Logon Denied No Mail + 帐户登录被拒绝:没有邮件 - Hardware Not Capable Of IPT - 硬件不支持身份保护技术 + Hardware Not Capable Of IPT + 硬件不支持身份保护技术 - IPT Init Error - 身份保护技术初始化失败 + IPT Init Error + 身份保护技术初始化失败 - Parental Control Restricted - 家长控制限制 + Parental Control Restricted + 家长控制限制 - Facebook Query Error - Facebook查询错误 + Facebook Query Error + Facebook查询错误 - Expired Login Auth Code - 过期的登录授权码 + Expired Login Auth Code + 过期的登录授权码 - IP Login Restriction Failed - IP登录限制失败 + IP Login Restriction Failed + IP登录限制失败 - Account Locked Down - 帐户被锁定 + Account Locked Down + 帐户被锁定 - Account Logon Denied Verified Email Required - 帐户登录被拒绝:需验证电子邮件 + Account Logon Denied Verified Email Required + 帐户登录被拒绝:需验证电子邮件 - No MatchingURL - 没有匹配网址 + No MatchingURL + 没有匹配网址 - Bad Response - 坏响应 + Bad Response + 坏响应 - Require Password ReEntry - 要求重新输入密码 + Require Password ReEntry + 要求重新输入密码 - Value Out Of Range - 值超出范围 + Value Out Of Range + 值超出范围 - Unexpecte Error - 意外错误 + Unexpecte Error + 意外错误 - Disabled - 已禁用 + Disabled + 已禁用 - Invalid CEG Submission - 无效的CEG提交 + Invalid CEG Submission + 无效的CEG提交 - Restricted Device - 受限设备 + Restricted Device + 受限设备 - Region Locked - 地区锁定 + Region Locked + 地区锁定 - Rate Limit Exceeded - 超出比率限制 + Rate Limit Exceeded + 超出比率限制 - Account Login Denied Need Two Factor - 账户登录被拒绝:需要两步验证 + Account Login Denied Need Two Factor + 账户登录被拒绝:需要两步验证 - Item Deleted - 物品已删除 + Item Deleted + 物品已删除 - Account Login Denied Throttle - 帐户登录被拒绝 + Account Login Denied Throttle + 帐户登录被拒绝 - Two Factor Code Mismatch - 两步验证码不匹配 + Two Factor Code Mismatch + 两步验证码不匹配 - Two Factor Activation Code Mismatch - 两步验证激活码不匹配 + Two Factor Activation Code Mismatch + 两步验证激活码不匹配 - Account Associated To Multiple Partners - 帐户已关联到多个合作伙伴 + Account Associated To Multiple Partners + 帐户已关联到多个合作伙伴 - Not Modified - 未修改 + Not Modified + 未修改 - No Mobile Device - 没有移动设备 + No Mobile Device + 没有移动设备 - Time Not Synced - 时间未同步 + Time Not Synced + 时间未同步 - Sms Code Failed - 短信验证码失败 + Sms Code Failed + 短信验证码失败 - Account Limit Exceeded - 超出账户限制 + Account Limit Exceeded + 超出账户限制 - Account Activity Limit Exceeded - 超出账户活动限制 + Account Activity Limit Exceeded + 超出账户活动限制 - Phone Activity Limit Exceeded - 超出电话活动限制 + Phone Activity Limit Exceeded + 超出电话活动限制 - Refund To Wallet - 退款到钱包 + Refund To Wallet + 退款到钱包 - Email Send Failure - 邮件发送失败 + Email Send Failure + 邮件发送失败 - Not Settled - 未解决 + Not Settled + 未解决 - Need Captcha - 需要验证 + Need Captcha + 需要验证 - GSLT Denied - 服务器令牌拒绝 + GSLT Denied + 服务器令牌拒绝 - GS Owner Denied - 服务器所有者拒绝 + GS Owner Denied + 服务器所有者拒绝 - Invalid Item Type - 无效的物品类型 + Invalid Item Type + 无效的物品类型 - IP Banned - IP被禁用 + IP Banned + IP被禁用 - GSLT Expired - 服务器令牌过期 + GSLT Expired + 服务器令牌过期 - Insufficient Funds - 资金不足 + Insufficient Funds + 资金不足 - Too Many Pending - 提交中太多 + Too Many Pending + 提交中太多 - No Site Licenses Found - 无网站证书 + No Site Licenses Found + 无网站证书 - WG Network Send Exceeded - 蠕虫守护网络发送超限 + WG Network Send Exceeded + 蠕虫守护网络发送超限 - Account Not Friends - 帐户不是好友 + Account Not Friends + 帐户不是好友 - Limited User Account - 受限账户 + Limited User Account + 受限账户 - Cant Remove Item - 无法移除物品 + Cant Remove Item + 无法移除物品 - Account Deleted - 账户已删除 + Account Deleted + 账户已删除 - Existing User Cancelled License - 现有用户已取消许可证 + Existing User Cancelled License + 现有用户已取消许可证 - Community Cooldown - 社区降温 + Community Cooldown + 社区降温 - Status: - 状态: + Status: + 状态: - Upload Progress: - 上传进度: + Upload Progress: + 上传进度: - - + + WebsiteWallpaper - Create a Website Wallpaper - 创建一个网站壁纸 + Create a Website Wallpaper + 创建一个网站壁纸 - General - 常规 + General + 常规 - Wallpaper name - 壁纸名 + Wallpaper name + 壁纸名 - Created By - 作者 + Created By + 作者 - Description - 简介 + Description + 简介 - Tags - 标签 + Tags + 标签 - Preview Image - 预览图 + Preview Image + 预览图 - - + + + WindowNavigation + + ScreenPlay Alpha %1 - Open Source Wallpaper And Widgets + + + + Are you sure you want to exit ScreenPlay? +This will shut down all Wallpaper and Widgets. + 您确定要退出ScreenPlay吗? +这将关闭所有壁纸和部件。 + + + WizardPage - Save - 保存 + Save + 保存 - Saving... - 保存中... + Saving... + 保存中... - - + + WorkshopItem - Successfully subscribed to Workshop Item! - 成功订阅创意工坊物品! + Successfully subscribed to Workshop Item! + 成功订阅创意工坊物品! - Download complete! - 下载完成! + Download complete! + 下载完成! - - + + XMLNewsfeed - News & Patchnotes - 新闻和更改日志 + News & Patchnotes + 新闻和更改日志 - + diff --git a/ScreenPlayWallpaper/qml/MultimediaWebView.qml b/ScreenPlayWallpaper/qml/MultimediaWebView.qml index fdd52a0e..ab9993b9 100644 --- a/ScreenPlayWallpaper/qml/MultimediaWebView.qml +++ b/ScreenPlayWallpaper/qml/MultimediaWebView.qml @@ -41,9 +41,12 @@ Item { WebEngineView { id: webView anchors.fill: parent - url: Qt.resolvedUrl("file://"+ Wallpaper.getApplicationPath() + "/index.html") - onJavaScriptConsoleMessage: (lineNumber, message) => print(lineNumber, - message) + url: Qt.resolvedUrl("file://" + Wallpaper.getApplicationPath( + ) + "/index.html") + onJavaScriptConsoleMessage: function (lineNumber, message) { + print(lineNumber, message) + } + onLoadProgressChanged: { if (loadProgress === 100) { webView.runJavaScript(root.getSetVideoCommand(), diff --git a/ScreenPlayWidget/qml/Widget.qml b/ScreenPlayWidget/qml/Widget.qml index 93e69def..66ca8a4b 100644 --- a/ScreenPlayWidget/qml/Widget.qml +++ b/ScreenPlayWidget/qml/Widget.qml @@ -11,24 +11,25 @@ Item { Connections { function onQmlExit() { - if(Qt.platform.os === "windows") - Widget.setWindowBlur(0); + if (Qt.platform.os === "windows") + Widget.setWindowBlur(0) - animFadeOut.start(); + animFadeOut.start() } function onQmlSceneValueReceived(key, value) { - var obj2 = 'import QtQuick; Item {Component.onCompleted: loader.item.' + key + ' = ' + value + '; }'; - var newObject = Qt.createQmlObject(obj2.toString(), root, "err"); - newObject.destroy(10000); + var obj2 = 'import QtQuick; Item {Component.onCompleted: loader.item.' + + key + ' = ' + value + '; }' + var newObject = Qt.createQmlObject(obj2.toString(), root, "err") + newObject.destroy(10000) } // Replace wallpaper with QML Scene function onReloadQML(oldType) { - loader.sourceComponent = undefined; - loader.source = ""; - Widget.clearComponentCache(); - loader.source = Qt.resolvedUrl(Widget.projectSourceFileAbsolute); + loader.sourceComponent = undefined + loader.source = "" + Widget.clearComponentCache() + loader.source = Qt.resolvedUrl(Widget.projectSourceFileAbsolute) } target: Widget @@ -70,24 +71,25 @@ Item { Component.onCompleted: { switch (Widget.type) { case InstalledType.QMLWidget: - loader.source = Qt.resolvedUrl(Widget.projectSourceFileAbsolute); - break; + loader.source = Qt.resolvedUrl(Widget.projectSourceFileAbsolute) + break case InstalledType.HTMLWidget: - loader.sourceComponent = webViewComponent; - break; + loader.sourceComponent = webViewComponent + break } } onStatusChanged: { if (loader.status == Loader.Ready) { if (loader.item.widgetBackground !== undefined) - bgColor.color = loader.item.widgetBackground; + bgColor.color = loader.item.widgetBackground if (loader.item.widgetBackgroundOpacity !== undefined) - bgColor.opacity = loader.item.widgetBackgroundOpacity; - - if (loader.item.widgetWidth !== undefined && loader.item.widgetHeight !== undefined) - Widget.setWidgetSize(loader.item.widgetWidth, loader.item.widgetHeight); + bgColor.opacity = loader.item.widgetBackgroundOpacity + if (loader.item.widgetWidth !== undefined + && loader.item.widgetHeight !== undefined) + Widget.setWidgetSize(loader.item.widgetWidth, + loader.item.widgetHeight) } } } @@ -102,10 +104,9 @@ Item { anchors.fill: parent onJavaScriptConsoleMessage: print(lineNumber, message) Component.onCompleted: { - webView.url = Qt.resolvedUrl(Widget.sourcePath); + webView.url = Qt.resolvedUrl(Widget.sourcePath) } } - } MouseArea { @@ -115,16 +116,16 @@ Item { anchors.fill: parent hoverEnabled: true - onPressed: (mouse)=>{ + onPressed: function (mouse) { clickPos = { "x": mouse.x, "y": mouse.y - }; + } } onPositionChanged: { if (mouseArea.pressed) - Widget.setPos(Widget.cursorPos().x - clickPos.x, Widget.cursorPos().y - clickPos.y); - + Widget.setPos(Widget.cursorPos().x - clickPos.x, + Widget.cursorPos().y - clickPos.y) } } @@ -138,9 +139,9 @@ Item { onEntered: imgClose.opacity = 1 onExited: imgClose.opacity = 0.15 onClicked: { - if(Qt.platform.os === "windows") - Widget.setWindowBlur(0); - animFadeOut.start(); + if (Qt.platform.os === "windows") + Widget.setWindowBlur(0) + animFadeOut.start() } anchors { @@ -159,9 +160,7 @@ Item { target: parent duration: 300 } - } - } MouseArea { @@ -173,19 +172,17 @@ Item { height: width cursorShape: Qt.SizeFDiagCursor onPressed: { - clickPosition = Qt.point(mouseX, mouseY); + clickPosition = Qt.point(mouseX, mouseY) } onPositionChanged: { if (mouseAreaResize.pressed) - Widget.setWidgetSize(clickPosition.x + mouseX, clickPosition.y + mouseY); - + Widget.setWidgetSize(clickPosition.x + mouseX, + clickPosition.y + mouseY) } anchors { bottom: parent.bottom right: parent.right } - } - }