From 7e029bcdf82b40295dd1cb05f43c774ebaf9d330 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 15:55:40 +0200 Subject: [PATCH] Refactor workshop plugin to show forum when not installed Replace upload popup with regular page --- ScreenPlay/ScreenPlayQML.qrc | 2 + ScreenPlay/qml/Workshop/Background.qml | 63 +- ScreenPlay/qml/Workshop/Forum.qml | 65 + ScreenPlay/qml/Workshop/SteamProfile.qml | 39 +- ScreenPlay/qml/Workshop/SteamWorkshop.qml | 539 +--- .../qml/Workshop/SteamWorkshopStartPage.qml | 525 ++++ ScreenPlay/qml/Workshop/Workshop.qml | 79 +- .../qml/Workshop/upload/UploadProject.qml | 373 +-- .../Workshop/upload/UploadProjectBigItem.qml | 4 +- .../qml/Workshop/upload/UploadProjectItem.qml | 3 +- ScreenPlay/translations/ScreenPlay_.ts | 448 ++- ScreenPlay/translations/ScreenPlay_de_DE.qm | Bin 42968 -> 49852 bytes ScreenPlay/translations/ScreenPlay_de_DE.ts | 2752 ++++++++--------- ScreenPlay/translations/ScreenPlay_es_ES.qm | Bin 268 -> 46185 bytes ScreenPlay/translations/ScreenPlay_es_ES.ts | 2752 ++++++++--------- ScreenPlay/translations/ScreenPlay_fr_FR.qm | Bin 186 -> 47458 bytes ScreenPlay/translations/ScreenPlay_fr_FR.ts | 2752 ++++++++--------- ScreenPlay/translations/ScreenPlay_ko_KR.qm | Bin 264 -> 45697 bytes ScreenPlay/translations/ScreenPlay_ko_KR.ts | 2752 ++++++++--------- ScreenPlay/translations/ScreenPlay_nl_NL.ts | 396 +-- ScreenPlay/translations/ScreenPlay_pt_BR.qm | Bin 271 -> 46185 bytes ScreenPlay/translations/ScreenPlay_pt_BR.ts | 2752 ++++++++--------- ScreenPlay/translations/ScreenPlay_ru_RU.qm | Bin 279 -> 46487 bytes ScreenPlay/translations/ScreenPlay_ru_RU.ts | 2752 ++++++++--------- ScreenPlay/translations/ScreenPlay_tr_TR.qm | Bin 189 -> 47658 bytes ScreenPlay/translations/ScreenPlay_tr_TR.ts | 2752 ++++++++--------- ScreenPlay/translations/ScreenPlay_vi_VN.qm | Bin 36920 -> 48679 bytes ScreenPlay/translations/ScreenPlay_vi_VN.ts | 2752 ++++++++--------- ScreenPlay/translations/ScreenPlay_zh_CN.qm | Bin 34170 -> 34224 bytes ScreenPlay/translations/ScreenPlay_zh_CN.ts | 2752 ++++++++--------- .../src/screenplayworkshop_plugin.cpp | 1 - ScreenPlayWorkshop/src/steamworkshop.cpp | 4 - ScreenPlayWorkshop/src/steamworkshopitem.cpp | 8 +- 33 files changed, 13668 insertions(+), 13649 deletions(-) create mode 100644 ScreenPlay/qml/Workshop/Forum.qml create mode 100644 ScreenPlay/qml/Workshop/SteamWorkshopStartPage.qml diff --git a/ScreenPlay/ScreenPlayQML.qrc b/ScreenPlay/ScreenPlayQML.qrc index e091f0f6..dc610a9e 100644 --- a/ScreenPlay/ScreenPlayQML.qrc +++ b/ScreenPlay/ScreenPlayQML.qrc @@ -92,5 +92,7 @@ qml/Create/StartInfoLinkImage.qml qml/Workshop/SteamProfile.qml qml/Workshop/SteamWorkshop.qml + qml/Workshop/Forum.qml + qml/Workshop/SteamWorkshopStartPage.qml diff --git a/ScreenPlay/qml/Workshop/Background.qml b/ScreenPlay/qml/Workshop/Background.qml index 6c23240c..33790e4c 100644 --- a/ScreenPlay/qml/Workshop/Background.qml +++ b/ScreenPlay/qml/Workshop/Background.qml @@ -7,22 +7,31 @@ Rectangle { property string backgroundImage: "" property int imageOffsetTop: 0 + property int stackViewDepth: 0 + onStackViewDepthChanged: { + if (stackViewDepth > 1) { + root.state = "backgroundBlur" + return true + } + root.state = "backgroundImage" + return false + } color: "#161C1D" onImageOffsetTopChanged: { if ((imageOffsetTop * -1) >= 200) { - root.state = "backgroundColor"; + root.state = "backgroundColor" } else { if (root.state !== "backgroundImage") - root.state = "backgroundImage"; - + root.state = "backgroundImage" } } + onBackgroundImageChanged: { if (backgroundImage === "") - root.state = ""; + root.state = "" else - root.state = "backgroundImage"; + root.state = "backgroundImage" } Image { @@ -68,11 +77,8 @@ Rectangle { position: 1 color: "#161C1D" } - } - } - } MaskedBlur { @@ -113,7 +119,6 @@ Rectangle { target: blur opacity: 0 } - }, State { name: "backgroundImage" @@ -131,8 +136,8 @@ Rectangle { PropertyChanges { target: blur opacity: 0 + radius: 16 } - }, State { name: "backgroundColor" @@ -150,8 +155,27 @@ Rectangle { PropertyChanges { target: blur opacity: 1 + radius: 16 + } + }, + State { + name: "backgroundBlur" + + PropertyChanges { + target: bgImage + opacity: 1 } + PropertyChanges { + target: bgColor + opacity: 0.85 + } + + PropertyChanges { + target: blur + opacity: 1 + radius: 64 + } } ] transitions: [ @@ -166,7 +190,6 @@ Rectangle { easing.type: Easing.InOutQuart property: "opacity" } - }, Transition { from: "backgroundImage" @@ -179,7 +202,25 @@ Rectangle { easing.type: Easing.InOutQuart property: "opacity" } + }, + Transition { + from: "backgroundImage" + to: "backgroundBlur" + reversible: true + PropertyAnimation { + targets: [bgImage, bgColor, blur] + duration: 300 + easing.type: Easing.InOutQuart + property: "opacity" + } + + PropertyAnimation { + target: blur + duration: 300 + easing.type: Easing.InOutQuart + property: "radius" + } } ] } diff --git a/ScreenPlay/qml/Workshop/Forum.qml b/ScreenPlay/qml/Workshop/Forum.qml new file mode 100644 index 00000000..8c684662 --- /dev/null +++ b/ScreenPlay/qml/Workshop/Forum.qml @@ -0,0 +1,65 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Controls.Material 2.12 +import QtQuick.Layouts 1.12 +import QtGraphicalEffects 1.0 +import QtWebEngine 1.8 +import ScreenPlay 1.0 + + +Item { + id: root + + Rectangle { + id: navWrapper + + color: Material.theme === Material.Light ? "white" : Material.background + height: 46 + + anchors { + top: parent.top + right: parent.right + left: parent.left + } + + RowLayout { + anchors{ + fill: parent + rightMargin: 20 + leftMargin: 20 + } + + spacing: 20 + Text { + id: name + text: qsTr("Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam.") + Layout.fillHeight: true + Layout.fillWidth: true + verticalAlignment: Text.AlignVCenter + font.pointSize: 10 + font.family: ScreenPlay.settings.font + color: Material.secondaryTextColor + } + Button { + text: qsTr("Install Steam Version") + onClicked: Qt.openUrlExternally("https://store.steampowered.com/app/672870/ScreenPlay/") + } + Button { + text: qsTr("Open In Browser") + onClicked: Qt.openUrlExternally("https://forum.screen-play.app/category/5/wallpaper") + } + } + } + + WebEngineView { + id: webView + anchors { + top: navWrapper.bottom + right: parent.right + bottom: parent.bottom + left: parent.left + } + url:"https://forum.screen-play.app/category/5/wallpaper" + + } +} diff --git a/ScreenPlay/qml/Workshop/SteamProfile.qml b/ScreenPlay/qml/Workshop/SteamProfile.qml index d7468f41..f4c64006 100644 --- a/ScreenPlay/qml/Workshop/SteamProfile.qml +++ b/ScreenPlay/qml/Workshop/SteamProfile.qml @@ -11,12 +11,11 @@ import "../Common" as Common Item { id: root - property ScreenPlayWorkshop workshop - property SteamWorkshop steam + property ScreenPlayWorkshop screenPlayWorkshop + property SteamWorkshop steamWorkshop - signal requestWorkshopMainPage - - Component.onCompleted: steam.requestUserItems() + signal requestBack + Component.onCompleted: steamWorkshop.requestUserItems() Flickable { id: scrollView @@ -48,7 +47,7 @@ Item { width: 70 height: 70 Component.onCompleted: { - steam.steamAccount.loadAvatar() + root.steamWorkshop.steamAccount.loadAvatar() } Connections { @@ -57,7 +56,7 @@ Item { avatarPlaceholder.opacity = 0 } - target: steam.steamAccount + target: root.steamWorkshop.steamAccount } Image { id: avatarPlaceholder @@ -67,7 +66,7 @@ Item { } Text { - text: steam.steamAccount.username + text: root.steamWorkshop.steamAccount.username font.pointSize: 12 color: "white" font.family: ScreenPlay.settings.font @@ -76,7 +75,7 @@ Item { Button { text: qsTr("Back") - onClicked: root.requestWorkshopMainPage() + onClicked: root.requestBack() } } } @@ -90,7 +89,7 @@ Item { cellHeight: 190 height: contentHeight interactive: false - model: root.steam.workshopProfileListModel + model: root.steamWorkshop.workshopProfileListModel boundsBehavior: Flickable.StopAtBounds anchors { @@ -108,7 +107,7 @@ Item { additionalPreviewUrl: m_additionalPreviewUrl subscriptionCount: m_subscriptionCount itemIndex: index - steamWorkshop: root.steam + steamWorkshop: root.steamWorkshop // onClicked: { // sidebar.setWorkshopItem(publishedFileID, imgUrl, // additionalPreviewUrl, @@ -136,10 +135,10 @@ Item { Layout.alignment: Qt.AlignVCenter text: qsTr("Back") - enabled: root.steam.workshopProfileListModel.currentPage > 1 + enabled: root.steamWorkshop.workshopProfileListModel.currentPage > 1 onClicked: { - root.steam.workshopProfileListModel.setCurrentPage( - root.steam.workshopProfileListModel.currentPage - 1) + root.steamWorkshop.workshopProfileListModel.setCurrentPage( + root.steamWorkshop.workshopProfileListModel.currentPage - 1) } } @@ -147,8 +146,8 @@ Item { id: txtPage Layout.alignment: Qt.AlignVCenter - text: root.steam.workshopProfileListModel.currentPage + "/" - + root.steam.workshopProfileListModel.pages + text: root.steamWorkshop.workshopProfileListModel.currentPage + + "/" + root.steamWorkshop.workshopProfileListModel.pages font.family: ScreenPlay.settings.font color: Material.primaryTextColor } @@ -158,11 +157,11 @@ Item { Layout.alignment: Qt.AlignVCenter text: qsTr("Forward") - enabled: root.steam.workshopProfileListModel.currentPage - <= root.steam.workshopProfileListModel.pages - 1 + enabled: root.steamWorkshop.workshopProfileListModel.currentPage + <= root.steamWorkshop.workshopProfileListModel.pages - 1 onClicked: { - root.steam.workshopProfileListModel.setCurrentPage( - root.steam.workshopProfileListModel.currentPage + 1) + root.steamWorkshop.workshopProfileListModel.setCurrentPage( + root.steamWorkshop.workshopProfileListModel.currentPage + 1) } } diff --git a/ScreenPlay/qml/Workshop/SteamWorkshop.qml b/ScreenPlay/qml/Workshop/SteamWorkshop.qml index 9d407bfa..32db843a 100644 --- a/ScreenPlay/qml/Workshop/SteamWorkshop.qml +++ b/ScreenPlay/qml/Workshop/SteamWorkshop.qml @@ -6,520 +6,83 @@ import QtQuick.Layouts 1.12 import Workshop 1.0 import ScreenPlay 1.0 import "upload/" -import "../Common" as Common Item { id: root - property ScreenPlayWorkshop workshop - property SteamWorkshop steam - - signal openSteamProfile - - onVisibleChanged: { - if (!visible) - sidebar.close() - } - Component.onCompleted: { - if (root.steam.online) { - root.steam.searchWorkshop(SteamEnums.K_EUGCQuery_RankedByTrend) - } else { - - popupOffline.open() + ScreenPlayWorkshop { + id: screenPlayWorkshop + Component.onCompleted: { + if (screenPlayWorkshop.init()) { + stackView.push("qrc:/qml/Workshop/SteamWorkshopStartPage.qml", { + "stackView": stackView, + "screenPlayWorkshop": screenPlayWorkshop, + "steamWorkshop": screenPlayWorkshop.steamWorkshop, + "background": background + }) + } else { + popupOffline.open() + } } } - MouseArea { - enabled: gridView.count === 0 - z: enabled ? 10 : 0 - cursorShape: enabled ? Qt.WaitCursor : Qt.ArrowCursor - acceptedButtons: Qt.NoButton - propagateComposedEvents: true - anchors.fill: parent - preventStealing: true - } - - Connections { - function onWorkshopSearched() { - bannerTxt.text = root.steam.workshopListModel.getBannerText() - background.backgroundImage = root.steam.workshopListModel.getBannerUrl() - banner.bannerPublishedFileID = root.steam.workshopListModel.getBannerID() - bannerTxtUnderline.numberSubscriber - = root.steam.workshopListModel.getBannerAmountSubscriber() - } - - target: root.steam - } Background { id: background anchors.fill: parent + stackViewDepth: stackView.depth } - UploadProject { - id: popupUploadProject - screenPlayWorkshop: workshop + + PopupOffline { + id: popupOffline + workshop: screenPlayWorkshop + steam: screenPlayWorkshop.steamWorkshop } - PopupSteamWorkshopAgreement { - id: popupSteamWorkshopAgreement - } + StackView { + id: stackView + property int duration: 300 - Connections { - function onUserNeedsToAcceptWorkshopLegalAgreement() { - popupSteamWorkshopAgreement.open() + Connections { + target: stackView.currentItem + ignoreUnknownSignals: true + function onRequestBack() { + stackView.pop() + } } - target: root.steam.uploadListModel - } - - Flickable { - id: scrollView - anchors.fill: parent - contentWidth: parent.width - contentHeight: gridView.height + header.height + 150 - onContentYChanged: { - // Calculate parallax scrolling - if (contentY >= 0) - background.imageOffsetTop = (contentY * -0.4) - else - background.imageOffsetTop = 0 - } - - Item { - id: header - - height: 450 - - anchors { - top: parent.top - right: parent.right - left: parent.left + replaceEnter: Transition { + OpacityAnimator { + from: 0 + to: 1 + duration: stackView.duration + easing.type: Easing.InOutQuart } - Item { - id: banner - - property var bannerPublishedFileID - - height: header.height - - anchors { - top: parent.top - right: parent.right - left: parent.left - } - - Image { - id: bannerImg2 - - asynchronous: true - fillMode: Image.PreserveAspectCrop - - anchors { - right: parent.right - left: parent.left - bottom: parent.bottom - } - } - - ColumnLayout { - anchors { - top: parent.top - topMargin: 100 - right: parent.right - left: parent.left - leftMargin: 100 - } - - Text { - id: bannerTxtUnderline - - property int numberSubscriber: 0 - - text: numberSubscriber + " SUBSCRIBED TO:" - font.pointSize: 12 - color: "white" - font.family: ScreenPlay.settings.font - font.weight: Font.Thin - } - - Text { - id: bannerTxt - - text: qsTr("Loading") - font.pointSize: 42 - color: "white" - font.family: ScreenPlay.settings.font - font.weight: Font.Thin - width: 400 - } - - RowLayout { - spacing: 10 - - Button { - text: qsTr("Download now!") - Material.background: Material.accent - Material.foreground: "white" - icon.source: "qrc:/assets/icons/icon_download.svg" - onClicked: { - text = qsTr("Downloading...") - root.steam.subscribeItem( - root.steam.workshopListModel.getBannerID( - )) - } - } - - Button { - text: qsTr("Details") - Material.background: Material.accent - Material.foreground: "white" - icon.source: "qrc:/assets/icons/icon_info.svg" - visible: false - onClicked: { - sidebar.setWorkshopItem(publishedFileID, - imgUrl, - additionalPreviewUrl, - subscriptionCount) - } - } - } - - MouseArea { - onClicked: Qt.openUrlExternally( - "steam://url/CommunityFilePage/" - + banner.bannerPublishedFileID) - height: 30 - width: bannerTxtOpenInSteam.paintedWidth - cursorShape: Qt.PointingHandCursor - - Text { - id: bannerTxtOpenInSteam - - opacity: 0.7 - text: qsTr("Open In Steam") - font.pointSize: 10 - color: "white" - font.underline: true - font.family: ScreenPlay.settings.font - font.weight: Font.Thin - } - } - } - } - } - - GridView { - id: gridView - - maximumFlickVelocity: 7000 - flickDeceleration: 5000 - cellWidth: 330 - cellHeight: 190 - height: contentHeight - interactive: false - model: root.steam.workshopListModel - boundsBehavior: Flickable.StopAtBounds - - anchors { - top: header.bottom - topMargin: 100 - left: parent.left - right: parent.right - leftMargin: 45 - } - - header: Item { - property alias searchField: tiSearch - - height: 80 - width: gridView.width - gridView.anchors.leftMargin - - Rectangle { - color: Material.backgroundColor - radius: 3 - width: parent.width - 20 - height: 70 - anchors.centerIn: parent - - SteamImage { - id: avatar - - width: 70 - height: 70 - Component.onCompleted: { - steam.steamAccount.loadAvatar() - } - - anchors { - left: parent.left - verticalCenter: parent.verticalCenter - } - - Connections { - function onAvatarChanged(_avatar) { - avatar.setImage(_avatar) - avatarPlaceholder.opacity = 0 - } - - target: steam.steamAccount - } - } - - Image { - id: avatarPlaceholder - anchors.fill: avatar - source: "qrc:/assets/icons/steam_default_avatar.png" - } - - Button { - id: btnSteamProfile - - anchors { - verticalCenter: parent.verticalCenter - left: avatar.right - leftMargin: 20 - } - - text: qsTr("Profile") - onClicked: root.openSteamProfile() - } - - Button { - id: btnSteamUpload - - anchors { - verticalCenter: parent.verticalCenter - left: btnSteamProfile.right - leftMargin: 20 - } - - text: qsTr("Upload") - onClicked: popupUploadProject.open() - } - - Item { - id: searchWrapper - - width: 400 - height: 50 - - anchors { - verticalCenter: parent.verticalCenter - left: btnSteamUpload.right - leftMargin: 20 - } - - TextField { - id: tiSearch - placeholderText: qsTr("Search for Wallpaper and Widgets...") - onEditingFinished: root.steam.searchWorkshopByText( - tiSearch.text) - anchors { - top: parent.top - right: parent.right - bottom: parent.bottom - left: parent.left - leftMargin: 10 - } - } - - ToolButton { - id: tb - icon.source: "qrc:/assets/icons/icon_search.svg" - onClicked: root.steam.searchWorkshopByText( - tiSearch.text) - icon.width: 20 - icon.height: 20 - anchors { - right: parent.right - bottom: parent.bottom - bottomMargin: 10 - } - } - } - - RowLayout { - spacing: 20 - - anchors { - left: searchWrapper.right - leftMargin: 20 - right: cbQuerySort.left - rightMargin: 20 - verticalCenter: parent.verticalCenter - } - - Item { - Layout.fillWidth: true - Layout.fillHeight: true - } - - Button { - text: qsTr("Open Workshop in Steam") - font.capitalization: Font.Capitalize - font.family: ScreenPlay.settings.font - onClicked: Qt.openUrlExternally( - "steam://url/SteamWorkshopPage/672870") - icon.source: "qrc:/assets/icons/icon_steam.svg" - icon.width: 18 - icon.height: 18 - height: cbQuerySort.height - } - } - - ComboBox { - id: cbQuerySort - - width: 220 - height: searchWrapper.height - textRole: "text" - valueRole: "value" - currentIndex: 2 - Layout.preferredHeight: searchWrapper.height - font.family: ScreenPlay.settings.font - model: [{ - "value": SteamEnums.k_EUGCQuery_RankedByVote, - "text": qsTr("Ranked By Vote") - }, { - "value": SteamEnums.K_EUGCQuery_RankedByPublicationDate, - "text": qsTr("Publication Date") - }, { - "value": SteamEnums.K_EUGCQuery_RankedByTrend, - "text": qsTr("Ranked By Trend") - }, { - "value": SteamEnums.K_EUGCQuery_FavoritedByFriendsRankedByPublicationDate, - "text": qsTr("Favorited By Friends") - }, { - "value": SteamEnums.K_EUGCQuery_CreatedByFriendsRankedByPublicationDate, - "text": qsTr("Created By Friends") - }, { - "value": SteamEnums.K_EUGCQuery_CreatedByFollowedUsersRankedByPublicationDate, - "text": qsTr("Created By Followed Users") - }, { - "value": SteamEnums.K_EUGCQuery_NotYetRated, - "text": qsTr("Not Yet Rated") - }, { - "value": SteamEnums.K_EUGCQuery_RankedByTotalVotesAsc, - "text": qsTr("Total VotesAsc") - }, { - "value": SteamEnums.K_EUGCQuery_RankedByVotesUp, - "text": qsTr("Votes Up") - }, { - "value": SteamEnums.K_EUGCQuery_RankedByTotalUniqueSubscriptions, - "text": qsTr("Total Unique Subscriptions") - }] - onActivated: { - root.steam.searchWorkshop(cbQuerySort.currentValue) - } - - anchors { - verticalCenter: parent.verticalCenter - right: parent.right - rightMargin: 10 - } - } - } - } - - delegate: WorkshopItem { - imgUrl: m_workshopPreview - name: m_workshopTitle - publishedFileID: m_publishedFileID - additionalPreviewUrl: m_additionalPreviewUrl - subscriptionCount: m_subscriptionCount - itemIndex: index - steamWorkshop: root.steam - onClicked: { - sidebar.setWorkshopItem(publishedFileID, imgUrl, - additionalPreviewUrl, - subscriptionCount) - } - } - - ScrollBar.vertical: ScrollBar { - id: workshopScrollBar - - snapMode: ScrollBar.SnapOnRelease - } - - footer: RowLayout { - height: 150 - width: parent.width - spacing: 10 - - Item { - Layout.fillWidth: true - } - - Button { - id: btnBack - - Layout.alignment: Qt.AlignVCenter - text: qsTr("Back") - enabled: root.steam.workshopListModel.currentPage > 1 - onClicked: { - root.steam.workshopListModel.setCurrentPage( - root.steam.workshopListModel.currentPage - 1) - root.steam.searchWorkshop( - SteamEnums.K_EUGCQuery_RankedByTrend) - } - } - - Text { - id: txtPage - - Layout.alignment: Qt.AlignVCenter - text: root.steam.workshopListModel.currentPage + "/" - + root.steam.workshopListModel.pages - font.family: ScreenPlay.settings.font - color: Material.primaryTextColor - } - - Button { - id: btnForward - - Layout.alignment: Qt.AlignVCenter - text: qsTr("Forward") - enabled: root.steam.workshopListModel.currentPage - <= root.steam.workshopListModel.pages - 1 - onClicked: { - root.steam.workshopListModel.setCurrentPage( - root.steam.workshopListModel.currentPage + 1) - root.steam.searchWorkshop( - SteamEnums.K_EUGCQuery_RankedByTrend) - } - } - - Item { - Layout.fillWidth: true - } - } - } - - Behavior on contentHeight { - PropertyAnimation { - duration: 400 - property: "contentHeight" + ScaleAnimator { + from: 0.8 + to: 1 + duration: stackView.duration easing.type: Easing.InOutQuart } } - ScrollBar.vertical: ScrollBar { - snapMode: ScrollBar.SnapOnRelease - } - } + replaceExit: Transition { + OpacityAnimator { + from: 1 + to: 0 + duration: stackView.duration + easing.type: Easing.InOutQuart + } - Sidebar { - id: sidebar - - topMargin: 60 - steamWorkshop: root.steam - onTagClicked: { - gridView.headerItem.searchField.text = tag - sidebar.close() + ScaleAnimator { + from: 1 + to: 0.8 + duration: stackView.duration + easing.type: Easing.InOutQuart + } } } } diff --git a/ScreenPlay/qml/Workshop/SteamWorkshopStartPage.qml b/ScreenPlay/qml/Workshop/SteamWorkshopStartPage.qml new file mode 100644 index 00000000..440d061f --- /dev/null +++ b/ScreenPlay/qml/Workshop/SteamWorkshopStartPage.qml @@ -0,0 +1,525 @@ +import QtQuick 2.13 +import QtQuick.Controls 2.13 +import QtQuick.Controls.Material 2.13 +import QtGraphicalEffects 1.0 +import QtQuick.Layouts 1.12 +import Workshop 1.0 +import ScreenPlay 1.0 +import "upload/" +import "../Common" as Common + +Item { + id: root + + property SteamWorkshop steamWorkshop + property ScreenPlayWorkshop screenPlayWorkshop + property StackView stackView + property Background background + + Component.onCompleted: { + root.steamWorkshop.searchWorkshop(SteamEnums.K_EUGCQuery_RankedByTrend) + } + + onVisibleChanged: { + if (!visible) + sidebar.close() + } + + MouseArea { + enabled: gridView.count === 0 + z: enabled ? 10 : 0 + cursorShape: enabled ? Qt.WaitCursor : Qt.ArrowCursor + acceptedButtons: Qt.NoButton + propagateComposedEvents: true + anchors.fill: parent + preventStealing: true + } + + Connections { + function onWorkshopSearched() { + bannerTxt.text = root.steamWorkshop.workshopListModel.getBannerText( + ) + background.backgroundImage = root.steamWorkshop.workshopListModel.getBannerUrl() + banner.bannerPublishedFileID = root.steamWorkshop.workshopListModel.getBannerID() + bannerTxtUnderline.numberSubscriber + = root.steamWorkshop.workshopListModel.getBannerAmountSubscriber() + } + + target: root.steamWorkshop + } + + PopupSteamWorkshopAgreement { + id: popupSteamWorkshopAgreement + } + + Connections { + function onUserNeedsToAcceptWorkshopLegalAgreement() { + popupSteamWorkshopAgreement.open() + } + + target: root.steamWorkshop.uploadListModel + } + + Flickable { + id: scrollView + + anchors.fill: parent + contentWidth: parent.width + contentHeight: gridView.height + header.height + 150 + onContentYChanged: { + // Calculate parallax scrolling + if (contentY >= 0) + background.imageOffsetTop = (contentY * -0.4) + else + background.imageOffsetTop = 0 + } + + Item { + id: header + + height: 450 + + anchors { + top: parent.top + right: parent.right + left: parent.left + } + + Item { + id: banner + + property var bannerPublishedFileID + + height: header.height + + anchors { + top: parent.top + right: parent.right + left: parent.left + } + + Image { + id: bannerImg2 + + asynchronous: true + fillMode: Image.PreserveAspectCrop + + anchors { + right: parent.right + left: parent.left + bottom: parent.bottom + } + } + + ColumnLayout { + anchors { + top: parent.top + topMargin: 100 + right: parent.right + left: parent.left + leftMargin: 100 + } + + Text { + id: bannerTxtUnderline + + property int numberSubscriber: 0 + + text: numberSubscriber + " SUBSCRIBED TO:" + font.pointSize: 12 + color: "white" + font.family: ScreenPlay.settings.font + font.weight: Font.Thin + } + + Text { + id: bannerTxt + + text: qsTr("Loading") + font.pointSize: 42 + color: "white" + font.family: ScreenPlay.settings.font + font.weight: Font.Thin + width: 400 + } + + RowLayout { + spacing: 10 + + Button { + text: qsTr("Download now!") + Material.background: Material.accent + Material.foreground: "white" + icon.source: "qrc:/assets/icons/icon_download.svg" + onClicked: { + text = qsTr("Downloading...") + root.steamWorkshop.subscribeItem( + root.steamWorkshop.workshopListModel.getBannerID( + )) + } + } + + Button { + text: qsTr("Details") + Material.background: Material.accent + Material.foreground: "white" + icon.source: "qrc:/assets/icons/icon_info.svg" + visible: false + onClicked: { + sidebar.setWorkshopItem(publishedFileID, + imgUrl, + additionalPreviewUrl, + subscriptionCount) + } + } + } + + MouseArea { + onClicked: Qt.openUrlExternally( + "steam://url/CommunityFilePage/" + + banner.bannerPublishedFileID) + height: 30 + width: bannerTxtOpenInSteam.paintedWidth + cursorShape: Qt.PointingHandCursor + + Text { + id: bannerTxtOpenInSteam + + opacity: 0.7 + text: qsTr("Open In Steam") + font.pointSize: 10 + color: "white" + font.underline: true + font.family: ScreenPlay.settings.font + font.weight: Font.Thin + } + } + } + } + } + + GridView { + id: gridView + + maximumFlickVelocity: 7000 + flickDeceleration: 5000 + cellWidth: 330 + cellHeight: 190 + height: contentHeight + interactive: false + model: root.steamWorkshop.workshopListModel + boundsBehavior: Flickable.StopAtBounds + + anchors { + top: header.bottom + topMargin: 100 + left: parent.left + right: parent.right + leftMargin: 45 + } + + header: Item { + property alias searchField: tiSearch + + height: 80 + width: gridView.width - gridView.anchors.leftMargin + + Rectangle { + color: Material.backgroundColor + radius: 3 + width: parent.width - 20 + height: 70 + anchors.centerIn: parent + + SteamImage { + id: avatar + + width: 70 + height: 70 + Component.onCompleted: { + steamWorkshop.steamAccount.loadAvatar() + } + + anchors { + left: parent.left + verticalCenter: parent.verticalCenter + } + + Connections { + function onAvatarChanged(_avatar) { + avatar.setImage(_avatar) + avatarPlaceholder.opacity = 0 + } + + target: steamWorkshop.steamAccount + } + } + + Image { + id: avatarPlaceholder + anchors.fill: avatar + source: "qrc:/assets/icons/steam_default_avatar.png" + } + + Button { + id: btnSteamProfile + + anchors { + verticalCenter: parent.verticalCenter + left: avatar.right + leftMargin: 20 + } + + text: qsTr("Profile") + onClicked: { + stackView.push( + "qrc:/qml/Workshop/SteamProfile.qml", { + "screenPlayWorkshop": root.screenPlayWorkshop, + "steamWorkshop": root.steamWorkshop + }) + } + } + + Button { + id: btnSteamUpload + + anchors { + verticalCenter: parent.verticalCenter + left: btnSteamProfile.right + leftMargin: 20 + } + + text: qsTr("Upload") + onClicked: { + stackView.push( + "qrc:/qml/Workshop/upload/UploadProject.qml", { + "screenPlayWorkshop": root.screenPlayWorkshop, + "steamWorkshop": root.steamWorkshop + }) + } + } + + Item { + id: searchWrapper + + width: 400 + height: 50 + + anchors { + verticalCenter: parent.verticalCenter + left: btnSteamUpload.right + leftMargin: 20 + } + + TextField { + id: tiSearch + placeholderText: qsTr("Search for Wallpaper and Widgets...") + onEditingFinished: root.steamWorkshop.searchWorkshopByText( + tiSearch.text) + anchors { + top: parent.top + right: parent.right + bottom: parent.bottom + left: parent.left + leftMargin: 10 + } + } + + ToolButton { + id: tb + icon.source: "qrc:/assets/icons/icon_search.svg" + onClicked: root.steamWorkshop.searchWorkshopByText( + tiSearch.text) + icon.width: 20 + icon.height: 20 + anchors { + right: parent.right + bottom: parent.bottom + bottomMargin: 10 + } + } + } + + RowLayout { + spacing: 20 + + anchors { + left: searchWrapper.right + leftMargin: 20 + right: cbQuerySort.left + rightMargin: 20 + verticalCenter: parent.verticalCenter + } + + Item { + Layout.fillWidth: true + Layout.fillHeight: true + } + + Button { + text: qsTr("Open Workshop in Steam") + font.capitalization: Font.Capitalize + font.family: ScreenPlay.settings.font + onClicked: Qt.openUrlExternally( + "steam://url/SteamWorkshopPage/672870") + icon.source: "qrc:/assets/icons/icon_steam.svg" + icon.width: 18 + icon.height: 18 + height: cbQuerySort.height + } + } + + ComboBox { + id: cbQuerySort + + width: 220 + height: searchWrapper.height + textRole: "text" + valueRole: "value" + currentIndex: 2 + Layout.preferredHeight: searchWrapper.height + font.family: ScreenPlay.settings.font + model: [{ + "value": SteamEnums.k_EUGCQuery_RankedByVote, + "text": qsTr("Ranked By Vote") + }, { + "value": SteamEnums.K_EUGCQuery_RankedByPublicationDate, + "text": qsTr("Publication Date") + }, { + "value": SteamEnums.K_EUGCQuery_RankedByTrend, + "text": qsTr("Ranked By Trend") + }, { + "value": SteamEnums.K_EUGCQuery_FavoritedByFriendsRankedByPublicationDate, + "text": qsTr("Favorited By Friends") + }, { + "value": SteamEnums.K_EUGCQuery_CreatedByFriendsRankedByPublicationDate, + "text": qsTr("Created By Friends") + }, { + "value": SteamEnums.K_EUGCQuery_CreatedByFollowedUsersRankedByPublicationDate, + "text": qsTr("Created By Followed Users") + }, { + "value": SteamEnums.K_EUGCQuery_NotYetRated, + "text": qsTr("Not Yet Rated") + }, { + "value": SteamEnums.K_EUGCQuery_RankedByTotalVotesAsc, + "text": qsTr("Total VotesAsc") + }, { + "value": SteamEnums.K_EUGCQuery_RankedByVotesUp, + "text": qsTr("Votes Up") + }, { + "value": SteamEnums.K_EUGCQuery_RankedByTotalUniqueSubscriptions, + "text": qsTr("Total Unique Subscriptions") + }] + onActivated: { + root.steamWorkshop.searchWorkshop( + cbQuerySort.currentValue) + } + + anchors { + verticalCenter: parent.verticalCenter + right: parent.right + rightMargin: 10 + } + } + } + } + + delegate: WorkshopItem { + imgUrl: m_workshopPreview + name: m_workshopTitle + publishedFileID: m_publishedFileID + additionalPreviewUrl: m_additionalPreviewUrl + subscriptionCount: m_subscriptionCount + itemIndex: index + steamWorkshop: root.steamWorkshop + onClicked: { + sidebar.setWorkshopItem(publishedFileID, imgUrl, + additionalPreviewUrl, + subscriptionCount) + } + } + + ScrollBar.vertical: ScrollBar { + id: workshopScrollBar + + snapMode: ScrollBar.SnapOnRelease + } + + footer: RowLayout { + height: 150 + width: parent.width + spacing: 10 + + Item { + Layout.fillWidth: true + } + + Button { + id: btnBack + + Layout.alignment: Qt.AlignVCenter + text: qsTr("Back") + enabled: root.steamWorkshop.workshopListModel.currentPage > 1 + onClicked: { + root.steamWorkshop.workshopListModel.setCurrentPage( + root.steamWorkshop.workshopListModel.currentPage - 1) + root.steamWorkshop.searchWorkshop( + SteamEnums.K_EUGCQuery_RankedByTrend) + } + } + + Text { + id: txtPage + + Layout.alignment: Qt.AlignVCenter + text: root.steamWorkshop.workshopListModel.currentPage + "/" + + root.steamWorkshop.workshopListModel.pages + font.family: ScreenPlay.settings.font + color: Material.primaryTextColor + } + + Button { + id: btnForward + + Layout.alignment: Qt.AlignVCenter + text: qsTr("Forward") + enabled: root.steamWorkshop.workshopListModel.currentPage + <= root.steamWorkshop.workshopListModel.pages - 1 + onClicked: { + root.steamWorkshop.workshopListModel.setCurrentPage( + root.steamWorkshop.workshopListModel.currentPage + 1) + root.steamWorkshop.searchWorkshop( + SteamEnums.K_EUGCQuery_RankedByTrend) + } + } + + Item { + Layout.fillWidth: true + } + } + } + + Behavior on contentHeight { + PropertyAnimation { + duration: 400 + property: "contentHeight" + easing.type: Easing.InOutQuart + } + } + + ScrollBar.vertical: ScrollBar { + snapMode: ScrollBar.SnapOnRelease + } + } + + Sidebar { + id: sidebar + + topMargin: 60 + steamWorkshop: root.steamWorkshop + onTagClicked: { + gridView.headerItem.searchField.text = tag + sidebar.close() + } + } +} diff --git a/ScreenPlay/qml/Workshop/Workshop.qml b/ScreenPlay/qml/Workshop/Workshop.qml index ac828a5a..c01ed5cc 100644 --- a/ScreenPlay/qml/Workshop/Workshop.qml +++ b/ScreenPlay/qml/Workshop/Workshop.qml @@ -3,84 +3,23 @@ import QtQuick.Controls 2.13 import QtQuick.Controls.Material 2.13 import QtGraphicalEffects 1.0 import QtQuick.Layouts 1.12 -import Workshop 1.0 +import Settings 1.0 import ScreenPlay 1.0 Item { id: root - ScreenPlayWorkshop { - id: ws - - Component.onCompleted: { - const success = ws.init(); - if(success){ - stackView.push("qrc:/qml/Workshop/SteamWorkshop.qml", { - "workshop": ws, - "steam": ws.steamWorkshop - }) - } else { - popupOffline.open() - } + Component.onCompleted: { + if (ScreenPlay.settings.steamVersion) { + workshopLoader.setSource("qrc:/qml/Workshop/SteamWorkshop.qml") + } else { + workshopLoader.setSource("qrc:/qml/Workshop/Forum.qml") } } - PopupOffline { - id: popupOffline - workshop: ws - steam: ws.steamWorkshop - } - - StackView { - id: stackView - - property int duration: 300 - - Connections { - target: stackView.currentItem - ignoreUnknownSignals: true - function onOpenSteamProfile(){ - stackView.push("qrc:/qml/Workshop/SteamProfile.qml", { - "workshop": ws, - "steam": ws.steamWorkshop - }) - } - function onRequestWorkshopMainPage(){ - stackView.pop() - } - } - + Loader { + id: workshopLoader + asynchronous: true anchors.fill: parent - 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 - } - } } } diff --git a/ScreenPlay/qml/Workshop/upload/UploadProject.qml b/ScreenPlay/qml/Workshop/upload/UploadProject.qml index 888caabd..f2ff1a4c 100644 --- a/ScreenPlay/qml/Workshop/upload/UploadProject.qml +++ b/ScreenPlay/qml/Workshop/upload/UploadProject.qml @@ -5,250 +5,215 @@ import QtQuick.Layouts 1.12 import Workshop 1.0 import ScreenPlay 1.0 -Popup { +Item { id: root property ScreenPlayWorkshop screenPlayWorkshop - property SteamWorkshop steam: screenPlayWorkshop.steamWorkshop + property SteamWorkshop steamWorkshop - width: 1200 - height: 700 - modal: true - dim: true - anchors.centerIn: Overlay.overlay - closePolicy: Popup.NoAutoClose - onAboutToShow: uploadLoader.sourceComponent = com - onAboutToHide: uploadLoader.sourceComponent = undefined + signal requestBack - Loader { - id: uploadLoader + Item { + id: headerWrapper - anchors.fill: parent - } + height: 50 - Connections { - function onRequestClosePopup() { - root.close() + anchors { + top: parent.top + right: parent.right + left: parent.left + margins: 10 } - target: uploadLoader.item + Text { + id: txtHeadline + + text: qsTr("Upload Wallpaper/Widgets to Steam") + color: Material.foreground + font.pointSize: 21 + font.family: ScreenPlay.settings.font + font.weight: Font.Thin + + anchors { + top: parent.top + horizontalCenter: parent.horizontalCenter + } + } } - Component { - id: com + SwipeView { + id: view + + clip: true + currentIndex: 0 + interactive: false + + anchors { + top: headerWrapper.bottom + right: parent.right + bottom: parent.bottom + left: parent.left + margins: 10 + } Item { - id: wrapper + id: firstPage - signal requestClosePopup + GridView { + id: gridView - Item { - id: headerWrapper - - height: 50 + boundsBehavior: Flickable.DragOverBounds + maximumFlickVelocity: 7000 + flickDeceleration: 5000 + cellWidth: parent.width + cellHeight: 250 + clip: true + model: screenPlayWorkshop.installedListModel anchors { top: parent.top right: parent.right + bottom: btnAbort.top left: parent.left margins: 10 } - Text { - id: txtHeadline + delegate: UploadProjectBigItem { + id: delegate - text: qsTr("Upload Wallpaper/Widgets to Steam") - color: Material.foreground - font.pointSize: 21 - font.family: ScreenPlay.settings.font - font.weight: Font.Thin - - anchors { - top: parent.top - horizontalCenter: parent.horizontalCenter + focus: true + width: gridView.cellWidth - 30 + customTitle: m_title + type: m_type + screenId: m_folderId + absoluteStoragePath: m_absoluteStoragePath + publishedFileID: m_publishedFileID + preview: m_preview + itemIndex: index + onItemClicked: { + for (let childItem in gridView.contentItem.children) { + if (gridView.contentItem.children[childItem].isSelected) { + btnUploadProjects.enabled = true + return + } + } + btnUploadProjects.enabled = false } } + + ScrollBar.vertical: ScrollBar { + snapMode: ScrollBar.SnapOnRelease + policy: ScrollBar.AlwaysOn + } } - SwipeView { - id: view + Button { + id: btnAbort - clip: true - currentIndex: 0 - interactive: false + text: qsTr("Abort") + onClicked: { + root.requestBack() + } anchors { - top: headerWrapper.bottom - right: parent.right + right: btnUploadProjects.left bottom: parent.bottom - left: parent.left margins: 10 } - - Item { - id: firstPage - - GridView { - id: gridView - - boundsBehavior: Flickable.DragOverBounds - maximumFlickVelocity: 7000 - flickDeceleration: 5000 - cellWidth: parent.width - cellHeight: 250 - clip: true - model: screenPlayWorkshop.installedListModel - - anchors { - top: parent.top - right: parent.right - bottom: btnAbort.top - left: parent.left - margins: 10 - } - - delegate: UploadProjectBigItem { - id: delegate - - focus: true - width: gridView.cellWidth - 30 - customTitle: m_title - type: m_type - screenId: m_folderId - absoluteStoragePath: m_absoluteStoragePath - publishedFileID: m_publishedFileID - preview: m_preview - itemIndex: index - onItemClicked: { - for (let childItem in gridView.contentItem.children) { - if (gridView.contentItem.children[childItem].isSelected) { - btnUploadProjects.enabled = true - return - } - } - btnUploadProjects.enabled = false - } - } - - ScrollBar.vertical: ScrollBar { - snapMode: ScrollBar.SnapOnRelease - policy: ScrollBar.AlwaysOn - } - } - - Button { - id: btnAbort - - text: qsTr("Abort") - onClicked: { - wrapper.requestClosePopup() - } - - anchors { - right: btnUploadProjects.left - bottom: parent.bottom - margins: 10 - } - } - - Button { - id: btnUploadProjects - - text: qsTr("Upload Selected Projects") - highlighted: true - enabled: false - onClicked: { - var uploadListArray = [] - for (let childItem in gridView.contentItem.children) { - if (gridView.contentItem.children[childItem].isSelected) - uploadListArray.push( - gridView.contentItem.children[childItem].absoluteStoragePath) - } - view.currentIndex = 1 - steam.bulkUploadToWorkshop(uploadListArray) - } - - anchors { - right: parent.right - bottom: parent.bottom - margins: 10 - } - } - } - - Item { - id: secondPage - - ListView { - id: listView - - boundsBehavior: Flickable.DragOverBounds - maximumFlickVelocity: 7000 - flickDeceleration: 5000 - cacheBuffer: 1000 - clip: true - model: steam.uploadListModel - width: parent.width - 50 - spacing: 25 - - anchors { - top: parent.top - horizontalCenter: parent.horizontalCenter - bottom: parent.bottom - margins: 10 - } - - delegate: UploadProjectItem { - previewImagePath: m_absolutePreviewImagePath - progress: m_uploadProgress - name: m_name - steamStatus: m_status - } - - ScrollBar.vertical: ScrollBar { - snapMode: ScrollBar.SnapOnRelease - } - } - - Button { - id: btnFinish - - text: qsTr("Finish") - highlighted: true - enabled: false - onClicked: { - root.close() - } - - anchors { - right: parent.right - bottom: parent.bottom - margins: 10 - } - - Connections { - function onUploadCompleted() { - btnFinish.enabled = true - } - - target: steam.uploadListModel - } - } - } } - PageIndicator { - id: indicator + Button { + id: btnUploadProjects - count: view.count - currentIndex: view.currentIndex - anchors.bottom: view.bottom - anchors.horizontalCenter: parent.horizontalCenter + text: qsTr("Upload Selected Projects") + highlighted: true + enabled: false + onClicked: { + var uploadListArray = [] + for (let childItem in gridView.contentItem.children) { + if (gridView.contentItem.children[childItem].isSelected) + uploadListArray.push( + gridView.contentItem.children[childItem].absoluteStoragePath) + } + view.currentIndex = 1 + root.steamWorkshop.bulkUploadToWorkshop(uploadListArray) + } + + anchors { + right: parent.right + bottom: parent.bottom + margins: 10 + } + } + } + + Item { + id: secondPage + + ListView { + id: listView + + boundsBehavior: Flickable.DragOverBounds + maximumFlickVelocity: 7000 + flickDeceleration: 5000 + cacheBuffer: 1000 + clip: true + model: root.steamWorkshop.uploadListModel + width: parent.width - 50 + spacing: 25 + + anchors { + top: parent.top + horizontalCenter: parent.horizontalCenter + bottom: parent.bottom + margins: 10 + } + + delegate: UploadProjectItem { + previewImagePath: m_absolutePreviewImagePath + progress: m_uploadProgress + name: m_name + steamStatus: m_status + } + + ScrollBar.vertical: ScrollBar { + snapMode: ScrollBar.SnapOnRelease + } + } + + Button { + id: btnFinish + + text: qsTr("Finish") + highlighted: true + enabled: false + onClicked: { + root.requestBack() + } + + anchors { + right: parent.right + bottom: parent.bottom + margins: 10 + } + + Connections { + function onUploadCompleted() { + btnFinish.enabled = true + } + + target: root.steamWorkshop.uploadListModel + } } } } - background: Rectangle { - color: Material.theme === Material.Light ? "white" : Material.background + PageIndicator { + id: indicator + + count: view.count + currentIndex: view.currentIndex + anchors.bottom: view.bottom + anchors.horizontalCenter: parent.horizontalCenter } } diff --git a/ScreenPlay/qml/Workshop/upload/UploadProjectBigItem.qml b/ScreenPlay/qml/Workshop/upload/UploadProjectBigItem.qml index 736dc107..c17d0a7e 100644 --- a/ScreenPlay/qml/Workshop/upload/UploadProjectBigItem.qml +++ b/ScreenPlay/qml/Workshop/upload/UploadProjectBigItem.qml @@ -63,9 +63,9 @@ Item { Image { id: screenPlayItemImage - + asynchronous: true width: 400 - source: Qt.resolvedUrl(root.absoluteStoragePath + "/" + root.preview) + source: root.preview !== "" ? Qt.resolvedUrl(root.absoluteStoragePath + "/" + root.preview) : "" anchors { top: parent.top diff --git a/ScreenPlay/qml/Workshop/upload/UploadProjectItem.qml b/ScreenPlay/qml/Workshop/upload/UploadProjectItem.qml index cf92aa55..3f5b00c9 100644 --- a/ScreenPlay/qml/Workshop/upload/UploadProjectItem.qml +++ b/ScreenPlay/qml/Workshop/upload/UploadProjectItem.qml @@ -4,9 +4,9 @@ import QtGraphicalEffects 1.0 import QtQuick.Controls.Material 2.12 import QtQuick.Layouts 1.12 import QtQuick.Controls.Material.impl 2.12 +import Workshop 1.0 Page { - // Everyting that is not OK is a fail. See steam_qt_enums_generated.h id: root @@ -20,6 +20,7 @@ Page { anchors.centerIn: parent padding: 20 onPreviewImagePathChanged: img.source = Qt.resolvedUrl("file:///" + previewImagePath) + // Everyting that is not OK is a fail. See steam_qt_enums_generated.h onSteamStatusChanged: { let errorText; switch (steamStatus) { diff --git a/ScreenPlay/translations/ScreenPlay_.ts b/ScreenPlay/translations/ScreenPlay_.ts index 5e88c671..4d532e66 100644 --- a/ScreenPlay/translations/ScreenPlay_.ts +++ b/ScreenPlay/translations/ScreenPlay_.ts @@ -317,6 +317,24 @@ + + Forum + + + 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 + + + + + Open In Browser + + + GifWallpaper @@ -421,14 +439,6 @@ - - Headline - - - Headline - - - HeadlineSection @@ -658,7 +668,7 @@ - You grant other to remix your work and change the license to their linking. + You grant other to remix your work and change the license to their liking. @@ -775,6 +785,31 @@ Upload to the Steam Workshop + + + Create + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + NavigationWallpaperConfiguration @@ -983,197 +1018,152 @@ - - English - - - - - German - - - - - Chinese - Simplified - - - - - Russian - - - - - French - - - - - Spanish - - - - - Korean - - - - - Vietnamese - - - - - Portuguese (Brazil) - - - - + Theme - + Switch dark/light theme - + System Default - + Dark - + Light - + Performance - + 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! - + Default Fill Mode - + Set this property to define how the video is scaled to fit the target area. - + Stretch - + Fill - + Contain - + Cover - + Scale-Down - + About - + 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: - + Version - + ScreenPlay Build Version - + Open Changelog - + Third Party Software - + ScreenPlay would not be possible without the work of others. A big thank you to: - + Licenses - + Logs - + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - + Show Logs - + Data Protection - + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - + Privacy @@ -1358,121 +1348,121 @@ SteamProfile - - + + Back - + Forward - SteamWorkshop + SteamWorkshopStartPage - + Loading - + Download now! - + Downloading... - + Details - + Open In Steam - + Profile - + Upload - + Search for Wallpaper and Widgets... - + Open Workshop in Steam - + Ranked By Vote - + Publication Date - + Ranked By Trend - + Favorited By Friends - + Created By Friends - + Created By Followed Users - + Not Yet Rated - + Total VotesAsc - + Votes Up - + Total Unique Subscriptions - + Back - + Forward @@ -1556,22 +1546,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam - + Abort - + Upload Selected Projects - + Finish @@ -1597,582 +1587,582 @@ UploadProjectItem - + Fail - + No Connection - + Invalid Password - + Logged In Elsewhere - + Invalid Protocol Version - + Invalid Param - + File Not Found - + Busy - + Invalid State - + Invalid Name - + Invalid Email - + Duplicate Name - + Access Denied - + Timeout - + Banned - + Account Not Found - + Invalid SteamID - + Service Unavailable - + Not Logged On - + Pending - + Encryption Failure - + Insufficient Privilege - + Limit Exceeded - + Revoked - + Expired - + Already Redeemed - + Duplicate Request - + Already Owned - + IP Not Found - + Persist Failed - + Locking Failed - + Logon Session Replaced - + Connect Failed - + Handshake Failed - + IO Failure - + Remote Disconnect - + Shopping Cart Not Found - + Blocked - + Ignored - + No Match - + Account Disabled - + Service ReadOnly - + Account Not Featured - + Administrator OK - + Content Version - + Try Another CM - + Password Required T oKick Session - + Already Logged In Elsewhere - + Suspended - + Cancelled - + Data Corruption - + Disk Full - + Remote Call Failed - + Password Unset - + External Account Unlinked - + PSN Ticket Invalid - + External Account Already Linked - + Remote File Conflict - + Illegal Password - + Same As Previous Value - + Account Logon Denied - + Cannot Use Old Password - + Invalid Login AuthCode - + Account Logon Denied No Mail - + Hardware Not Capable Of IPT - + IPT Init Error - + Parental Control Restricted - + Facebook Query Error - + Expired Login Auth Code - + IP Login Restriction Failed - + Account Locked Down - + Account Logon Denied Verified Email Required - + No MatchingURL - + Bad Response - + Require Password ReEntry - + Value Out Of Range - + Unexpecte Error - + Disabled - + Invalid CEG Submission - + Restricted Device - + Region Locked - + Rate Limit Exceeded - + Account Login Denied Need Two Factor - + Item Deleted - + Account Login Denied Throttle - + Two Factor Code Mismatch - + Two Factor Activation Code Mismatch - + Account Associated To Multiple Partners - + Not Modified - + No Mobile Device - + Time Not Synced - + Sms Code Failed - + Account Limit Exceeded - + Account Activity Limit Exceeded - + Phone Activity Limit Exceeded - + Refund To Wallet - + Email Send Failure - + Not Settled - + Need Captcha - + GSLT Denied - + GS Owner Denied - + Invalid Item Type - + IP Banned - + GSLT Expired - + Insufficient Funds - + Too Many Pending - + No Site Licenses Found - + WG Network Send Exceeded - + Account Not Friends - + Limited User Account - + Cant Remove Item - + Account Deleted - + Existing User Cancelled License - + Community Cooldown - + Status: - + Upload Progress: diff --git a/ScreenPlay/translations/ScreenPlay_de_DE.qm b/ScreenPlay/translations/ScreenPlay_de_DE.qm index 0abb730221c773969bee04b4f48932901c1020f3..05e5551d7eaa8950844869474b2f80447a29c32a 100644 GIT binary patch delta 9477 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 PM8i3nf0jNqJ@Nkl^Oe|C delta 3641 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 SWV!8vP3uu7#*}z0LiT^v@LKx- diff --git a/ScreenPlay/translations/ScreenPlay_de_DE.ts b/ScreenPlay/translations/ScreenPlay_de_DE.ts index 48db9958..e329658d 100644 --- a/ScreenPlay/translations/ScreenPlay_de_DE.ts +++ b/ScreenPlay/translations/ScreenPlay_de_DE.ts @@ -1,2254 +1,2244 @@ - + 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 - - Issue List - Fehler Liste + + Issue List + Fehler Liste - - Contribute - Beitragen + + Contribute + Beitragen - - Steam Workshop - Steam Workshop + + Steam Workshop + Steam Workshop - - + + 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. + + + + + Install Steam Version + + + + + Open In Browser + + + + 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 - - - Headline - - - Headline - Überschrift - - - + + 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 - - + + 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 linking. - 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. + - - 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 - - - Remove - Entferne + + + Remove + Entferne - - Wallpapers - Hintergründe + + Wallpapers + Hintergründe - - Widgets - Widgets + + Widgets + Widgets - - + + 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 + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + + + NavigationWallpaperConfiguration - - Configurate active Wallpaper or Widgets - Konfiguriere aktive Wallpaper oder Widgets + + Configurate active Wallpaper or Widgets + Konfiguriere aktive Wallpaper oder Widgets - - No active Wallpaper or Widgets - Keine aktiven Wallpaper oder Widgets + + No active Wallpaper or Widgets + Keine aktiven Wallpaper oder Widgets - - + + 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 + + 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 - - + + 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 - - English - English + + Theme + Thema - - German - Deutsch + + Switch dark/light theme + Wechsle Dunkles/Helles Design - - Chinese - Simplified - Chinese - Simplified + + System Default + System Standard - - Russian - Russian + + Dark + Dunkel - - French - French + + Light + Hell - - Spanish - Spanish + + Performance + Leistung - - Korean - Korean + + Pause wallpaper video rendering while another app is in the foreground + Pausiere Wallpaper Video Rendering wenn eine andere App im Vordergrund ist - - Vietnamese - Vietnamese + + 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! - - Portuguese (Brazil) - Portuguese (Brazil) + + Default Fill Mode + Standard-Füllmodus - - Theme - Thema + + 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. - - Switch dark/light theme - Wechsle Dunkles/Helles Design + + Stretch + Strecken - - System Default - System Standard + + Fill + Ausfüllen - - Dark - Dunkel + + Contain + Enthält - - Light - Hell + + Cover + Cover - - Performance - Leistung + + Scale-Down + Runter Skallieren - - Pause wallpaper video rendering while another app is in the foreground - Pausiere Wallpaper Video Rendering wenn eine andere App im Vordergrund ist + + About + Über - - 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! + + Thank you for using ScreenPlay + Danke, dass du ScreenPlay verwendest - - Default Fill Mode - Standard-Füllmodus + + 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: - - 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. + + Version + Version - - Stretch - Strecken + + ScreenPlay Build Version + ScreenPlay-Build-Version - - Fill - Ausfüllen + + Open Changelog + Changelog öffnen - - Contain - Enthält + + Third Party Software + Software von Drittanbietern - - Cover - Cover + + 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: - - Scale-Down - Runter Skallieren + + Licenses + Lizenzen - - About - Über + + Logs + Protokolle - - Thank you for using ScreenPlay - Danke, dass du ScreenPlay verwendest + + 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. - - 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: + + Show Logs + Zeige Logs - - Version - Version + + Data Protection + Datenschutz - - ScreenPlay Build Version - ScreenPlay-Build-Version + + 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! - - Open Changelog - Changelog öffnen + + Privacy + Datenschutz - - - 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: - - - - Licenses - Lizenzen - - - - 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. - - - - Show Logs - Zeige Logs - - - - 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! - - - - Privacy - Datenschutz - - - + + 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 and convert (all types) - Video importieren und konvertieren (alle Typen) + + Video import and convert (all types) + Video importieren und konvertieren (alle Typen) - - Video Import (.webm) - Importiere Video (.webm) + + Video Import (.webm) + Importiere Video (.webm) - - 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: - - MB - MB + + MB + MB - - 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 create wallpaper - Gratis App zur Erstellung von Hintergünden + + Free Tools to create wallpaper + Gratis App zur Erstellung von Hintergünden - - Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you! - Darunter findest du Apps die über ScreenPlay hinaus Wallpaper für dich erstellen können! + + Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you! + Darunter findest du Apps die über ScreenPlay hinaus Wallpaper für dich erstellen können! - - + + 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 - - - SteamWorkshop + + + SteamWorkshopStartPage - - Loading - laden + + Loading + laden - - Download now! - Jetzt Downloaden! + + Download now! + Jetzt Downloaden! - - Downloading... - Am Herunterladen... + + Downloading... + Am Herunterladen... - - Details - Details + + Details + Details - - Open In Steam - Öffne in Steam + + Open In Steam + Öffne in Steam - - Profile - Profil + + Profile + Profil - - Upload - Upload + + Upload + Upload - - Search for Wallpaper and Widgets... - Suche nach Hintergründen und Widgets... + + Search for Wallpaper and Widgets... + Suche nach Hintergründen und Widgets... - - Open Workshop in Steam - Öffne Workshop in Steam + + Open Workshop in Steam + Öffne Workshop in Steam - - Ranked By Vote - Nach Bewertungen sortieren + + Ranked By Vote + Nach Bewertungen sortieren - - Publication Date - Veröffentlichungs Datum + + Publication Date + Veröffentlichungs Datum - - 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 Abonnennts + + Total Unique Subscriptions + Anzahl Einzigartiger Abonnennts - - 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 T oKick Session - Passwort benötigt zum beenden der Sitzung + + Password Required T oKick Session + Passwort benötigt zum beenden der Sitzung - - 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 - - + + 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.qm b/ScreenPlay/translations/ScreenPlay_es_ES.qm index 64610c6bd8ee27e0c448da098f5866cf71e0f3da..a03c4dd4b1779705f2aa313d582b449671df84d4 100644 GIT binary patch literal 46185 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 E0J;zy@c;k- diff --git a/ScreenPlay/translations/ScreenPlay_es_ES.ts b/ScreenPlay/translations/ScreenPlay_es_ES.ts index da904e3c..2e448fea 100644 --- a/ScreenPlay/translations/ScreenPlay_es_ES.ts +++ b/ScreenPlay/translations/ScreenPlay_es_ES.ts @@ -1,2255 +1,2245 @@ - + ColorPicker - - Red - Red + + Red + Red - - Green - Green + + Green + Green - - Blue - Blue + + 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: + + Alpha: + Alpha: - - # - # + + # + # - - + + Community - - News - News + + News + News - - Wiki - Wiki + + Wiki + Wiki - - Forum - Forum + + Forum + Forum - - Issue List - Issue List + + Issue List + Issue List - - Contribute - Contribute + + Contribute + Contribute - - Steam Workshop - Steam Workshop + + Steam Workshop + Steam Workshop - - + + CommunityNavItem - - Open in browser - Open in browser + + 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 + + Open Documentation + Open Documentation - - Select file - Select file + + Select file + Select file - - + + CreateWallpaperResult - - An error occurred! - An error occurred! + + An error occurred! + An error occurred! - - Copy text to clipboard - Copy text to clipboard + + Copy text to clipboard + Copy text to clipboard - - 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... - 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! - - 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 + + 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. + + + + + Install Steam Version + + + + + 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 - - - Headline - - - Headline - Headline - - - + + 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 - - + + 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 linking. - You grant other to remix your work and change the license to their linking. + + + 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 - - - Remove - Remove + + + Remove + Remove - - Wallpapers - Wallpapers + + Wallpapers + Wallpapers - - Widgets - Widgets + + Widgets + Widgets - - + + 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 + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + + + NavigationWallpaperConfiguration - - Configurate active Wallpaper or Widgets - Configurate active Wallpaper or Widgets + + Configurate active Wallpaper or Widgets + Configurate active Wallpaper or Widgets - - No active Wallpaper or Widgets - No active Wallpaper or Widgets + + No active Wallpaper or Widgets + No active Wallpaper or Widgets - - + + PopupOffline - - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + + 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 - - + + 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 - - English - English + + Theme + Theme - - German - German + + Switch dark/light theme + Switch dark/light theme - - Chinese - Simplified - Chinese - Simplified + + System Default + System Default - - Russian - Russian + + Dark + Dark - - French - French + + Light + Light - - Spanish - Spanish + + Performance + Performance - - Korean - Korean + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - - Vietnamese - Vietnamese + + 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! - - Portuguese (Brazil) - Portuguese (Brazil) + + Default Fill Mode + Default Fill Mode - - Theme - Theme + + 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. - - Switch dark/light theme - Switch dark/light theme + + Stretch + Stretch - - System Default - System Default + + Fill + Fill - - Dark - Dark + + Contain + Contain - - Light - Light + + Cover + Cover - - Performance - Performance + + Scale-Down + Scale-Down - - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + + About + About - - 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! + + Thank you for using ScreenPlay + Thank you for using ScreenPlay - - Default Fill Mode - Default Fill Mode + + 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: - - 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. + + Version + Version - - Stretch - Stretch + + ScreenPlay Build Version + ScreenPlay Build Version - - Fill - Fill + + Open Changelog + Open Changelog - - Contain - Contain + + Third Party Software + Third Party Software - - Cover - Cover + + 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: - - Scale-Down - Scale-Down + + Licenses + Licenses - - About - About + + Logs + Logs - - Thank you for using ScreenPlay - Thank you for using ScreenPlay + + 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. - - 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: + + Show Logs + Show Logs - - Version - Version + + Data Protection + Data Protection - - ScreenPlay Build Version - ScreenPlay Build Version + + 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! - - Open Changelog - Open Changelog + + Privacy + Privacy - - - 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: - - - - 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. - 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 - - - - 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! - - - - Privacy - Privacy - - - + + 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 and convert (all types) - Video import and convert (all types) + + Video import and convert (all types) + Video import and convert (all types) - - Video Import (.webm) - Video Import (.webm) + + Video Import (.webm) + Video Import (.webm) - - 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: - - MB - MB + + MB + MB - - 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 create wallpaper - Free Tools to create wallpaper + + Free Tools to create wallpaper + Free Tools 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 - - - SteamWorkshop + + + 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 T oKick Session - Password Required T oKick Session + + Password Required T oKick Session + Password Required T oKick 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 - - + + 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.qm b/ScreenPlay/translations/ScreenPlay_fr_FR.qm index d57e9bb0fdce79693c7daa08e6a12cbcdddb51ce..0d707dab363676a41378cfd65b03c0a5bb410d02 100644 GIT binary patch literal 47458 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 delta 84 zcmaF#iD?((1Sxq22?hoRMj!?O5N!sfV={q^s>$~y%qRQksHyx10uG=E0~?572Vzdo TyyB9?oSf7Y#ttBtiJ1`qq`VMH diff --git a/ScreenPlay/translations/ScreenPlay_fr_FR.ts b/ScreenPlay/translations/ScreenPlay_fr_FR.ts index 9a6d527b..ef0f41e0 100644 --- a/ScreenPlay/translations/ScreenPlay_fr_FR.ts +++ b/ScreenPlay/translations/ScreenPlay_fr_FR.ts @@ -1,2255 +1,2245 @@ - + ColorPicker - - Red - Rouge + + Red + Rouge - - Green - Vert + + Green + Vert - - Blue - Bleu + + Blue + Bleu - - 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 - Actualités + + News + Actualités - - Wiki - Wiki + + Wiki + Wiki - - Forum - Forum + + Forum + Forum - - Issue List - Liste des problèmes + + Issue List + Liste des problèmes - - Contribute - Contribuer + + Contribute + Contribuer - - Steam Workshop - Steam Workshop + + Steam Workshop + Steam Workshop - - + + 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. + + + + + Install Steam Version + + + + + Open In Browser + + + + 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 - - - Headline - - - Headline - Headline - - - + + HeadlineSection - - Headline Section - Headline Section + + Headline Section + Headline Section - - + + 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 - Import a video to a wallpaper + + Import a video to a wallpaper + Import a video to a wallpaper - - 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! - 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 - Ouvrir la documentation + + Open Documentation + Ouvrir la documentation - - Select file - Sélectionner un fichier + + Select file + Sélectionner un fichier - - + + Installed - - - + + + - - Refreshing! - Actualisation! + + Refreshing! + Actualisation! - - - Pull to refresh! - Pull to refresh! + + + Pull to refresh! + Pull to refresh! - - 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 linking. - Vous permettez aux autres utilisateurs de réutiliser et altérer votre travail et de changer la licence à leur souhait. + + + 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! - 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! - 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 - - - Remove - Remove + + + Remove + Remove - - Wallpapers - Wallpapers + + Wallpapers + Wallpapers - - Widgets - Widgets + + Widgets + Widgets - - + + 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 + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + + + NavigationWallpaperConfiguration - - Configurate active Wallpaper or Widgets - Configurate active Wallpaper or Widgets + + Configurate active Wallpaper or Widgets + Configurate active Wallpaper or Widgets - - No active Wallpaper or Widgets - No active Wallpaper or Widgets + + No active Wallpaper or Widgets + No active Wallpaper or Widgets - - + + PopupOffline - - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + + 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 - - + + 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 - - English - English + + Theme + Theme - - German - German + + Switch dark/light theme + Switch dark/light theme - - Chinese - Simplified - Chinese - Simplified + + System Default + System Default - - Russian - Russian + + Dark + Dark - - French - French + + Light + Light - - Spanish - Spanish + + Performance + Performance - - Korean - Korean + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - - Vietnamese - Vietnamese + + 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! - - Portuguese (Brazil) - Portuguese (Brazil) + + Default Fill Mode + Default Fill Mode - - Theme - Theme + + 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. - - Switch dark/light theme - Switch dark/light theme + + Stretch + Stretch - - System Default - System Default + + Fill + Fill - - Dark - Dark + + Contain + Contain - - Light - Light + + Cover + Cover - - Performance - Performance + + Scale-Down + Scale-Down - - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + + About + About - - 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! + + Thank you for using ScreenPlay + Thank you for using ScreenPlay - - Default Fill Mode - Default Fill Mode + + 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: - - 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. + + Version + Version - - Stretch - Stretch + + ScreenPlay Build Version + ScreenPlay Build Version - - Fill - Fill + + Open Changelog + Open Changelog - - Contain - Contain + + Third Party Software + Third Party Software - - Cover - Cover + + 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: - - Scale-Down - Scale-Down + + Licenses + Licenses - - About - About + + Logs + Logs - - Thank you for using ScreenPlay - Thank you for using ScreenPlay + + 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. - - 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: + + Show Logs + Show Logs - - Version - Version + + Data Protection + Data Protection - - ScreenPlay Build Version - ScreenPlay Build Version + + 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! - - Open Changelog - Open Changelog + + Privacy + Privacy - - - 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: - - - - 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. - 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 - - - - 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! - - - - Privacy - Privacy - - - + + 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 and convert (all types) - Video import and convert (all types) + + Video import and convert (all types) + Video import and convert (all types) - - Video Import (.webm) - Video Import (.webm) + + Video Import (.webm) + Video Import (.webm) - - 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: - - MB - MB + + MB + MB - - 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 create wallpaper - Free Tools to create wallpaper + + Free Tools to create wallpaper + Free Tools 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 - - - SteamWorkshop + + + 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 T oKick Session - Password Required T oKick Session + + Password Required T oKick Session + Password Required T oKick 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 - - + + 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_ko_KR.qm b/ScreenPlay/translations/ScreenPlay_ko_KR.qm index a983b45632e1c35b677e8a74867665d97240483c..82097eeffdaefff87ee17e2e7efac43d2f4a211c 100644 GIT binary patch literal 45697 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 - + 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 + 게시판 - - Issue List - 이슈 목록 + + Issue List + 이슈 목록 - - Contribute - Contribute + + Contribute + Contribute - - Steam Workshop - 스팀 창작마당 + + Steam Workshop + 스팀 창작마당 - - + + 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. + + + + + Install Steam Version + + + + + 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 + 태그 - - - Headline - - - Headline - Headline - - - + + 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 + 파일 선택 - - + + 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 linking. - You grant other to remix your work and change the license to their linking. + + + 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 - - - Remove - Remove + + + Remove + Remove - - Wallpapers - Wallpapers + + Wallpapers + Wallpapers - - Widgets - Widgets + + Widgets + Widgets - - + + 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 + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + + + NavigationWallpaperConfiguration - - Configurate active Wallpaper or Widgets - Configurate active Wallpaper or Widgets + + Configurate active Wallpaper or Widgets + Configurate active Wallpaper or Widgets - - No active Wallpaper or Widgets - No active Wallpaper or Widgets + + No active Wallpaper or Widgets + No active Wallpaper or Widgets - - + + PopupOffline - - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + + 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 - - + + 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 - - English - English + + Theme + Theme - - German - German + + Switch dark/light theme + Switch dark/light theme - - Chinese - Simplified - Chinese - Simplified + + System Default + System Default - - Russian - Russian + + Dark + Dark - - French - French + + Light + Light - - Spanish - Spanish + + Performance + Performance - - Korean - Korean + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - - Vietnamese - Vietnamese + + 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! - - Portuguese (Brazil) - Portuguese (Brazil) + + Default Fill Mode + Default Fill Mode - - Theme - Theme + + 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. - - Switch dark/light theme - Switch dark/light theme + + Stretch + Stretch - - System Default - System Default + + Fill + Fill - - Dark - Dark + + Contain + Contain - - Light - Light + + Cover + Cover - - Performance - Performance + + Scale-Down + Scale-Down - - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + + About + About - - 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! + + Thank you for using ScreenPlay + Thank you for using ScreenPlay - - Default Fill Mode - Default Fill Mode + + 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: - - 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. + + Version + Version - - Stretch - Stretch + + ScreenPlay Build Version + ScreenPlay Build Version - - Fill - Fill + + Open Changelog + Open Changelog - - Contain - Contain + + Third Party Software + Third Party Software - - Cover - Cover + + 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: - - Scale-Down - Scale-Down + + Licenses + Licenses - - About - About + + Logs + Logs - - Thank you for using ScreenPlay - Thank you for using ScreenPlay + + 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. - - 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: + + Show Logs + Show Logs - - Version - Version + + Data Protection + Data Protection - - ScreenPlay Build Version - ScreenPlay Build Version + + 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! - - Open Changelog - Open Changelog + + Privacy + Privacy - - - 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: - - - - 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. - 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 - - - - 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! - - - - Privacy - Privacy - - - + + 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 and convert (all types) - Video import and convert (all types) + + Video import and convert (all types) + Video import and convert (all types) - - Video Import (.webm) - Video Import (.webm) + + Video Import (.webm) + Video Import (.webm) - - 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: - - MB - MB + + MB + MB - - 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 create wallpaper - Free Tools to create wallpaper + + Free Tools to create wallpaper + Free Tools 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 - - - SteamWorkshop + + + 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 T oKick Session - Password Required T oKick Session + + Password Required T oKick Session + Password Required T oKick 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 - - + + 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 9d2861ff..4d532e66 100644 --- a/ScreenPlay/translations/ScreenPlay_nl_NL.ts +++ b/ScreenPlay/translations/ScreenPlay_nl_NL.ts @@ -317,6 +317,24 @@ + + Forum + + + 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 + + + + + Open In Browser + + + GifWallpaper @@ -650,7 +668,7 @@ - You grant other to remix your work and change the license to their linking. + You grant other to remix your work and change the license to their liking. @@ -935,217 +953,217 @@ Settings - + General - + Autostart - + ScreenPlay will start with Windows and will setup your Desktop every time for you. - + High priority Autostart - + This options grants ScreenPlay a higher autostart priority than other apps. - + 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! - + Set save location - + Set location - + Your storage path is empty! - + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! - + Language - + Set the ScreenPlay UI Language - + Theme - + Switch dark/light theme - + System Default - + Dark - + Light - + Performance - + 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! - + Default Fill Mode - + Set this property to define how the video is scaled to fit the target area. - + Stretch - + Fill - + Contain - + Cover - + Scale-Down - + About - + 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: - + Version - + ScreenPlay Build Version - + Open Changelog - + Third Party Software - + ScreenPlay would not be possible without the work of others. A big thank you to: - + Licenses - + Logs - + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - + Show Logs - + Data Protection - + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - + Privacy @@ -1330,121 +1348,121 @@ SteamProfile - - + + Back - + Forward - SteamWorkshop + SteamWorkshopStartPage - + Loading - + Download now! - + Downloading... - + Details - + Open In Steam - + Profile - + Upload - + Search for Wallpaper and Widgets... - + Open Workshop in Steam - + Ranked By Vote - + Publication Date - + Ranked By Trend - + Favorited By Friends - + Created By Friends - + Created By Followed Users - + Not Yet Rated - + Total VotesAsc - + Votes Up - + Total Unique Subscriptions - + Back - + Forward @@ -1528,22 +1546,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam - + Abort - + Upload Selected Projects - + Finish @@ -1569,582 +1587,582 @@ UploadProjectItem - + Fail - + No Connection - + Invalid Password - + Logged In Elsewhere - + Invalid Protocol Version - + Invalid Param - + File Not Found - + Busy - + Invalid State - + Invalid Name - + Invalid Email - + Duplicate Name - + Access Denied - + Timeout - + Banned - + Account Not Found - + Invalid SteamID - + Service Unavailable - + Not Logged On - + Pending - + Encryption Failure - + Insufficient Privilege - + Limit Exceeded - + Revoked - + Expired - + Already Redeemed - + Duplicate Request - + Already Owned - + IP Not Found - + Persist Failed - + Locking Failed - + Logon Session Replaced - + Connect Failed - + Handshake Failed - + IO Failure - + Remote Disconnect - + Shopping Cart Not Found - + Blocked - + Ignored - + No Match - + Account Disabled - + Service ReadOnly - + Account Not Featured - + Administrator OK - + Content Version - + Try Another CM - + Password Required T oKick Session - + Already Logged In Elsewhere - + Suspended - + Cancelled - + Data Corruption - + Disk Full - + Remote Call Failed - + Password Unset - + External Account Unlinked - + PSN Ticket Invalid - + External Account Already Linked - + Remote File Conflict - + Illegal Password - + Same As Previous Value - + Account Logon Denied - + Cannot Use Old Password - + Invalid Login AuthCode - + Account Logon Denied No Mail - + Hardware Not Capable Of IPT - + IPT Init Error - + Parental Control Restricted - + Facebook Query Error - + Expired Login Auth Code - + IP Login Restriction Failed - + Account Locked Down - + Account Logon Denied Verified Email Required - + No MatchingURL - + Bad Response - + Require Password ReEntry - + Value Out Of Range - + Unexpecte Error - + Disabled - + Invalid CEG Submission - + Restricted Device - + Region Locked - + Rate Limit Exceeded - + Account Login Denied Need Two Factor - + Item Deleted - + Account Login Denied Throttle - + Two Factor Code Mismatch - + Two Factor Activation Code Mismatch - + Account Associated To Multiple Partners - + Not Modified - + No Mobile Device - + Time Not Synced - + Sms Code Failed - + Account Limit Exceeded - + Account Activity Limit Exceeded - + Phone Activity Limit Exceeded - + Refund To Wallet - + Email Send Failure - + Not Settled - + Need Captcha - + GSLT Denied - + GS Owner Denied - + Invalid Item Type - + IP Banned - + GSLT Expired - + Insufficient Funds - + Too Many Pending - + No Site Licenses Found - + WG Network Send Exceeded - + Account Not Friends - + Limited User Account - + Cant Remove Item - + Account Deleted - + Existing User Cancelled License - + Community Cooldown - + Status: - + Upload Progress: diff --git a/ScreenPlay/translations/ScreenPlay_pt_BR.qm b/ScreenPlay/translations/ScreenPlay_pt_BR.qm index 325844bb2d6d7e4f1dec3d9598034ae413ad826d..d0339cd56ee825b67dd761711cb97c55d7635b5b 100644 GIT binary patch literal 46185 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 F{a=PC)LZ}n delta 138 zcmaF)f~lWrf_O;0Q;-t_1A_(-GXgOPfM`W14Uz-#E1>keOdw+q^M4@V0J0d^Km<%J4_7Ubk7rc4er6`5Qst};2;RA};7EfF9s%iaOh#>C7B E0Ln}q5&!@I diff --git a/ScreenPlay/translations/ScreenPlay_pt_BR.ts b/ScreenPlay/translations/ScreenPlay_pt_BR.ts index d6c1aa2b..08bde1bb 100644 --- a/ScreenPlay/translations/ScreenPlay_pt_BR.ts +++ b/ScreenPlay/translations/ScreenPlay_pt_BR.ts @@ -1,2255 +1,2245 @@ - + ColorPicker - - Red - Red + + Red + Red - - Green - Green + + Green + Green - - Blue - Blue + + 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: + + Alpha: + Alpha: - - # - # + + # + # - - + + Community - - News - News + + News + News - - Wiki - Wiki + + Wiki + Wiki - - Forum - Forum + + Forum + Forum - - Issue List - Issue List + + Issue List + Issue List - - Contribute - Contribute + + Contribute + Contribute - - Steam Workshop - Steam Workshop + + Steam Workshop + Steam Workshop - - + + CommunityNavItem - - Open in browser - Open in browser + + 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 + + Open Documentation + Open Documentation - - Select file - Select file + + Select file + Select file - - + + CreateWallpaperResult - - An error occurred! - An error occurred! + + An error occurred! + An error occurred! - - Copy text to clipboard - Copy text to clipboard + + Copy text to clipboard + Copy text to clipboard - - 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... - 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! - - 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 + + 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. + + + + + Install Steam Version + + + + + 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 - - - Headline - - - Headline - Headline - - - + + 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 - - + + 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 linking. - You grant other to remix your work and change the license to their linking. + + + 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 - - - Remove - Remove + + + Remove + Remove - - Wallpapers - Wallpapers + + Wallpapers + Wallpapers - - Widgets - Widgets + + Widgets + Widgets - - + + 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 + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + + + NavigationWallpaperConfiguration - - Configurate active Wallpaper or Widgets - Configurate active Wallpaper or Widgets + + Configurate active Wallpaper or Widgets + Configurate active Wallpaper or Widgets - - No active Wallpaper or Widgets - No active Wallpaper or Widgets + + No active Wallpaper or Widgets + No active Wallpaper or Widgets - - + + PopupOffline - - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + + 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 - - + + 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 - - English - English + + Theme + Theme - - German - German + + Switch dark/light theme + Switch dark/light theme - - Chinese - Simplified - Chinese - Simplified + + System Default + System Default - - Russian - Russian + + Dark + Dark - - French - French + + Light + Light - - Spanish - Spanish + + Performance + Performance - - Korean - Korean + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - - Vietnamese - Vietnamese + + 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! - - Portuguese (Brazil) - Portuguese (Brazil) + + Default Fill Mode + Default Fill Mode - - Theme - Theme + + 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. - - Switch dark/light theme - Switch dark/light theme + + Stretch + Stretch - - System Default - System Default + + Fill + Fill - - Dark - Dark + + Contain + Contain - - Light - Light + + Cover + Cover - - Performance - Performance + + Scale-Down + Scale-Down - - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + + About + About - - 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! + + Thank you for using ScreenPlay + Thank you for using ScreenPlay - - Default Fill Mode - Default Fill Mode + + 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: - - 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. + + Version + Version - - Stretch - Stretch + + ScreenPlay Build Version + ScreenPlay Build Version - - Fill - Fill + + Open Changelog + Open Changelog - - Contain - Contain + + Third Party Software + Third Party Software - - Cover - Cover + + 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: - - Scale-Down - Scale-Down + + Licenses + Licenses - - About - About + + Logs + Logs - - Thank you for using ScreenPlay - Thank you for using ScreenPlay + + 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. - - 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: + + Show Logs + Show Logs - - Version - Version + + Data Protection + Data Protection - - ScreenPlay Build Version - ScreenPlay Build Version + + 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! - - Open Changelog - Open Changelog + + Privacy + Privacy - - - 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: - - - - 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. - 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 - - - - 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! - - - - Privacy - Privacy - - - + + 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 and convert (all types) - Video import and convert (all types) + + Video import and convert (all types) + Video import and convert (all types) - - Video Import (.webm) - Video Import (.webm) + + Video Import (.webm) + Video Import (.webm) - - 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: - - MB - MB + + MB + MB - - 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 create wallpaper - Free Tools to create wallpaper + + Free Tools to create wallpaper + Free Tools 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 - - - SteamWorkshop + + + 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 T oKick Session - Password Required T oKick Session + + Password Required T oKick Session + Password Required T oKick 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 - - + + 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.qm b/ScreenPlay/translations/ScreenPlay_ru_RU.qm index 61bb65936905ae69d5f67dbeb021d5e30bd4cf12..7315d701bc7cc3e455d64c2c85fd0ba565f4d621 100644 GIT binary patch literal 46487 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 o!&1l(y)|C4Z1d Hhf5d$wR;{A diff --git a/ScreenPlay/translations/ScreenPlay_ru_RU.ts b/ScreenPlay/translations/ScreenPlay_ru_RU.ts index 0219579a..8fc8a743 100644 --- a/ScreenPlay/translations/ScreenPlay_ru_RU.ts +++ b/ScreenPlay/translations/ScreenPlay_ru_RU.ts @@ -1,2255 +1,2245 @@ - + 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 + Форум - - Issue List - Список проблем + + Issue List + Список проблем - - Contribute - Внести вклад + + Contribute + Внести вклад - - Steam Workshop - Мастерская Steam + + Steam Workshop + Мастерская Steam - - + + 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. + + + + + Install Steam Version + + + + + 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 - - - Headline - - - Headline - Headline - - - + + 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 - - + + 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 linking. - You grant other to remix your work and change the license to their linking. + + + 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 - - - Remove - Remove + + + Remove + Remove - - Wallpapers - Wallpapers + + Wallpapers + Wallpapers - - Widgets - Widgets + + Widgets + Widgets - - + + 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 + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + + + NavigationWallpaperConfiguration - - Configurate active Wallpaper or Widgets - Configurate active Wallpaper or Widgets + + Configurate active Wallpaper or Widgets + Configurate active Wallpaper or Widgets - - No active Wallpaper or Widgets - No active Wallpaper or Widgets + + No active Wallpaper or Widgets + No active Wallpaper or Widgets - - + + PopupOffline - - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + + 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 - - + + 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 - - English - English + + Theme + Theme - - German - German + + Switch dark/light theme + Switch dark/light theme - - Chinese - Simplified - Chinese - Simplified + + System Default + System Default - - Russian - Russian + + Dark + Dark - - French - French + + Light + Light - - Spanish - Spanish + + Performance + Performance - - Korean - Korean + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - - Vietnamese - Vietnamese + + 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! - - Portuguese (Brazil) - Portuguese (Brazil) + + Default Fill Mode + Default Fill Mode - - Theme - Theme + + 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. - - Switch dark/light theme - Switch dark/light theme + + Stretch + Stretch - - System Default - System Default + + Fill + Fill - - Dark - Dark + + Contain + Contain - - Light - Light + + Cover + Cover - - Performance - Performance + + Scale-Down + Scale-Down - - Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + + About + About - - 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! + + Thank you for using ScreenPlay + Thank you for using ScreenPlay - - Default Fill Mode - Default Fill Mode + + 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: - - 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. + + Version + Version - - Stretch - Stretch + + ScreenPlay Build Version + ScreenPlay Build Version - - Fill - Fill + + Open Changelog + Open Changelog - - Contain - Contain + + Third Party Software + Third Party Software - - Cover - Cover + + 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: - - Scale-Down - Scale-Down + + Licenses + Licenses - - About - About + + Logs + Logs - - Thank you for using ScreenPlay - Thank you for using ScreenPlay + + 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. - - 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: + + Show Logs + Show Logs - - Version - Version + + Data Protection + Data Protection - - ScreenPlay Build Version - ScreenPlay Build Version + + 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! - - Open Changelog - Open Changelog + + Privacy + Privacy - - - 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: - - - - 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. - 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 - - - - 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! - - - - Privacy - Privacy - - - + + 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 and convert (all types) - Video import and convert (all types) + + Video import and convert (all types) + Video import and convert (all types) - - Video Import (.webm) - Video Import (.webm) + + Video Import (.webm) + Video Import (.webm) - - 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: - - MB - MB + + MB + MB - - 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 create wallpaper - Free Tools to create wallpaper + + Free Tools to create wallpaper + Free Tools 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 - - - SteamWorkshop + + + 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 T oKick Session - Password Required T oKick Session + + Password Required T oKick Session + Password Required T oKick 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 - - + + 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.qm b/ScreenPlay/translations/ScreenPlay_tr_TR.qm index fe101c8104e4a244e020647ad61ecc2ce4bbc339..20750e0c501057ccbd915c672378b13c5598866b 100644 GIT binary patch literal 47658 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 delta 68 zcmZ4Wg=sJ21Q89^)V%o6U?&C!1_>Z$1Y!^X(PmIOCKJf0n#?a@K6#y%+T=cSS@sT~ I2oobC0I*&QW&i*H diff --git a/ScreenPlay/translations/ScreenPlay_tr_TR.ts b/ScreenPlay/translations/ScreenPlay_tr_TR.ts index 8c8721fe..56e0b174 100644 --- a/ScreenPlay/translations/ScreenPlay_tr_TR.ts +++ b/ScreenPlay/translations/ScreenPlay_tr_TR.ts @@ -1,2255 +1,2245 @@ - + 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 - - Issue List - Sorun Listesi + + Issue List + Sorun Listesi - - Contribute - Bağış yap + + Contribute + Bağış yap - - Steam Workshop - Steam Atölyesi + + Steam Workshop + Steam Atölyesi - - + + 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. + + + + + Install Steam Version + + + + + 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 - - - Headline - - - Headline - Başlık - - - + + 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ç - - + + 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 linking. - Başkalarına çalışmanızı yeniden düzenlemeleri ve bağlantılarının lisansını değiştirmeleri için izin veriyorsunuz. + + + 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 - - - Remove - Kaldır + + + Remove + Kaldır - - Wallpapers - Duvar kağıtları + + Wallpapers + Duvar kağıtları - - Widgets - Widget’lar + + Widgets + Widget’lar - - + + 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 + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + + + NavigationWallpaperConfiguration - - Configurate active Wallpaper or Widgets - Aktif Duvar Kağıdını veya Widget'ları yapılandırın + + Configurate active Wallpaper or Widgets + Aktif Duvar Kağıdını veya Widget'ları yapılandırın - - No active Wallpaper or Widgets - Aktif Duvar Kağıdı veya Widget yok + + No active Wallpaper or Widgets + Aktif Duvar Kağıdı veya Widget yok - - + + 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 + + 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 - - + + 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 - - English - İngilizce + + Theme + Tema - - German - Almanca + + Switch dark/light theme + Koyu/Açık temayı değiştir - - Chinese - Simplified - Basitleştirilmiş Çince + + System Default + Sistem Varsayılanı - - Russian - Rusça + + Dark + Karanlık - - French - Fransızca + + Light + Aydınlık - - Spanish - İspanyolca + + Performance + Performans - - Korean - Korece + + 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 - - Vietnamese - Vietnamca + + 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! - - Portuguese (Brazil) - Portekizce (Brezilya) + + Default Fill Mode + Varsayılan Doldurma Modu - - Theme - Tema + + 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. - - Switch dark/light theme - Koyu/Açık temayı değiştir + + Stretch + Esnet - - System Default - Sistem Varsayılanı + + Fill + Doldur - - Dark - Karanlık + + Contain + İçeren - - Light - Aydınlık + + Cover + Kapak - - Performance - Performans + + Scale-Down + Ölçek-Düşür - - 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 + + About + Hakkında - - 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! + + Thank you for using ScreenPlay + ScreePlay'i kullandığınız için teşekkür ederiz! - - Default Fill Mode - Varsayılan Doldurma Modu + + 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: - - 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. + + Version + Version - - Stretch - Esnet + + ScreenPlay Build Version + ScreenPlay Build Version - - Fill - Doldur + + Open Changelog + Open Changelog - - Contain - İçeren + + Third Party Software + Third Party Software - - Cover - Kapak + + 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: - - Scale-Down - Ölçek-Düşür + + Licenses + Licenses - - About - Hakkında + + Logs + Logs - - Thank you for using ScreenPlay - ScreePlay'i kullandığınız için teşekkür ederiz! + + 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. - - 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: + + Show Logs + Show Logs - - Version - Version + + Data Protection + Data Protection - - ScreenPlay Build Version - ScreenPlay Build Version + + 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! - - Open Changelog - Open Changelog + + Privacy + Privacy - - - 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: - - - - 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. - 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 - - - - 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! - - - - Privacy - Privacy - - - + + 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 and convert (all types) - Video import and convert (all types) + + Video import and convert (all types) + Video import and convert (all types) - - Video Import (.webm) - Video Import (.webm) + + Video Import (.webm) + Video Import (.webm) - - 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: - - MB - MB + + MB + MB - - 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 create wallpaper - Free Tools to create wallpaper + + Free Tools to create wallpaper + Free Tools 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 - - - SteamWorkshop + + + 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 + - - 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 T oKick Session - Password Required T oKick Session + + Password Required T oKick Session + Password Required T oKick 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 - - + + 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.qm b/ScreenPlay/translations/ScreenPlay_vi_VN.qm index 98bdb444822e1cd25cf79b22a97d47c79a3b7c35..9ba2412cf7180c14402becfb845e149d336cb5b3 100644 GIT binary patch delta 15318 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 SRpMMh)k+)ord{hcDE|+#nr+Ac delta 3486 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 by2XVu2uH4Sde#TKetG;^&h^~u_2T~loRH}N diff --git a/ScreenPlay/translations/ScreenPlay_vi_VN.ts b/ScreenPlay/translations/ScreenPlay_vi_VN.ts index 742f6950..c437fa8f 100644 --- a/ScreenPlay/translations/ScreenPlay_vi_VN.ts +++ b/ScreenPlay/translations/ScreenPlay_vi_VN.ts @@ -1,2255 +1,2245 @@ - + 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 - - Issue List - D.sách lỗi + + Issue List + D.sách lỗi - - Contribute - Đóng góp + + Contribute + Đóng góp - - Steam Workshop - Steam Workshop + + Steam Workshop + Steam Workshop - - + + 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. + + + + + Install Steam Version + + + + + 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ẻ - - - Headline - - - Headline - Tiêu đề - - - + + 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 - - + + 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 linking. - Bạn cấp cho người khác để phối lại tác phẩm của bạn và thay đổi giấy phép thành liên kết của họ. + + + 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 - - - Remove - Xóa + + + Remove + Xóa - - Wallpapers - Ảnh động + + Wallpapers + Ảnh động - - Widgets - Widgets + + Widgets + Widgets - - + + 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 + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + + + NavigationWallpaperConfiguration - - Configurate active Wallpaper or Widgets - Thiết lập hình nền hoặc widgets đang hoạt động + + Configurate active Wallpaper or Widgets + Thiết lập hình nền hoặc widgets đang hoạt động - - No active Wallpaper or Widgets - Không có hình nền hoặc widgets đang hoạt động + + No active Wallpaper or Widgets + Không có hình nền hoặc widgets đang hoạt động - - + + 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 + + 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 - - + + 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 - - English - Tiếng Anh + + Theme + Chủ đề - - German - Tiếng Đức + + Switch dark/light theme + Chuyển chủ để sáng/tôí - - Chinese - Simplified - Tiếng Trung - Giản thể + + System Default + Mặc định theo hệ thống - - Russian - Tiếng Nga + + Dark + Tối - - French - Tiếng Pháp + + Light + Sáng - - Spanish - Tiếng Tây Ban Nha + + Performance + Hiệu suất - - Korean - Tiếng Hàn Quố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 - - Vietnamese - Tiếng Việt + + 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! - - Portuguese (Brazil) - Tiếng Bồ Đào Nha (Brazil) + + Default Fill Mode + Cách lấp đầy mặc định - - Theme - Chủ đề + + 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. - - Switch dark/light theme - Chuyển chủ để sáng/tôí + + Stretch + Kéo dài - - System Default - Mặc định theo hệ thống + + Fill + Lấp đầy - - Dark - Tối + + Contain + Chứa đựng - - Light - Sáng + + Cover + Bao phủ - - Performance - Hiệu suất + + Scale-Down + Giảm tỉ lệ - - 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 + + About + Về ứng dụng - - 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! + + Thank you for using ScreenPlay + Cảm ơn bạn vì đã sử dụng ScreenPlay - - Default Fill Mode - Cách lấp đầy mặc định + + 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: - - 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. + + Version + Phiên bản - - Stretch - Kéo dài + + ScreenPlay Build Version + Bản dựng của ScreenPlay - - Fill - Lấp đầy + + Open Changelog + Mở nhật kí thay đổi - - Contain - Chứa đựng + + Third Party Software + Phần mềm của bên thứ ba - - Cover - Bao phủ + + 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: - - Scale-Down - Giảm tỉ lệ + + Licenses + Bản quyền - - About - Về ứng dụng + + Logs + Nhật kí - - Thank you for using ScreenPlay - Cảm ơn bạn vì đã sử dụng ScreenPlay + + 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 - - 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: + + Show Logs + Hiện nhật kí - - Version - Phiên bản + + Data Protection + Bảo vệ dữ liệu - - ScreenPlay Build Version - Bản dựng của ScreenPlay + + 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! - - Open Changelog - Mở nhật kí thay đổi + + Privacy + Quyền riêng tư - - - 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: - - - - Licenses - Bản quyền - - - - 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 - - - - Show Logs - Hiện nhật kí - - - - 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! - - - - Privacy - Quyền riêng tư - - - + + 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 and convert (all types) - Nhập video và chuyển đổi (tất cả các loại) + + Video import and convert (all types) + Nhập video và chuyển đổi (tất cả các loại) - - Video Import (.webm) - Nhập video (.webm) + + Video Import (.webm) + Nhập video (.webm) - - 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ỡ: - - MB - MB + + MB + MB - - 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 create wallpaper - Những công cụ miễn phí để tạo hình nền + + Free Tools to create wallpaper + Những công cụ miễn phí để tạo hình nền - - Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you! - Dưới đây, bạn có thể tìm thấy các công cụ để tạo hình nền ngoài các công cụ mà ScreenPlay cung cấp cho bạn! + + Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you! + Dưới đây, bạn có thể tìm thấy các công cụ để tạo hình nền ngoài các công cụ mà ScreenPlay cung cấp cho bạn! - - + + 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 - - - SteamWorkshop + + + SteamWorkshopStartPage - - Loading - Đang tải + + Loading + Đang tải - - Download now! - Tải về ngay! + + Download now! + Tải về ngay! - - Downloading... - Đang tải xuống... + + Downloading... + Đang tải xuống... - - Details - Chi tiết + + Details + Chi tiết - - Open In Steam - Mở trong Steam + + Open In Steam + Mở trong Steam - - Profile - Hồ sơ + + Profile + Hồ sơ - - Upload - Tải lên + + Upload + Tải lên - - Search for Wallpaper and Widgets... - Tìm hình nền & widgets... + + Search for Wallpaper and Widgets... + Tìm hình nền & widgets... - - Open Workshop in Steam - Mở workshop trong Steam + + Open Workshop in Steam + Mở workshop trong Steam - - Ranked By Vote - Xếp hạng theo bình chọn + + Ranked By Vote + Xếp hạng theo bình chọn - - Publication Date - Ngày xuất bản + + Publication Date + Ngày xuất bản - - Ranked By Trend - Xếp hạng theo xu hướng + + Ranked By Trend + Xếp hạng theo xu hướng - - Favorited By Friends - Được yêu thích bởỉ bạn bè + + Favorited By Friends + Được yêu thích bởỉ bạn bè - - Created By Friends - Được tạo bởi bạn bè + + Created By Friends + Được tạo bởi bạn bè - - Created By Followed Users - Được tạo bởi những người đã theo dõi + + Created By Followed Users + Được tạo bởi những người đã theo dõi - - Not Yet Rated - Chưa được đánh giá + + Not Yet Rated + Chưa được đánh giá - - Total VotesAsc - Tổng lượt bình chọn + + Total VotesAsc + Tổng lượt bình chọn - - Votes Up - Bình chọn + + Votes Up + Bình chọn - - Total Unique Subscriptions - Tổng số đăng ký + + Total Unique Subscriptions + Tổng số đăng ký - - Back - Quay lại + + Back + Quay lại - - Forward - Tiếp tục + + Forward + Tiếp tục - - + + 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 T oKick Session - Cần mật khẩu để thoát phiên khác + + Password Required T oKick Session + Cần mật khẩu để thoát phiên khác - - 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 - - + + 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.qm b/ScreenPlay/translations/ScreenPlay_zh_CN.qm index 01e91b805d0bb8473d67948c1a3f90041b909f99..cbdfd6db0dc82c4c9165ccf6d58a345ad85cd57e 100644 GIT binary patch delta 4262 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 U;P9#}cZYXoXLYNI%kuH~H&$-nng9R* delta 4060 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 - + 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 + 论坛 - - Issue List - 议题列表 + + Issue List + 议题列表 - - Contribute - 贡献 + + Contribute + 贡献 - - Steam Workshop - Steam 创意工坊 + + Steam Workshop + Steam 创意工坊 - - + + 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. + + + + + Install Steam Version + + + + + 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 + 标签 - - - Headline - - - Headline - 标题 - - - + + 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 + 选择文件 - - + + 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 linking. - 您授权他人对您的作品进行再创作,并更改其链接的许可证。 + + + 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 + 移除已选择 - - - Remove - 移除 + + + Remove + 移除 - - Wallpapers - 壁纸 + + Wallpapers + 壁纸 - - Widgets - 物件 + + Widgets + 物件 - - + + 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 + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + + + NavigationWallpaperConfiguration - - Configurate active Wallpaper or Widgets - 设置活动壁纸或物件 + + Configurate active Wallpaper or Widgets + 设置活动壁纸或物件 - - No active Wallpaper or Widgets - 没有活动壁纸或物件 + + No active Wallpaper or Widgets + 没有活动壁纸或物件 - - + + PopupOffline - - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - - Back - 返回 + + Back + 返回 - - + + 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 + + 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界面语言 - - English - 英语 + + Theme + 主题 - - German - 德语 + + Switch dark/light theme + 切换到暗/亮主题 - - Chinese - Simplified - 中文(简体) + + System Default + 跟随系统 - - Russian - 俄语 + + Dark + - - French - 法语 + + Light + - - Spanish - 西班牙语 + + Performance + 性能 - - Korean - 韩语 + + Pause wallpaper video rendering while another app is in the foreground + 当其他应用程序在前台时,暂停壁纸视频渲染 - - Vietnamese - 越南语 + + 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! + 我们禁用视频渲染(不是音频)以获得最佳性能。如果您有问题,可以在此处禁用此行为。 需要重启壁纸! - - Portuguese (Brazil) - 英语(巴西) + + Default Fill Mode + 默认填充模式 - - Theme - 主题 + + Set this property to define how the video is scaled to fit the target area. + 设置此属性可定义视频的缩放方式以适应目标区域。 - - Switch dark/light theme - 切换到暗/亮主题 + + Stretch + 拉伸 - - System Default - 跟随系统 + + Fill + 填充 - - Dark - + + Contain + 适应 - - Light - + + Cover + 平铺 - - Performance - 性能 + + Scale-Down + 裁剪 - - Pause wallpaper video rendering while another app is in the foreground - 当其他应用程序在前台时,暂停壁纸视频渲染 + + About + 关于 - - 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! - 我们禁用视频渲染(不是音频)以获得最佳性能。如果您有问题,可以在此处禁用此行为。 需要重启壁纸! + + Thank you for using ScreenPlay + 感谢您的使用 - - Default Fill Mode - 默认填充模式 + + 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的更新。 - - Set this property to define how the video is scaled to fit the target area. - 设置此属性可定义视频的缩放方式以适应目标区域。 + + Version + 版本 - - Stretch - 拉伸 + + ScreenPlay Build Version + ScreenPlay编译版本 - - Fill - 填充 + + Open Changelog + 打开更改日志。 - - Contain - 适应 + + Third Party Software + 第三方软件 - - Cover - 平铺 + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay离不开一些人的帮助。非常感谢你们: - - Scale-Down - 裁剪 + + Licenses + 许可证 - - About - 关于 + + Logs + 日志 - - Thank you for using ScreenPlay - 感谢您的使用 + + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + 如果您的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的更新。 + + Show Logs + 显示日志 - - Version - 版本 + + Data Protection + 数据保护 - - ScreenPlay Build Version - ScreenPlay编译版本 + + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + 我们使用您的数据提升ScreenPlay的体验。我们承诺不出售或分享这些匿名信息! - - Open Changelog - 打开更改日志。 + + Privacy + 隐私 - - - Third Party Software - 第三方软件 - - - - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay离不开一些人的帮助。非常感谢你们: - - - - Licenses - 许可证 - - - - Logs - 日志 - - - - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - 如果您的ScreenPlay出错,这是个很好的查错方式。它显示所有的日志和运行时警告。 - - - - Show Logs - 显示日志 - - - - Data Protection - 数据保护 - - - - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - 我们使用您的数据提升ScreenPlay的体验。我们承诺不出售或分享这些匿名信息! - - - - Privacy - 隐私 - - - + + SettingsExpander - - Copy text to clipboard - 复制文本至剪贴板 + + Copy text to clipboard + 复制文本至剪贴板 - - + + Sidebar - - Tools Overview - 工具概览 + + Tools Overview + 工具概览 - - Video import and convert (all types) - Video import and convert (all types) + + Video import and convert (all types) + Video import and convert (all types) - - Video Import (.webm) - 视频导入 (.webm) + + Video Import (.webm) + 视频导入 (.webm) - - 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: + 大小: - - MB - 兆字节 + + MB + 兆字节 - - 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 create wallpaper - 免费的壁纸创建工具 + + Free Tools to create wallpaper + 免费的壁纸创建工具 - - Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you! - 下面你可以找到ScreenPlay所提供的以外的工具来创建wallaper。 + + Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you! + 下面你可以找到ScreenPlay所提供的以外的工具来创建wallaper。 - - + + SteamNotAvailable - - Could not load steam integration! - 无法加载steam集成! + + Could not load steam integration! + 无法加载steam集成! - - + + SteamProfile - - - Back - 返回 + + + Back + 返回 - - Forward - 前进 + + Forward + 前进 - - - SteamWorkshop + + + SteamWorkshopStartPage - - Loading - 加载中 + + Loading + 加载中 - - Download now! - 开始下载! + + Download now! + 开始下载! - - Downloading... - 下载中... + + Downloading... + 下载中... - - Details - 查看详情 + + Details + 查看详情 - - Open In Steam - 在Steam打开 + + Open In Steam + 在Steam打开 - - Profile - 配置 + + Profile + 配置 - - Upload - Upload + + 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 T oKick Session - 需要密码才能启动会话 + + Password Required T oKick 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 + 预览图 - - + + 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/ScreenPlayWorkshop/src/screenplayworkshop_plugin.cpp b/ScreenPlayWorkshop/src/screenplayworkshop_plugin.cpp index 55eaf3dc..003d5910 100644 --- a/ScreenPlayWorkshop/src/screenplayworkshop_plugin.cpp +++ b/ScreenPlayWorkshop/src/screenplayworkshop_plugin.cpp @@ -2,7 +2,6 @@ void ScreenPlayWorkshopPlugin::registerTypes(const char* uri) { - qInfo() << "void ScreenPlayWorkshopPlugin::registerTypes(const char* uri)"; qRegisterMetaType("SteamQMLImageProvider*"); qmlRegisterType("Workshop", 1, 0, "SteamImage"); diff --git a/ScreenPlayWorkshop/src/steamworkshop.cpp b/ScreenPlayWorkshop/src/steamworkshop.cpp index f57e598a..c0359fb4 100644 --- a/ScreenPlayWorkshop/src/steamworkshop.cpp +++ b/ScreenPlayWorkshop/src/steamworkshop.cpp @@ -33,7 +33,6 @@ bool SteamWorkshop::init() return false; } - // https://partner.steamgames.com/doc/sdk/api#SteamAPI_RestartAppIfNecessary // checks if your executable was launched through Steam and relaunches it through Steam if it wasn't. // This is optional but highly recommended as the Steam context associated with your application (including your App ID) will not be set up if the user launches the executable directly. If this occurs then SteamAPI_Init will fail and you will be unable to use the Steamworks API. @@ -45,7 +44,6 @@ bool SteamWorkshop::init() m_steamErrorRestart = true; } - QObject::connect(&m_pollTimer, &QTimer::timeout, this, []() { SteamAPI_RunCallbacks(); }); m_pollTimer.start(100); @@ -230,8 +228,6 @@ void SteamWorkshop::onWorkshopSearched(SteamUGCQueryCompleted_t* pCallback, bool bool SteamWorkshop::queryWorkshopItemFromHandle(SteamWorkshopListModel* listModel, SteamUGCQueryCompleted_t* pCallback) { - qDebug() << "queryWorkshopItemFromHandle " << pCallback->m_unNumResultsReturned << pCallback->m_unTotalMatchingResults; - SteamUGCDetails_t details; const int urlLength = 200; char url[urlLength]; diff --git a/ScreenPlayWorkshop/src/steamworkshopitem.cpp b/ScreenPlayWorkshop/src/steamworkshopitem.cpp index 3b4cf4c8..7f885576 100644 --- a/ScreenPlayWorkshop/src/steamworkshopitem.cpp +++ b/ScreenPlayWorkshop/src/steamworkshopitem.cpp @@ -49,10 +49,16 @@ void SteamWorkshopItem::uploadItemToWorkshop(CreateItemResult_t* pCallback, bool return; } - QString absoluteContentPath = m_absolutePath.toString(); + const QString absoluteContentPath = ScreenPlayUtil::toLocal(m_absolutePath.toString()); auto jsonObjectOpt = ScreenPlayUtil::openJsonFileToObject(absoluteContentPath + "/project.json"); + if (!jsonObjectOpt.has_value()) { + qWarning() << "Unable to load project file"; + emit removeThis(this); + return; + } + auto jsonObject = jsonObjectOpt.value(); QString preview = absoluteContentPath + "/" + jsonObject.value("preview").toString(); setAbsolutePreviewImagePath(preview);