From fc9076a353983dd99353ab7799d32fc7f8a688b7 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Tue, 14 Sep 2021 13:05:58 +0000 Subject: [PATCH 01/76] Update README.md --- README.md | 52 +++++++++------------------------------------------- 1 file changed, 9 insertions(+), 43 deletions(-) diff --git a/README.md b/README.md index f2647575..aa74d500 100644 --- a/README.md +++ b/README.md @@ -1,44 +1,26 @@
-
-
-ScreenPlay [![pipeline status](https://gitlab.com/kelteseth/ScreenPlay/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlay/-/commits/master)
-Dev. Docs [![pipeline status](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/-/commits/master)

- -[中文总览](README_zh_CN.md) -

-![Twitter Follow](https://img.shields.io/twitter/follow/kelteseth?style=for-the-badge) -![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/screenplayapp?style=for-the-badge) -

-User Chat (Discord) -![Discord](https://img.shields.io/discord/516635043435773970?style=for-the-badge) +ScreenPlay: [![pipeline status](https://gitlab.com/kelteseth/ScreenPlay/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlay/-/commits/master) Docs: [![pipeline status](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/-/commits/master) ![Twitter Follow](https://img.shields.io/twitter/follow/kelteseth?style=for-the-badge) ![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/screenplayapp?style=for-the-badge) ![Discord](https://img.shields.io/discord/516635043435773970?style=for-the-badge) -
-ScreenPlay is an open source cross platform app for displaying Video Wallpaper, Widgets and AppDrawer. It is written in modern C++20/Qt5/QML. Binaries with workshop support are available for Windows and soon Linux & MacOSX via Steam. Join our community: Homepage - Forum +

✨Download ScreenPlay✨

-
-

✨Download ScreenPlay✨

🚀Support ScreenPlay On Patreon🚀

-Windows only, Linux and MacOS next. -
-
- - -![](https://gitlab.com/kelteseth/ScreenPlay/-/raw/master/.gitlab/media/preview.webp) - -![](/.gitlab/media/preview.webp) + ![](https://gitlab.com/kelteseth/ScreenPlay/-/raw/master/.gitlab/media/preview.webp) ![](/.gitlab/media/preview.webp)

Watch the Steam Early Access Trailer (YouTube)

+ +[中文总览](README_zh_CN.md) + +ScreenPlay is an Open Source cross-platform app for displaying Video Wallpaper & Widgets. It is written in modern C++20/Qt5/QML.
Homepage - Forum- Discord + +

🚀Support ScreenPlay On Patreon🚀

- - # Important Issues * [Implement KDE Support](https://gitlab.com/kelteseth/ScreenPlay/-/issues/111) -* [Implement MacOS Support](https://gitlab.com/kelteseth/ScreenPlay/-/issues/130) # Content Creation [Learn the basics of QML for Wallpapers and Widgets in 5 minutes](https://screen-play.app/blog/guide_learn_the_basics_of_qml/) @@ -103,22 +85,6 @@ Here are some ways you can contribute: -Because every operating system has its own version of desktop environment we need to adapt the ScreenPlayWindow for every platform -separately. The most feature complete for now is Windows 10. Windows 7 works but the wallpaper have the [wrong coordinates](https://gitlab.com/kelteseth/ScreenPlay/issues/34). MacOS has some basic wallpaper functionality but no maintainer. For Linux we sadly have no support for any desktop environments at the moment, except basic KDE support. - -__If you want to help and add new desktop environments look at ScreenPlayWallpaper/src folder__ - -* [BaseWindow](https://gitlab.com/kelteseth/ScreenPlay/blob/dev/ScreenPlayWallpaper/src/basewindow.h) baseclass for: - * [LinuxWindow](https://gitlab.com/kelteseth/ScreenPlay/blob/dev/ScreenPlayWallpaper/src/linuxwindow.h) - * [WinWindow](https://gitlab.com/kelteseth/ScreenPlay/blob/dev/ScreenPlayWallpaper/src/winwindow.h) - * [MacWindow](https://gitlab.com/kelteseth/ScreenPlay/blob/dev/ScreenPlayWallpaper/src/macwindow.h) - -
- -| Plattform | Windows 10 | Gnome | KDE | MacOS | -|------------------------ |------- |--------- |------- | ------- | -| __Wallpaper__ | ✔ |❌ Help Needed! | ❓ [Basic implementation](https://gitlab.com/kelteseth/ScreenPlay/-/tree/master/ScreenPlayWallpaper/kde/ScreenPlay) | ❓ [Basic implementation](https://gitlab.com/kelteseth/ScreenPlay/-/blob/master/ScreenPlayWallpaper/src/MacBridge.mm) | -
From 6549ef86f53e78a1e85680c68b7913521553bc9f Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 10:52:17 +0200 Subject: [PATCH 02/76] Fix live reloading --- ScreenPlayWallpaper/src/basewindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScreenPlayWallpaper/src/basewindow.cpp b/ScreenPlayWallpaper/src/basewindow.cpp index 7e2e7677..c70f8d97 100644 --- a/ScreenPlayWallpaper/src/basewindow.cpp +++ b/ScreenPlayWallpaper/src/basewindow.cpp @@ -237,5 +237,5 @@ void BaseWindow::setupLiveReloading() QObject::connect(&m_fileSystemWatcher, &QFileSystemWatcher::directoryChanged, this, timeoutLambda); QObject::connect(&m_fileSystemWatcher, &QFileSystemWatcher::fileChanged, this, timeoutLambda); QObject::connect(&m_liveReloadLimiter, &QTimer::timeout, this, reloadQMLLambda); - m_fileSystemWatcher.addPaths({ projectPath() }); + m_fileSystemWatcher.addPaths({ QUrl::fromUserInput(projectPath()).toLocalFile() }); } From c98db114182805b23086e1fafe1e79402e7233b2 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 10:53:10 +0200 Subject: [PATCH 03/76] Add missing steam upload button --- ScreenPlay/qml/Workshop/SteamWorkshop.qml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/ScreenPlay/qml/Workshop/SteamWorkshop.qml b/ScreenPlay/qml/Workshop/SteamWorkshop.qml index cd056192..9d407bfa 100644 --- a/ScreenPlay/qml/Workshop/SteamWorkshop.qml +++ b/ScreenPlay/qml/Workshop/SteamWorkshop.qml @@ -287,6 +287,18 @@ Item { onClicked: root.openSteamProfile() } + Button { + id: btnSteamUpload + + anchors { + verticalCenter: parent.verticalCenter + left: btnSteamProfile.right + leftMargin: 20 + } + + text: qsTr("Upload") + onClicked: popupUploadProject.open() + } Item { id: searchWrapper @@ -296,7 +308,7 @@ Item { anchors { verticalCenter: parent.verticalCenter - left: btnSteamProfile.right + left: btnSteamUpload.right leftMargin: 20 } From fc16f5dc16220c98392c4f7f37146139c2dea0bb Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 10:53:43 +0000 Subject: [PATCH 04/76] Update crowdin.yml --- crowdin.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 crowdin.yml diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 00000000..228ba9fe --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,3 @@ +files: + - source: /ScreenPlay + translation: /ScreenPlay/translations/ScreenPlay_%two_letters_code%.ts From 212ded7442550ecb44553f2d9aa98a0f803bf976 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 10:56:59 +0000 Subject: [PATCH 05/76] Update crowdin.yml --- crowdin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crowdin.yml b/crowdin.yml index 228ba9fe..82fb2aa7 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,3 +1,3 @@ files: - - source: /ScreenPlay + - source: /ScreenPlay/translations/ScreenPlay_en.ts translation: /ScreenPlay/translations/ScreenPlay_%two_letters_code%.ts From 15b726c6b5b81aeb820f109edd6012c1b3c0c66d Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 11:02:40 +0000 Subject: [PATCH 06/76] Add Crowdin badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aa74d500..b663aa52 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@

-ScreenPlay: [![pipeline status](https://gitlab.com/kelteseth/ScreenPlay/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlay/-/commits/master) Docs: [![pipeline status](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/-/commits/master) ![Twitter Follow](https://img.shields.io/twitter/follow/kelteseth?style=for-the-badge) ![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/screenplayapp?style=for-the-badge) ![Discord](https://img.shields.io/discord/516635043435773970?style=for-the-badge) +ScreenPlay: [![pipeline status](https://gitlab.com/kelteseth/ScreenPlay/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlay/-/commits/master) Docs: [![pipeline status](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/-/commits/master) [![Crowdin](https://badges.crowdin.net/screenplay/localized.svg)](https://crowdin.com/project/screenplay) ![Twitter Follow](https://img.shields.io/twitter/follow/kelteseth?style=for-the-badge) ![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/screenplayapp?style=for-the-badge) ![Discord](https://img.shields.io/discord/516635043435773970?style=for-the-badge)

✨Download ScreenPlay✨

From e97be56d736ef2fa50a5078c78f293794194495d Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 13:12:06 +0200 Subject: [PATCH 07/76] Update source path --- crowdin.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crowdin.yml b/crowdin.yml index 82fb2aa7..24e9f13f 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,3 +1,5 @@ files: - - source: /ScreenPlay/translations/ScreenPlay_en.ts + - source: /ScreenPlay/translations/ translation: /ScreenPlay/translations/ScreenPlay_%two_letters_code%.ts + - source: /ScreenPlay/translations/ + translation: /ScreenPlay/translations/ScreenPlay_%locale_with_underscore%.ts From 64b3fdf66a540213f5796a20d5a2505aa60e1f84 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 13:19:35 +0200 Subject: [PATCH 08/76] Update crowdin --- crowdin.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/crowdin.yml b/crowdin.yml index 24e9f13f..28fc5d8d 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,5 +1,3 @@ files: - - source: /ScreenPlay/translations/ - translation: /ScreenPlay/translations/ScreenPlay_%two_letters_code%.ts - - source: /ScreenPlay/translations/ - translation: /ScreenPlay/translations/ScreenPlay_%locale_with_underscore%.ts + - source: /ScreenPlay/translations/ScreenPlay_en.ts + translation: /ScreenPlay/translations/ScreenPlay_%two_letters_code%.ts \ No newline at end of file From 93b757e2724a5c8cfff348b337ef980a7b7937c8 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 11:29:03 +0000 Subject: [PATCH 09/76] Update Crowdin configuration file --- crowdin.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crowdin.yml b/crowdin.yml index 28fc5d8d..c3e4ce8f 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,3 +1,3 @@ files: - - source: /ScreenPlay/translations/ScreenPlay_en.ts - translation: /ScreenPlay/translations/ScreenPlay_%two_letters_code%.ts \ No newline at end of file + - source: /ScreenPlay/translations/ + translation: /ScreenPlay/translations/ScreenPlay_%two_letters_code%.ts From 4b4951aa4d12488bed31e7dd58b7645e6ffb7588 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 14:04:29 +0200 Subject: [PATCH 10/76] Refactor to use locale_with_underscore everywhere this should make it easier to integrate with crowdin and to be more consistent with future Languages --- ScreenPlay/CMakeLists.txt | 18 +-- ScreenPlay/ScreenPlayAssets.qrc | 25 +++- ScreenPlay/qml/Settings/Settings.qml | 32 ++-- ScreenPlay/src/screenplaymanager.cpp | 1 - ScreenPlay/src/settings.cpp | 27 +++- ScreenPlay/src/settings.h | 17 ++- ScreenPlay/src/util.h | 2 + .../{ScreenPlay_en.qm => ScreenPlay_.qm} | Bin .../{ScreenPlay_en.ts => ScreenPlay_.ts} | 135 ++++++++--------- .../{ScreenPlay_de.qm => ScreenPlay_de_DE.qm} | Bin .../{ScreenPlay_de.ts => ScreenPlay_de_DE.ts} | 137 +++++++++--------- .../{ScreenPlay_es.qm => ScreenPlay_es_ES.qm} | Bin .../{ScreenPlay_es.ts => ScreenPlay_es_ES.ts} | 135 ++++++++--------- .../{ScreenPlay_fr.qm => ScreenPlay_fr_FR.qm} | Bin .../{ScreenPlay_fr.ts => ScreenPlay_fr_FR.ts} | 135 ++++++++--------- .../{ScreenPlay_ko.qm => ScreenPlay_ko_KR.qm} | Bin .../{ScreenPlay_ko.ts => ScreenPlay_ko_KR.ts} | 135 ++++++++--------- ScreenPlay/translations/ScreenPlay_pt_br.ts | 135 ++++++++--------- .../{ScreenPlay_ru.qm => ScreenPlay_ru_RU.qm} | Bin .../{ScreenPlay_ru.ts => ScreenPlay_ru_RU.ts} | 135 ++++++++--------- .../{ScreenPlay_vi.qm => ScreenPlay_vi_VN.qm} | Bin 37082 -> 36920 bytes .../{ScreenPlay_vi.ts => ScreenPlay_vi_VN.ts} | 137 +++++++++--------- ScreenPlay/translations/ScreenPlay_zh_cn.ts | 137 +++++++++--------- crowdin.yml | 4 +- 24 files changed, 709 insertions(+), 638 deletions(-) rename ScreenPlay/translations/{ScreenPlay_en.qm => ScreenPlay_.qm} (100%) rename ScreenPlay/translations/{ScreenPlay_en.ts => ScreenPlay_.ts} (97%) rename ScreenPlay/translations/{ScreenPlay_de.qm => ScreenPlay_de_DE.qm} (100%) rename ScreenPlay/translations/{ScreenPlay_de.ts => ScreenPlay_de_DE.ts} (98%) rename ScreenPlay/translations/{ScreenPlay_es.qm => ScreenPlay_es_ES.qm} (100%) rename ScreenPlay/translations/{ScreenPlay_es.ts => ScreenPlay_es_ES.ts} (97%) rename ScreenPlay/translations/{ScreenPlay_fr.qm => ScreenPlay_fr_FR.qm} (100%) rename ScreenPlay/translations/{ScreenPlay_fr.ts => ScreenPlay_fr_FR.ts} (97%) rename ScreenPlay/translations/{ScreenPlay_ko.qm => ScreenPlay_ko_KR.qm} (100%) rename ScreenPlay/translations/{ScreenPlay_ko.ts => ScreenPlay_ko_KR.ts} (97%) rename ScreenPlay/translations/{ScreenPlay_ru.qm => ScreenPlay_ru_RU.qm} (100%) rename ScreenPlay/translations/{ScreenPlay_ru.ts => ScreenPlay_ru_RU.ts} (97%) rename ScreenPlay/translations/{ScreenPlay_vi.qm => ScreenPlay_vi_VN.qm} (85%) rename ScreenPlay/translations/{ScreenPlay_vi.ts => ScreenPlay_vi_VN.ts} (98%) diff --git a/ScreenPlay/CMakeLists.txt b/ScreenPlay/CMakeLists.txt index 6e4115a9..021a5aca 100644 --- a/ScreenPlay/CMakeLists.txt +++ b/ScreenPlay/CMakeLists.txt @@ -55,15 +55,15 @@ list( APPEND L10N_LIST # cmake-format: sortable - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_de.ts - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_zh_cn.ts - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_pt_br.ts - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_en.ts - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_es.ts - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_fr.ts - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_ko.ts - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_ru.ts - ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_vi.ts) + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_.ts + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_de_DE.ts + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_zh_CN.ts + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_pt_BR.ts + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_es_ES.ts + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_fr_FR.ts + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_ko_KR.ts + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_ru_RU.ts + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_vi_VN.ts) include(QtUpdateTranslations) qt_update_translations("${CMAKE_CURRENT_SOURCE_DIR}/qml" "${L10N_LIST}") diff --git a/ScreenPlay/ScreenPlayAssets.qrc b/ScreenPlay/ScreenPlayAssets.qrc index 7d5178e5..c482f31a 100644 --- a/ScreenPlay/ScreenPlayAssets.qrc +++ b/ScreenPlay/ScreenPlayAssets.qrc @@ -115,13 +115,6 @@ legal/lgpl-2.1.txt profiles.json qtquickcontrols2.conf - translations/ScreenPlay_de.qm - translations/ScreenPlay_en.qm - translations/ScreenPlay_es.qm - translations/ScreenPlay_fr.qm - translations/ScreenPlay_ko.qm - translations/ScreenPlay_ru.qm - translations/ScreenPlay_vi.qm translations/ScreenPlay_zh_cn.qm assets/images/Early_Access.png translations/ScreenPlay_pt_br.qm @@ -131,5 +124,23 @@ assets/icons/steam_default_avatar.png assets/macos/app.screenplay.plist assets/icons/item_banner_new.svg + translations/ScreenPlay_de_DE.qm + translations/ScreenPlay_es_ES.qm + translations/ScreenPlay_fr_FR.qm + translations/ScreenPlay_ko_KR.qm + translations/ScreenPlay_pt_BR.qm + translations/ScreenPlay_ru_RU.qm + translations/ScreenPlay_vi_VN.qm + translations/ScreenPlay_zh_CN.qm + translations/ScreenPlay_.qm + translations/ScreenPlay_.ts + translations/ScreenPlay_de_DE.ts + translations/ScreenPlay_es_ES.ts + translations/ScreenPlay_fr_FR.ts + translations/ScreenPlay_ko_KR.ts + translations/ScreenPlay_pt_BR.ts + translations/ScreenPlay_ru_RU.ts + translations/ScreenPlay_vi_VN.ts + translations/ScreenPlay_zh_CN.ts diff --git a/ScreenPlay/qml/Settings/Settings.qml b/ScreenPlay/qml/Settings/Settings.qml index b1897944..5febdd9f 100644 --- a/ScreenPlay/qml/Settings/Settings.qml +++ b/ScreenPlay/qml/Settings/Settings.qml @@ -166,32 +166,32 @@ Item { comboBox { model: [{ - "value": Settings.En, - "text": qsTr("English") + "value": Settings.En_US, + "text": "English" }, { - "value": Settings.De, - "text": qsTr("German") + "value": Settings.De_DE, + "text": "German" }, { "value": Settings.Zh_CN, - "text": qsTr("Chinese - Simplified") + "text": "Chinese - Simplified" }, { - "value": Settings.Ru, - "text": qsTr("Russian") + "value": Settings.Ru_RU, + "text": "Russian" }, { - "value": Settings.Fr, - "text": qsTr("French") + "value": Settings.Fr_FR, + "text": "French" }, { - "value": Settings.Es, - "text": qsTr("Spanish") + "value": Settings.Es_ES, + "text": "Spanish" }, { - "value": Settings.Ko, - "text": qsTr("Korean") + "value": Settings.Ko_KR, + "text": "Korean" }, { - "value": Settings.Vi, - "text": qsTr("Vietnamese") + "value": Settings.Vi_VN, + "text": "Vietnamese" }, { "value": Settings.Pt_BR, - "text": qsTr("Portuguese (Brazil)") + "text": "Portuguese (Brazil)" }] onActivated: { ScreenPlay.settings.setLanguage(settingsLanguage.comboBox.currentValue); diff --git a/ScreenPlay/src/screenplaymanager.cpp b/ScreenPlay/src/screenplaymanager.cpp index 89c5f6a3..dcaaf14f 100644 --- a/ScreenPlay/src/screenplaymanager.cpp +++ b/ScreenPlay/src/screenplaymanager.cpp @@ -559,7 +559,6 @@ bool ScreenPlayManager::loadProfiles() return false; } - qInfo() << "Loading profiles " << activeProfilesTmp.size(); bool containsInvalidData = false; for (const QJsonValueRef wallpaper : activeProfilesTmp) { diff --git a/ScreenPlay/src/settings.cpp b/ScreenPlay/src/settings.cpp index 07fcf238..6ba3344a 100644 --- a/ScreenPlay/src/settings.cpp +++ b/ScreenPlay/src/settings.cpp @@ -194,7 +194,6 @@ void Settings::restoreDefault(const QString& appConfigLocation, const QString& s void Settings::initInstalledPath() { //If empty use steam workshop location - qInfo() << m_qSettings.value("ScreenPlayContentPath").toString(); if (QString(m_qSettings.value("ScreenPlayContentPath").toString()).isEmpty()) { /* @@ -261,7 +260,7 @@ void Settings::setupLanguage() langCode = m_qSettings.value("Language").toString(); } - setLanguage(QStringToEnum(langCode, Language::En)); + setLanguage(QStringToEnum(langCode, Language::En_US)); retranslateUI(); } @@ -272,17 +271,16 @@ void Settings::setupLanguage() */ bool Settings::retranslateUI() { - auto* app = static_cast(QApplication::instance()); - QString langCode = QVariant::fromValue(language()).toString(); - langCode = langCode.toLower(); - QFile tsFile; + QString langCode = fixLanguageCode(QVariant::fromValue(language()).toString()); + QFile tsFile; if (tsFile.exists(":/translations/ScreenPlay_" + langCode + ".qm")) { m_translator.load(":/translations/ScreenPlay_" + langCode + ".qm"); + auto* app = static_cast(QApplication::instance()); app->installTranslator(&m_translator); emit requestRetranslation(); - if (language() == Settings::Language::Ko) { + if (language() == Settings::Language::Ko_KR) { setFont("Noto Sans CJK KR Regular"); } else { setFont("Roboto"); @@ -292,4 +290,19 @@ bool Settings::retranslateUI() qWarning() << tsFile.fileName() << ", cannot be loaded width langCode " << langCode; return false; } + +/*! + \brief We must translate between qml langauge code and real ones. +*/ +QString Settings::fixLanguageCode(const QString& languageCode) +{ + QString langCode = languageCode; + // QML enums must begin with uppercase, but our code begin with lowercase + langCode = langCode.replace(0, 1, langCode.at(0).toLower()); + // For US we use the default .ts file without langauge code + if (langCode == "en_US") + langCode = ""; + return langCode; +} + } diff --git a/ScreenPlay/src/settings.h b/ScreenPlay/src/settings.h index 2faa3e6a..1d71b0f8 100644 --- a/ScreenPlay/src/settings.h +++ b/ScreenPlay/src/settings.h @@ -115,13 +115,13 @@ public: }; enum class Language { - En, - De, - Ru, - Fr, - Es, - Ko, - Vi, + En_US, + De_DE, + Ru_RU, + Fr_FR, + Es_ES, + Ko_KR, + Vi_VN, Pt_BR, Zh_CN, }; @@ -402,6 +402,7 @@ public slots: private: void restoreDefault(const QString& appConfigLocation, const QString& settingsFileType); void initInstalledPath(); + QString fixLanguageCode(const QString& languageCode); private: QSettings m_qSettings; @@ -419,7 +420,7 @@ private: QString m_gitBuildHash; QString m_decoder; ScreenPlay::FillMode::FillMode m_videoFillMode { ScreenPlay::FillMode::FillMode::Cover }; - Language m_language { Language::En }; + Language m_language { Language::En_US }; Theme m_theme { Theme::System }; QString m_font { "Roboto" }; bool m_steamVersion { false }; diff --git a/ScreenPlay/src/util.h b/ScreenPlay/src/util.h index a967fcb5..1d552a55 100644 --- a/ScreenPlay/src/util.h +++ b/ScreenPlay/src/util.h @@ -72,6 +72,8 @@ T QStringToEnum(const QString& key, const T defaultValue) if (ok) { return wantedEnum; + } else { + qWarning() << "Unable to convert QStringToEnum. Key: " << key; } return defaultValue; diff --git a/ScreenPlay/translations/ScreenPlay_en.qm b/ScreenPlay/translations/ScreenPlay_.qm similarity index 100% rename from ScreenPlay/translations/ScreenPlay_en.qm rename to ScreenPlay/translations/ScreenPlay_.qm diff --git a/ScreenPlay/translations/ScreenPlay_en.ts b/ScreenPlay/translations/ScreenPlay_.ts similarity index 97% rename from ScreenPlay/translations/ScreenPlay_en.ts rename to ScreenPlay/translations/ScreenPlay_.ts index c589e44c..5e88c671 100644 --- a/ScreenPlay/translations/ScreenPlay_en.ts +++ b/ScreenPlay/translations/ScreenPlay_.ts @@ -211,42 +211,42 @@ - + Convert a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -508,42 +508,42 @@ - + Import a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -589,43 +589,43 @@ - + Refreshing! - - + + Pull to refresh! - + Get more Wallpaper & Widgets via the Steam workshop! - + Open containing folder - + Remove Item - + Remove via Workshop - + Open Workshop Page - + Are you sure you want to delete this item? @@ -779,12 +779,12 @@ NavigationWallpaperConfiguration - + Configurate active Wallpaper or Widgets - + No active Wallpaper or Widgets @@ -792,12 +792,12 @@ PopupOffline - - You need to run Steam for this :) + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - + Back @@ -902,7 +902,7 @@ ScreenPlayItem - + NEW @@ -1189,102 +1189,102 @@ Sidebar - + Tools Overview - + Video import and convert (all types) - + Video Import (.webm) - + GIF Wallpaper - + QML Wallpaper - + HTML5 Wallpaper - + Website Wallpaper - + QML Widget - + HTML Widget - + Set Wallpaper - + Set Widget - + Headline - + Select a Monitor to display the content - + Set Volume - + Fill Mode - + Stretch - + Fill - + Contain - + Cover - + Scale-Down @@ -1402,72 +1402,77 @@ - + + 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 diff --git a/ScreenPlay/translations/ScreenPlay_de.qm b/ScreenPlay/translations/ScreenPlay_de_DE.qm similarity index 100% rename from ScreenPlay/translations/ScreenPlay_de.qm rename to ScreenPlay/translations/ScreenPlay_de_DE.qm diff --git a/ScreenPlay/translations/ScreenPlay_de.ts b/ScreenPlay/translations/ScreenPlay_de_DE.ts similarity index 98% rename from ScreenPlay/translations/ScreenPlay_de.ts rename to ScreenPlay/translations/ScreenPlay_de_DE.ts index 5feba97c..9ecded53 100644 --- a/ScreenPlay/translations/ScreenPlay_de.ts +++ b/ScreenPlay/translations/ScreenPlay_de_DE.ts @@ -223,7 +223,7 @@ Analyse des Videos schlug Fehl! - + Convert a video to a wallpaper Konvertiere ein Video in ein Hintergrund Live Wallpaper @@ -233,37 +233,37 @@ - + Generating preview video... Generiere Vorschau-Video... - + Name (required!) Name (erforderlich!) - + Description Beschreibung - + Youtube URL YouTube-URL - + Abort Abbrechen - + Save Speichern - + Save Wallpaper... Speicher Wallpaper... @@ -520,7 +520,7 @@ Analyse des Videos schlug Fehl! - + Import a video to a wallpaper Importiere ein Video zu ein Wallpaper @@ -530,37 +530,37 @@ - + Generating preview video... Generiere Vorschau-Video... - + Name (required!) Name (erforderlich!) - + Description Beschreibung - + Youtube URL YouTube-URL - + Abort Abbrechen - + Save Speichern - + Save Wallpaper... Speicher Wallpaper... @@ -601,43 +601,43 @@ Installed - + Refreshing! Aktualisiere! - - + + 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! - + Open containing folder Enthaltenden Ordner öffnen - + Remove Item - + Remove via Workshop - + Open Workshop Page - + Are you sure you want to delete this item? Bist du dir sicher dass du dieses Item löschen möchtest? @@ -797,12 +797,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut NavigationWallpaperConfiguration - + Configurate active Wallpaper or Widgets Konfiguriere aktive Wallpaper oder Widgets - + No active Wallpaper or Widgets Keine aktiven Wallpaper oder Widgets @@ -810,12 +810,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut PopupOffline - - You need to run Steam for this :) - Steam muss dafür ausgeführt sein :) + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + - + Back Zurück @@ -920,7 +920,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut ScreenPlayItem - + NEW @@ -1207,57 +1207,57 @@ Bitte Konfiguriere deine Wallpaper noch erneut Sidebar - + Set Widget - + Headline Überschrift - + Select a Monitor to display the content Wähle einen Monitor zur Anzeige des Inhalts - + Set Volume Audiolautstärke einstellen - + Fill Mode Füll-Modus - + Stretch Strecken - + Fill Ausfüllen - + Contain Enthält - + Cover - + Scale-Down Runter-Skallieren - + Set Wallpaper Wallpaper Festlegen @@ -1307,47 +1307,47 @@ Bitte Konfiguriere deine Wallpaper noch erneut Abonniere - + Tools Overview Werkzeugeübersicht - + Video import and convert (all types) - + Video Import (.webm) Importiere Video (.webm) - + GIF Wallpaper - + QML Wallpaper - + HTML5 Wallpaper - + Website Wallpaper - + QML Widget - + HTML Widget @@ -1420,72 +1420,77 @@ Bitte Konfiguriere deine Wallpaper noch erneut Profil - + + Upload + + + + Search for Wallpaper and Widgets... Suche nach Hintergründen und Widgets... - + Open Workshop in Steam Öffne Workshop in Steam - + Ranked By Vote Nach Bewertungen sortieren - + Publication Date Veröffentlichungs Datum - + Ranked By Trend Nach Trends sortieren - + Favorited By Friends Von Freunden Favorisiert - + Created By Friends Von Freunden erstellt - + Created By Followed Users Von Gefolgten Benutzern erstellt - + Not Yet Rated Noch nicht Bewertet - + Total VotesAsc Abstimmungs Anzahl Absteigend - + Votes Up Abstimmungs Anzahl Steigend - + Total Unique Subscriptions Anzahl Einzigartiger Abonnennts - + Back Zurück - + Forward Vor diff --git a/ScreenPlay/translations/ScreenPlay_es.qm b/ScreenPlay/translations/ScreenPlay_es_ES.qm similarity index 100% rename from ScreenPlay/translations/ScreenPlay_es.qm rename to ScreenPlay/translations/ScreenPlay_es_ES.qm diff --git a/ScreenPlay/translations/ScreenPlay_es.ts b/ScreenPlay/translations/ScreenPlay_es_ES.ts similarity index 97% rename from ScreenPlay/translations/ScreenPlay_es.ts rename to ScreenPlay/translations/ScreenPlay_es_ES.ts index 59487656..27621307 100644 --- a/ScreenPlay/translations/ScreenPlay_es.ts +++ b/ScreenPlay/translations/ScreenPlay_es_ES.ts @@ -227,42 +227,42 @@ - + Convert a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -524,42 +524,42 @@ - + Import a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -605,43 +605,43 @@ - + Refreshing! - - + + Pull to refresh! - + Get more Wallpaper & Widgets via the Steam workshop! - + Open containing folder - + Remove Item - + Remove via Workshop - + Open Workshop Page - + Are you sure you want to delete this item? @@ -795,12 +795,12 @@ NavigationWallpaperConfiguration - + Configurate active Wallpaper or Widgets - + No active Wallpaper or Widgets @@ -808,12 +808,12 @@ PopupOffline - - You need to run Steam for this :) + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - + Back @@ -918,7 +918,7 @@ ScreenPlayItem - + NEW @@ -1205,102 +1205,102 @@ Sidebar - + Tools Overview - + Video import and convert (all types) - + Video Import (.webm) - + GIF Wallpaper - + QML Wallpaper - + HTML5 Wallpaper - + Website Wallpaper - + QML Widget - + HTML Widget - + Set Wallpaper - + Set Widget - + Headline - + Select a Monitor to display the content - + Set Volume - + Fill Mode - + Stretch - + Fill - + Contain - + Cover - + Scale-Down @@ -1418,72 +1418,77 @@ - + + 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 diff --git a/ScreenPlay/translations/ScreenPlay_fr.qm b/ScreenPlay/translations/ScreenPlay_fr_FR.qm similarity index 100% rename from ScreenPlay/translations/ScreenPlay_fr.qm rename to ScreenPlay/translations/ScreenPlay_fr_FR.qm diff --git a/ScreenPlay/translations/ScreenPlay_fr.ts b/ScreenPlay/translations/ScreenPlay_fr_FR.ts similarity index 97% rename from ScreenPlay/translations/ScreenPlay_fr.ts rename to ScreenPlay/translations/ScreenPlay_fr_FR.ts index 164a84fa..0a33c34f 100644 --- a/ScreenPlay/translations/ScreenPlay_fr.ts +++ b/ScreenPlay/translations/ScreenPlay_fr_FR.ts @@ -211,42 +211,42 @@ - + Convert a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -508,42 +508,42 @@ - + Import a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -589,43 +589,43 @@ - + Refreshing! - - + + Pull to refresh! - + Get more Wallpaper & Widgets via the Steam workshop! - + Open containing folder - + Remove Item - + Remove via Workshop - + Open Workshop Page - + Are you sure you want to delete this item? @@ -779,12 +779,12 @@ NavigationWallpaperConfiguration - + Configurate active Wallpaper or Widgets - + No active Wallpaper or Widgets @@ -792,12 +792,12 @@ PopupOffline - - You need to run Steam for this :) + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - + Back @@ -902,7 +902,7 @@ ScreenPlayItem - + NEW @@ -1189,102 +1189,102 @@ Sidebar - + Tools Overview - + Video import and convert (all types) - + Video Import (.webm) - + GIF Wallpaper - + QML Wallpaper - + HTML5 Wallpaper - + Website Wallpaper - + QML Widget - + HTML Widget - + Set Wallpaper - + Set Widget - + Headline - + Select a Monitor to display the content - + Set Volume - + Fill Mode - + Stretch - + Fill - + Contain - + Cover - + Scale-Down @@ -1402,72 +1402,77 @@ - + + 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 diff --git a/ScreenPlay/translations/ScreenPlay_ko.qm b/ScreenPlay/translations/ScreenPlay_ko_KR.qm similarity index 100% rename from ScreenPlay/translations/ScreenPlay_ko.qm rename to ScreenPlay/translations/ScreenPlay_ko_KR.qm diff --git a/ScreenPlay/translations/ScreenPlay_ko.ts b/ScreenPlay/translations/ScreenPlay_ko_KR.ts similarity index 97% rename from ScreenPlay/translations/ScreenPlay_ko.ts rename to ScreenPlay/translations/ScreenPlay_ko_KR.ts index 11abc7ff..135b4a3c 100644 --- a/ScreenPlay/translations/ScreenPlay_ko.ts +++ b/ScreenPlay/translations/ScreenPlay_ko_KR.ts @@ -227,42 +227,42 @@ - + Convert a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -524,42 +524,42 @@ - + Import a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -605,43 +605,43 @@ - + Refreshing! - - + + Pull to refresh! - + Get more Wallpaper & Widgets via the Steam workshop! - + Open containing folder - + Remove Item - + Remove via Workshop - + Open Workshop Page - + Are you sure you want to delete this item? @@ -795,12 +795,12 @@ NavigationWallpaperConfiguration - + Configurate active Wallpaper or Widgets - + No active Wallpaper or Widgets @@ -808,12 +808,12 @@ PopupOffline - - You need to run Steam for this :) + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - + Back @@ -918,7 +918,7 @@ ScreenPlayItem - + NEW @@ -1205,102 +1205,102 @@ Sidebar - + Tools Overview - + Video import and convert (all types) - + Video Import (.webm) - + GIF Wallpaper - + QML Wallpaper - + HTML5 Wallpaper - + Website Wallpaper - + QML Widget - + HTML Widget - + Set Wallpaper - + Set Widget - + Headline - + Select a Monitor to display the content - + Set Volume - + Fill Mode - + Stretch - + Fill - + Contain - + Cover - + Scale-Down @@ -1418,72 +1418,77 @@ - + + 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 diff --git a/ScreenPlay/translations/ScreenPlay_pt_br.ts b/ScreenPlay/translations/ScreenPlay_pt_br.ts index 3887a1bc..ce2dd611 100644 --- a/ScreenPlay/translations/ScreenPlay_pt_br.ts +++ b/ScreenPlay/translations/ScreenPlay_pt_br.ts @@ -227,42 +227,42 @@ - + Convert a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -524,42 +524,42 @@ - + Import a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -605,43 +605,43 @@ - + Refreshing! - - + + Pull to refresh! - + Get more Wallpaper & Widgets via the Steam workshop! - + Open containing folder - + Remove Item - + Remove via Workshop - + Open Workshop Page - + Are you sure you want to delete this item? @@ -795,12 +795,12 @@ NavigationWallpaperConfiguration - + Configurate active Wallpaper or Widgets - + No active Wallpaper or Widgets @@ -808,12 +808,12 @@ PopupOffline - - You need to run Steam for this :) + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - + Back @@ -918,7 +918,7 @@ ScreenPlayItem - + NEW @@ -1205,102 +1205,102 @@ Sidebar - + Tools Overview - + Video import and convert (all types) - + Video Import (.webm) - + GIF Wallpaper - + QML Wallpaper - + HTML5 Wallpaper - + Website Wallpaper - + QML Widget - + HTML Widget - + Set Wallpaper - + Set Widget - + Headline - + Select a Monitor to display the content - + Set Volume - + Fill Mode - + Stretch - + Fill - + Contain - + Cover - + Scale-Down @@ -1418,72 +1418,77 @@ - + + 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 diff --git a/ScreenPlay/translations/ScreenPlay_ru.qm b/ScreenPlay/translations/ScreenPlay_ru_RU.qm similarity index 100% rename from ScreenPlay/translations/ScreenPlay_ru.qm rename to ScreenPlay/translations/ScreenPlay_ru_RU.qm diff --git a/ScreenPlay/translations/ScreenPlay_ru.ts b/ScreenPlay/translations/ScreenPlay_ru_RU.ts similarity index 97% rename from ScreenPlay/translations/ScreenPlay_ru.ts rename to ScreenPlay/translations/ScreenPlay_ru_RU.ts index d659beab..cee143d7 100644 --- a/ScreenPlay/translations/ScreenPlay_ru.ts +++ b/ScreenPlay/translations/ScreenPlay_ru_RU.ts @@ -227,42 +227,42 @@ - + Convert a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -524,42 +524,42 @@ - + Import a video to a wallpaper - + Generating preview video... - + Name (required!) - + Description - + Youtube URL - + Abort - + Save - + Save Wallpaper... @@ -605,43 +605,43 @@ - + Refreshing! - - + + Pull to refresh! - + Get more Wallpaper & Widgets via the Steam workshop! - + Open containing folder - + Remove Item - + Remove via Workshop - + Open Workshop Page - + Are you sure you want to delete this item? @@ -795,12 +795,12 @@ NavigationWallpaperConfiguration - + Configurate active Wallpaper or Widgets - + No active Wallpaper or Widgets @@ -808,12 +808,12 @@ PopupOffline - - You need to run Steam for this :) + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 - + Back @@ -918,7 +918,7 @@ ScreenPlayItem - + NEW @@ -1205,102 +1205,102 @@ Sidebar - + Tools Overview - + Video import and convert (all types) - + Video Import (.webm) - + GIF Wallpaper - + QML Wallpaper - + HTML5 Wallpaper - + Website Wallpaper - + QML Widget - + HTML Widget - + Set Wallpaper - + Set Widget - + Headline - + Select a Monitor to display the content - + Set Volume - + Fill Mode - + Stretch - + Fill - + Contain - + Cover - + Scale-Down @@ -1418,72 +1418,77 @@ - + + 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 diff --git a/ScreenPlay/translations/ScreenPlay_vi.qm b/ScreenPlay/translations/ScreenPlay_vi_VN.qm similarity index 85% rename from ScreenPlay/translations/ScreenPlay_vi.qm rename to ScreenPlay/translations/ScreenPlay_vi_VN.qm index f220af90808cb19ed0d0b449eccf8099924c7538..98bdb444822e1cd25cf79b22a97d47c79a3b7c35 100644 GIT binary patch delta 1656 zcmXApdr(w$6vw~2d+$E(-reTJzCb`g0fk~gKyx5O zZzvdy$V(9%3J9?=Mx2$zNFhZDiWt$HihR=KBw0uAU!VEiIlp_(_j|wRj+~Nq)kw?q zlFdg98>Bn`IFjXL%&Y-(@N*zb14j4?KsA^%#lX5yFnuXN>=G~oivhDkB7;LjCO3g~ zod7;`2D_FhGY4D30LGueR$KvQ)ry>dL1eB%WRU^vX{vwY@oPH5#zuS)I3}{N0qnRX zy|5H&vq2!i59*59z(=D(utd-0{RiJ;CLl;JWJwGvI|L+M29mRdlM-{Q+(dlv?-UKC zMC7C^u+;&FtGh`|ws1pYq4Jj8E7}U=vbJJcdph>_~0$#(>!)ZXY>C-WGZ5A5rg`L4+a zI2&2`7Z!9DWXTzVqdTYzsT z(>O?WZ~m0&Ipz$c9AySVDoCa?Gi)LT8=0SkT;e@us(T%Pj1Jr{@xV%vPF zu;>7LX~!iRXp+6r5)Z6Wu!Cp9fYb^0_DcFha~`lG%j$u&ZR|)tIk;`M7dYwGgmA%%4lO%?U4aF{W8x+=;CGJxy>MPsBJ-AYz8X1`*+qQ#v|h+eDc?M?u4 zrxe3F(qMm4F?q8T(2ppdwR8YU?ZP9*TpC#=C|JF-zo2aGUj!7?DqF7;t(!##?oyhP zsOJhV<&!`?C9FgFJYtCAClkV1d!zqtRnYdAbnQ1)sEZSzn-*#NyDG`QfbyQN%Bk}J z;v7`v`=e;sL{;UL%@mQ@suM#bDV4$Q@OL%6zlXhuIn1r&uJ1F|BcABTU=iR#a6L~yOy^b*gKaSa(+Vf?{E)C z_fz`J)Us+bz%NX#i-?BsnS7@EmPWPLvoK)WKWd-;w}Atp>R2DD3A9otj<2Uh-=I!+ zX8`GlI%jbMU{fG69Z$@y=Fi=rBxiZ?Cgy!$k2l{NF_Tu}FyB|BB_Sq$=o!(ak{_!gAwgyQV_GFg zq%F`eBc-$wej4-CXu#b~V>##yWE|I6zGw%mc8d(~5DZGaRpyW;VVLIH7peKUnGA~U z)D+K%1N>ctaOEmXUSqntl5A=f8Qdwd&`xMoT1YtITczH8?^EsSF7hxZSX()?fc}G* zwQXHJfa4Xd={c>3RgcJkVv&Ur+6OPT02|H-2GtS|FP+!m6#eSjbO{;~y4_V*o^k?M tzg$&6mE*Ng&@^I~at4s^7as5sB|rGaO?{|CeV?dbpj delta 1749 zcmXAp2~ZPf6vzKbc5`etL;-_<4bdu!2P%q8Qw7Be$`NSQYCKRtjwlJpAs&UG5UGRX z(JcxpRSv&(=la`ojbMuR1G#lzgzo`VfH_hEn4W-XvH|f;VA{q5?%PDh{3X&h z8*Jboz|v;0QAC*z>~;ny$OT(=8E~xwXo zkru_o0daFgW;95PL&|}yZ=@xO%c#Gx(jD5{l;VxBLaLYA)(Up1uRU~zEVyGNurXN{ z9=aLehRGIv=RxZUGHXLMFkK@nD7;T^(aLsxwH8=+R_0tmSyye7H7AS!vbW0G4$lPq zJDD60YION@bnhx&54Y(igehR{P{nSiiem&TLkRDhfLYLpMd-vrY4L8DGX+6 zj@|<1#xk|-BzOF1=F*-3AbmX37F$MbHZz@0Vyq|gyO2-JX9mujfQffl-x69cdBu*o z^8(2Di1oWd?Ju{ovocQtTUN541gn5qa&~c*1eg%S7Qd_)_RHKPeZnc3J~Y$F9&PR?qo8Gc z%tz#|El+_(Rq|=4exGDa!}j6y8Uvs<;B7nDOyzRg|{n0Gn1TYL^6&XbMH`#&-->oG_9I zaepeVoVNh>9YQOk^Rh-Oed<>LzKP1wnfm}$h|*O5k}NPy_>a*CL`+bgYW4$)rYldi z5WSC!j8Z9`X_WKh*~;gUdLY@Pd~NQatQA5G>&r!CsG?Ke(qn~!oz+F;d8;;62LlP0 zRHa*%Qxu~rzr2zh;ilTxK^U!T|4McHEKCsfRh~5%T21Tqys$7P2Ee* zTeC;#X8m1F#avR|dBEDurN&;Ru)%_l+{1o}vp=Goff?Mf3bJQb6xVo-{vC2uDeXEvLxRbm3)LL^Kz`qjd6R7sQ*-OJT zQ$4$XA&~O5I;?pLnc#^!K8)hI$OiT5`wOUxXTk-!&MQ4jU1B69rRnM##cg0lgSyd{ zPeWEE^vOqi_VXTNf=R$L{P6k~V1tqOjccN+UkDQw@8&l~p|>Z`}h8wNCa$4R1uSWU^G1Yll^5Tgv4T&r+M(;iqxpNgex zv^Rz~&?G+9-djzL4Js5lBHjWNn@$(0xLNka2-R1@1_KiHb?=#hRDCrp?{?^}5*z4l zKC+R7cv!_|zyPR}vel9E;#veONj eIX1)m?4)?BAvrzMke$j}vJ6JQ)9WKH&iNmQ%mp6+ diff --git a/ScreenPlay/translations/ScreenPlay_vi.ts b/ScreenPlay/translations/ScreenPlay_vi_VN.ts similarity index 98% rename from ScreenPlay/translations/ScreenPlay_vi.ts rename to ScreenPlay/translations/ScreenPlay_vi_VN.ts index aa80fe35..26e9b636 100644 --- a/ScreenPlay/translations/ScreenPlay_vi.ts +++ b/ScreenPlay/translations/ScreenPlay_vi_VN.ts @@ -215,42 +215,42 @@ Đã 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 - + Generating preview video... Đang tạo ra video xem trước... - + Name (required!) Tên (bắt buộc!) - + Description Mô tả - + Youtube URL Link YouTube - + Abort Hủy bỏ - + Save Lưu - + Save Wallpaper... Lưu hình nền... @@ -513,43 +513,43 @@ Đã có lỗi xảy ra khi đang xử lý video! - + Import a video to a wallpaper google translate xD Nhập một video vào hình nền - + Generating preview video... Đang tạo ra video xem trước... - + Name (required!) Tên (bắt buộc!) - + Description Mô tả - + Youtube URL Link YouTube - + Abort Hủy bỏ - + Save Lưu - + Save Wallpaper... Lưu hình nền... @@ -595,43 +595,43 @@ - + Refreshing! Đang 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! - + Open containing folder Mở thư mục chứa hình nền. - + Remove Item Xóa hình nền - + Remove via Workshop Xóa nhờ 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? @@ -789,12 +789,12 @@ NavigationWallpaperConfiguration - + 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 @@ -802,12 +802,12 @@ PopupOffline - - You need to run Steam for this :) - Bạn cần phải chạy Steam cho việc này (*≧ω≦*) + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + - + Back Quay lại @@ -913,7 +913,7 @@ ScreenPlayItem - + NEW @@ -1203,102 +1203,102 @@ Sidebar - + 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 (.webm) Nhập video (.webm) - + GIF Wallpaper Hình nền GIF - + QML Wallpaper Hình nền QML - + HTML5 Wallpaper Hình nền HTML5 - + Website Wallpaper Trang chủ của hình nền - + QML Widget Widget QML - + HTML Widget Widget HTML - + Set Wallpaper Đặt hình nền - + Set Widget Đặt widget - + Headline Tiêu đề - + 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 - + Fill Mode Cách lấp đầy - + Stretch Kéo dài - + Fill Lấp đầy - + Contain Chứa đựng - + Cover Bao phủ - + Scale-Down Giảm tỉ lệ @@ -1418,72 +1418,77 @@ Hồ sơ - + + Upload + + + + Search for Wallpaper and Widgets... Tìm hình nền & widgets... - + Open Workshop in Steam Mở workshop trong Steam - + Ranked By Vote Xếp hạng theo bình chọn - + Publication Date Ngày xuất bản - + Ranked By Trend Xếp hạng theo xu hướng - + 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 Followed Users Được tạo bởi những người đã theo dõi - + Not Yet Rated Chưa được đánh giá - + Total VotesAsc Tổng lượt bình chọn - + Votes Up Bình chọn - + Total Unique Subscriptions Tổng số đăng ký - + Back Quay lại - + Forward Tiếp tục diff --git a/ScreenPlay/translations/ScreenPlay_zh_cn.ts b/ScreenPlay/translations/ScreenPlay_zh_cn.ts index d9270d46..6bac3e9c 100644 --- a/ScreenPlay/translations/ScreenPlay_zh_cn.ts +++ b/ScreenPlay/translations/ScreenPlay_zh_cn.ts @@ -213,42 +213,42 @@ 分析视频出错! - + Convert a video to a wallpaper 将视频转换为壁纸 - + Generating preview video... 生成预览视频... - + Name (required!) 名称(必选) - + Description 简介 - + Youtube URL Youtube 链接 - + Abort 中止 - + Save 保存 - + Save Wallpaper... 保存壁纸... @@ -510,42 +510,42 @@ 分析视频出错! - + Import a video to a wallpaper 将视频导入为壁纸 - + Generating preview video... 生成预览视频... - + Name (required!) 名称(必选) - + Description 简介 - + Youtube URL Youtube 链接 - + Abort 中止 - + Save 保存 - + Save Wallpaper... 保存壁纸... @@ -586,43 +586,43 @@ Installed - + Refreshing! 刷新中! - - + + Pull to refresh! 下拉以刷新! - + Get more Wallpaper & Widgets via the Steam workshop! 从创意工坊获取更多壁纸和物件! - + Open containing folder 打开文件夹 - + Remove Item 删除物品 - + Remove via Workshop 从创意工坊中删除 - + Open Workshop Page 打开创意工坊页面 - + Are you sure you want to delete this item? 您确定要删除此物品? @@ -777,12 +777,12 @@ NavigationWallpaperConfiguration - + Configurate active Wallpaper or Widgets 设置活动壁纸或物件 - + No active Wallpaper or Widgets 没有活动壁纸或物件 @@ -790,12 +790,12 @@ PopupOffline - - You need to run Steam for this :) - 使用此功能需运行Steam :) + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + - + Back 返回 @@ -900,7 +900,7 @@ ScreenPlayItem - + NEW @@ -1187,57 +1187,57 @@ Sidebar - + Set Widget 设置物件 - + Headline 标题 - + Select a Monitor to display the content 选择显示此内容的显示器 - + Set Volume 设置音量 - + Fill Mode 填充模式 - + Stretch 拉伸 - + Fill 填充 - + Contain 适应 - + Cover 平铺 - + Scale-Down 裁剪 - + Set Wallpaper 设置壁纸 @@ -1287,47 +1287,47 @@ 订阅 - + Tools Overview 工具概览 - + Video import and convert (all types) - + Video Import (.webm) 视频导入 (.webm) - + GIF Wallpaper GIF 壁纸 - + QML Wallpaper QML 壁纸 - + HTML5 Wallpaper HTML5 壁纸 - + Website Wallpaper 网页壁纸 - + QML Widget QML 部件 - + HTML Widget HTML 部件 @@ -1400,72 +1400,77 @@ 配置 - + + Upload + + + + Search for Wallpaper and Widgets... 搜索壁纸和物件... - + Open Workshop in Steam 在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 前进 diff --git a/crowdin.yml b/crowdin.yml index 28fc5d8d..41da277c 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,3 +1,3 @@ files: - - source: /ScreenPlay/translations/ScreenPlay_en.ts - translation: /ScreenPlay/translations/ScreenPlay_%two_letters_code%.ts \ No newline at end of file + - source: /ScreenPlay/translations/ScreenPlay_.ts + translation: /ScreenPlay/translations/ScreenPlay_%locale_with_underscore%.ts \ No newline at end of file From df9561e417a79c16893ce02a2d7a4bdcf2a0cdb5 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:15:53 +0000 Subject: [PATCH 11/76] New translations ScreenPlay_.ts (French) --- ScreenPlay/translations/ScreenPlay_fr_FR.ts | 2723 ++++++++++--------- 1 file changed, 1363 insertions(+), 1360 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_fr_FR.ts b/ScreenPlay/translations/ScreenPlay_fr_FR.ts index 0a33c34f..96c18570 100644 --- a/ScreenPlay/translations/ScreenPlay_fr_FR.ts +++ b/ScreenPlay/translations/ScreenPlay_fr_FR.ts @@ -1,2252 +1,2255 @@ - - + + ColorPicker - - Red - + + Red + Red - - Green - + + Green + Green - - Blue - + + Blue + Blue - - RGB - + + RGB + RGB - - HSV - + + HSV + HSV - - R: - + + R: + R: - - G: - + + G: + G: - - B: - + + B: + B: - - H: - + + H: + H: - - S: - + + S: + S: - - V: - + + V: + V: - - Alpha: - + + Alpha: + Alpha: - - # - + + # + # - - + + Community - - News - + + News + News - - Wiki - + + Wiki + Wiki - - Forum - + + Forum + Forum - - Issue List - + + Issue List + Issue List - - Contribute - + + Contribute + Contribute - - Steam Workshop - + + Steam Workshop + Steam Workshop - - + + CommunityNavItem - - Open in browser - + + Open in browser + Open in browser - - + + CreateWallpaperInit - - 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: + +*.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: - - 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 - - Select file - + + Select file + Select file - - + + CreateWallpaperResult - - An error occurred! - + + An error occurred! + An error occurred! - - 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! - - + + CreateWallpaperVideoImportConvert - - - + + + - - Generating preview image... - + + Generating preview image... + Generating preview 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 preview gif... - + + Generating preview gif... + Generating preview gif... - - 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 ERROR! - + + Converting Video ERROR! + Converting 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 - - Generating preview video... - + + Generating preview video... + Generating preview video... - - Name (required!) - + + Name (required!) + Name (required!) - - Description - + + Description + Description - - Youtube URL - + + Youtube URL + Youtube URL - - Abort - + + Abort + Abort - - Save - + + Save + Save - - Save Wallpaper... - + + Save Wallpaper... + Save Wallpaper... - - + + DefaultVideoControls - - Volume - + + Volume + Volume - - Playback rate - + + Playback rate + Playback rate - - Current Video Time - + + Current Video Time + Current Video Time - - Fill Mode - + + Fill Mode + Fill Mode - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale_Down - + + Scale_Down + Scale_Down - - + + FileSelector - - Clear - + + Clear + Clear - - Select File - + + Select File + Select File - - Please choose a file - + + Please choose a file + Please choose a file - - + + GifWallpaper - - 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. - - Select your gif - + + Select your gif + Select your gif - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Tags - + + Tags + Tags - - + + HTMLWallpaper - - Create a HTML Wallpaper - + + Create a HTML Wallpaper + Create a HTML Wallpaper - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - License & Tags - + + License & Tags + License & Tags - - Preview Image - + + Preview Image + Preview Image - - + + HTMLWidget - - Create a HTML widget - + + Create a HTML widget + Create a HTML widget - - General - + + General + General - - Widget name - + + Widget name + Widget name - - Created by - + + Created by + Created by - - Tags - + + Tags + Tags - - + + Headline - - Headline - + + Headline + Headline - - + + HeadlineSection - - Headline Section - + + Headline Section + Headline Section - - + + ImageSelector - - Set your own preview image - + + Set your own preview image + Set your own preview image - - Clear - + + Clear + Clear - - Select Preview Image - + + Select Preview Image + Select Preview Image - - + + ImportWebmConvert - - - + + + - - AnalyseVideo... - + + AnalyseVideo... + AnalyseVideo... - - Generating preview image... - + + Generating preview image... + Generating preview 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 preview gif... - + + Generating preview gif... + Generating preview gif... - - 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 ERROR! - + + Converting Video ERROR! + Converting 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 - - Generating preview video... - + + Generating preview video... + Generating preview video... - - Name (required!) - + + Name (required!) + Name (required!) - - Description - + + Description + Description - - Youtube URL - + + Youtube URL + Youtube URL - - Abort - + + Abort + Abort - - Save - + + Save + Save - - Save Wallpaper... - + + Save Wallpaper... + Save Wallpaper... - - + + ImportWebmInit - - 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! - - 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. - - Open Documentation - + + Open Documentation + Open Documentation - - Select file - + + Select file + Select file - - + + Installed - - - + + + - - Refreshing! - + + Refreshing! + Refreshing! - - - 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! - - Open containing folder - + + Open containing folder + Open containing folder - - Remove Item - + + Remove Item + Remove Item - - Remove via Workshop - + + Remove via Workshop + Remove via Workshop - - 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? - - + + 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 - - Browse the Steam Workshop - + + Browse the Steam Workshop + Browse the Steam Workshop - - + + LicenseSelector - - 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. - - - 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 linking. - - 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 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. - - + + MonitorConfiguration - - Your monitor setup changed! + + Your monitor setup changed! Please configure your wallpaper again. - + Your monitor setup changed! + Please configure your wallpaper again. - - + + Monitors - - Wallpaper Configuration - + + Wallpaper Configuration + Wallpaper Configuration - - Remove selected - + + Remove selected + Remove selected - - - Remove - + + + Remove + Remove - - Wallpapers - + + Wallpapers + Wallpapers - - Widgets - + + Widgets + Widgets - - + + MonitorsProjectSettingItem - - Set color - + + Set color + Set color - - Please choose a color - + + Please choose a color + Please choose a color - - + + Navigation - - All - + + All + All - - Scenes - + + Scenes + Scenes - - Videos - + + Videos + Videos - - Widgets - + + Widgets + Widgets - - Install Date Ascending - + + Install Date Ascending + Install Date Ascending - - Install Date Descending - + + Install Date Descending + Install Date Descending - - Subscribed items: - + + Subscribed items: + Subscribed items: - - Upload to the Steam Workshop - + + Upload to the Steam Workshop + Upload to the Steam Workshop - - + + NavigationWallpaperConfiguration - - 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 - - + + 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 - - 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 - - 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 - - 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 - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - License & Tags - + + License & Tags + License & Tags - - Preview Image - + + Preview Image + Preview Image - - + + QMLWidget - - Create a QML widget - + + Create a QML widget + Create a QML widget - - General - + + General + General - - Widget name - + + Widget name + Widget name - - Created by - + + Created by + Created by - - Tags - + + Tags + Tags - - + + SaveNotification - - Profile saved successfully! - + + Profile saved successfully! + Profile saved successfully! - - + + ScreenPlayItem - - NEW - + + NEW + NEW - - + + Search - - Search for Wallpaper & Widgets - + + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets - - + + Settings - - General - + + General + General - - 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. - - 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. - - 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! - - Set save location - + + Set save location + Set save location - - Set location - + + Set location + Set location - - 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! - - Language - + + Language + Language - - Set the ScreenPlay UI Language - + + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language - - English - + + English + English - - German - + + German + German - - Chinese - Simplified - + + Chinese - Simplified + Chinese - Simplified - - Russian - + + Russian + Russian - - French - + + French + French - - Spanish - + + Spanish + Spanish - - Korean - + + Korean + Korean - - Vietnamese - + + Vietnamese + Vietnamese - - Portuguese (Brazil) - + + Portuguese (Brazil) + Portuguese (Brazil) - - Theme - + + Theme + Theme - - Switch dark/light theme - + + Switch dark/light theme + Switch dark/light theme - - System Default - + + System Default + System Default - - Dark - + + Dark + Dark - - Light - + + Light + Light - - Performance - + + Performance + Performance - - Pause wallpaper video rendering while another app is in the foreground - + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - + + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - - Default Fill Mode - + + Default Fill Mode + Default Fill Mode - - Set this property to define how the video is scaled to fit the target area. - + + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale-Down - + + Scale-Down + Scale-Down - - About - + + About + About - - Thank you for using ScreenPlay - + + Thank you for using ScreenPlay + Thank you for using ScreenPlay - - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - - Version - + + Version + Version - - ScreenPlay Build Version - + + ScreenPlay Build Version + ScreenPlay Build Version - - Open Changelog - + + Open Changelog + Open Changelog - - Third Party Software - + + Third Party Software + Third Party Software - - ScreenPlay would not be possible without the work of others. A big thank you to: - + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - - Licenses - + + Licenses + Licenses - - Logs - + + Logs + Logs - - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - + + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - - Show Logs - + + Show Logs + Show Logs - - Data Protection - + + Data Protection + Data Protection - - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - + + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - - Privacy - + + Privacy + Privacy - - + + SettingsExpander - - Copy text to clipboard - + + Copy text to clipboard + Copy text to clipboard - - + + Sidebar - - 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 (.webm) - + + Video Import (.webm) + Video Import (.webm) - - GIF Wallpaper - + + GIF Wallpaper + GIF Wallpaper - - QML Wallpaper - + + QML Wallpaper + QML Wallpaper - - HTML5 Wallpaper - + + HTML5 Wallpaper + HTML5 Wallpaper - - Website Wallpaper - + + Website Wallpaper + Website Wallpaper - - QML Widget - + + QML Widget + QML Widget - - HTML Widget - + + HTML Widget + HTML Widget - - Set Wallpaper - + + Set Wallpaper + Set Wallpaper - - Set Widget - + + Set Widget + Set Widget - - Headline - + + Headline + Headline - - 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 - - Fill Mode - + + Fill Mode + Fill Mode - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale-Down - + + Scale-Down + Scale-Down - - Size: - + + Size: + Size: - - MB - + + MB + MB - - 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 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: - - Open In Steam - + + Open In Steam + Open In Steam - - Subscribed! - + + Subscribed! + Subscribed! - - Subscribe - + + Subscribe + Subscribe - - + + StartInfo - - 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! - - + + SteamNotAvailable - - Could not load steam integration! - + + Could not load steam integration! + Could not load steam integration! - - + + SteamProfile - - - Back - + + + Back + Back - - Forward - + + Forward + Forward - - + + SteamWorkshop - - Loading - + + Loading + Loading - - Download now! - + + Download now! + Download now! - - Downloading... - + + Downloading... + Downloading... - - Details - + + Details + Details - - Open In Steam - + + Open In Steam + Open In Steam - - Profile - + + Profile + Profile - - Upload - + + Upload + Upload - - 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 - - Ranked By Vote - + + Ranked By Vote + Ranked By Vote - - Publication Date - + + Publication Date + Publication Date - - Ranked By Trend - + + Ranked By Trend + Ranked By Trend - - Favorited By Friends - + + Favorited By Friends + Favorited By Friends - - Created By Friends - + + Created By Friends + Created By Friends - - Created By Followed Users - + + Created By Followed Users + Created By Followed Users - - Not Yet Rated - + + Not Yet Rated + Not Yet Rated - - Total VotesAsc - + + Total VotesAsc + Total VotesAsc - - Votes Up - + + Votes Up + Votes Up - - Total Unique Subscriptions - + + Total Unique Subscriptions + Total Unique Subscriptions - - Back - + + Back + Back - - Forward - + + Forward + Forward - - + + TagSelector - - Save - + + Save + Save - - Add tag - + + Add tag + Add tag - - Cancel - + + Cancel + Cancel - - Add Tag - + + Add Tag + Add Tag - - + + TextField - - Label - + + Label + Label - - *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. - - Open ScreenPlay - + + Open ScreenPlay + Open ScreenPlay - - - Mute all - + + + Mute all + Mute all - - Unmute all - + + Unmute all + Unmute all - - - Pause all - + + + Pause all + Pause all - - Play all - + + Play all + Play all - - Quit - + + Quit + Quit - - + + UploadProject - - Upload Wallpaper/Widgets to Steam - + + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - - Abort - + + Abort + Abort - - Upload Selected Projects - + + Upload Selected Projects + Upload Selected Projects - - Finish - + + Finish + Finish - - + + UploadProjectBigItem - - Type: - + + Type: + Type: - - Open Folder - + + Open Folder + Open Folder - - Invalid Project! - + + Invalid Project! + Invalid Project! - - + + UploadProjectItem - - Fail - + + Fail + Fail - - No Connection - + + No Connection + No Connection - - Invalid Password - + + Invalid Password + Invalid Password - - Logged In Elsewhere - + + Logged In Elsewhere + Logged In Elsewhere - - Invalid Protocol Version - + + Invalid Protocol Version + Invalid Protocol Version - - Invalid Param - + + Invalid Param + Invalid Param - - File Not Found - + + File Not Found + File Not Found - - Busy - + + Busy + Busy - - Invalid State - + + Invalid State + Invalid State - - Invalid Name - + + Invalid Name + Invalid Name - - Invalid Email - + + Invalid Email + Invalid Email - - Duplicate Name - + + Duplicate Name + Duplicate Name - - Access Denied - + + Access Denied + Access Denied - - Timeout - + + Timeout + Timeout - - Banned - + + Banned + Banned - - Account Not Found - + + Account Not Found + Account Not Found - - Invalid SteamID - + + Invalid SteamID + Invalid SteamID - - Service Unavailable - + + Service Unavailable + Service Unavailable - - Not Logged On - + + Not Logged On + Not Logged On - - Pending - + + Pending + Pending - - Encryption Failure - + + Encryption Failure + Encryption Failure - - Insufficient Privilege - + + Insufficient Privilege + Insufficient Privilege - - Limit Exceeded - + + Limit Exceeded + Limit Exceeded - - Revoked - + + Revoked + Revoked - - Expired - + + Expired + Expired - - Already Redeemed - + + Already Redeemed + Already Redeemed - - Duplicate Request - + + Duplicate Request + Duplicate Request - - Already Owned - + + Already Owned + Already Owned - - IP Not Found - + + IP Not Found + IP Not Found - - Persist Failed - + + Persist Failed + Persist Failed - - Locking Failed - + + Locking Failed + Locking Failed - - Logon Session Replaced - + + Logon Session Replaced + Logon Session Replaced - - Connect Failed - + + Connect Failed + Connect Failed - - Handshake Failed - + + Handshake Failed + Handshake Failed - - IO Failure - + + IO Failure + IO Failure - - Remote Disconnect - + + Remote Disconnect + Remote Disconnect - - Shopping Cart Not Found - + + Shopping Cart Not Found + Shopping Cart Not Found - - Blocked - + + Blocked + Blocked - - Ignored - + + Ignored + Ignored - - No Match - + + No Match + No Match - - Account Disabled - + + Account Disabled + Account Disabled - - Service ReadOnly - + + Service ReadOnly + Service ReadOnly - - Account Not Featured - + + Account Not Featured + Account Not Featured - - Administrator OK - + + Administrator OK + Administrator OK - - Content Version - + + Content Version + Content Version - - Try Another CM - + + Try Another CM + Try Another CM - - 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 - - Suspended - + + Suspended + Suspended - - Cancelled - + + Cancelled + Cancelled - - Data Corruption - + + Data Corruption + Data Corruption - - Disk Full - + + Disk Full + Disk Full - - Remote Call Failed - + + Remote Call Failed + Remote Call Failed - - Password Unset - + + Password Unset + Password Unset - - External Account Unlinked - + + External Account Unlinked + External Account Unlinked - - PSN Ticket Invalid - + + PSN Ticket Invalid + PSN Ticket Invalid - - External Account Already Linked - + + External Account Already Linked + External Account Already Linked - - Remote File Conflict - + + Remote File Conflict + Remote File Conflict - - Illegal Password - + + Illegal Password + Illegal Password - - Same As Previous Value - + + Same As Previous Value + Same As Previous Value - - Account Logon Denied - + + Account Logon Denied + Account Logon Denied - - Cannot Use Old Password - + + Cannot Use Old Password + Cannot Use Old Password - - Invalid Login AuthCode - + + Invalid Login AuthCode + Invalid Login AuthCode - - 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 - - IPT Init Error - + + IPT Init Error + IPT Init Error - - Parental Control Restricted - + + Parental Control Restricted + Parental Control Restricted - - Facebook Query Error - + + Facebook Query Error + Facebook Query Error - - Expired Login Auth Code - + + Expired Login Auth Code + Expired Login Auth Code - - IP Login Restriction Failed - + + IP Login Restriction Failed + IP Login Restriction Failed - - 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 - - No MatchingURL - + + No MatchingURL + No MatchingURL - - Bad Response - + + Bad Response + Bad Response - - Require Password ReEntry - + + Require Password ReEntry + Require Password ReEntry - - Value Out Of Range - + + Value Out Of Range + Value Out Of Range - - Unexpecte Error - + + Unexpecte Error + Unexpecte Error - - Disabled - + + Disabled + Disabled - - Invalid CEG Submission - + + Invalid CEG Submission + Invalid CEG Submission - - Restricted Device - + + Restricted Device + Restricted Device - - Region Locked - + + Region Locked + Region Locked - - 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 - - Item Deleted - + + Item Deleted + Item Deleted - - 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 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 - - Not Modified - + + Not Modified + Not Modified - - No Mobile Device - + + No Mobile Device + No Mobile Device - - Time Not Synced - + + Time Not Synced + Time Not Synced - - Sms Code Failed - + + Sms Code Failed + Sms Code Failed - - Account Limit Exceeded - + + Account Limit Exceeded + Account 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 - - Refund To Wallet - + + Refund To Wallet + Refund To Wallet - - Email Send Failure - + + Email Send Failure + Email Send Failure - - Not Settled - + + Not Settled + Not Settled - - Need Captcha - + + Need Captcha + Need Captcha - - GSLT Denied - + + GSLT Denied + GSLT Denied - - GS Owner Denied - + + GS Owner Denied + GS Owner Denied - - Invalid Item Type - + + Invalid Item Type + Invalid Item Type - - IP Banned - + + IP Banned + IP Banned - - GSLT Expired - + + GSLT Expired + GSLT Expired - - Insufficient Funds - + + Insufficient Funds + Insufficient Funds - - Too Many Pending - + + Too Many Pending + Too Many Pending - - No Site Licenses Found - + + No Site Licenses Found + No Site Licenses Found - - WG Network Send Exceeded - + + WG Network Send Exceeded + WG Network Send Exceeded - - Account Not Friends - + + Account Not Friends + Account Not Friends - - Limited User Account - + + Limited User Account + Limited User Account - - Cant Remove Item - + + Cant Remove Item + Cant Remove Item - - Account Deleted - + + Account Deleted + Account Deleted - - Existing User Cancelled License - + + Existing User Cancelled License + Existing User Cancelled License - - Community Cooldown - + + Community Cooldown + Community Cooldown - - Status: - + + Status: + Status: - - Upload Progress: - + + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - - Create a Website Wallpaper - + + Create a Website Wallpaper + Create a Website Wallpaper - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - Tags - + + Tags + Tags - - Preview Image - + + Preview Image + Preview Image - - + + WizardPage - - Save - + + Save + Save - - Saving... - + + Saving... + Saving... - - + + WorkshopItem - - Successfully subscribed to Workshop Item! - + + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - - Download complete! - + + Download complete! + Download complete! - - + + XMLNewsfeed - - News & Patchnotes - + + News & Patchnotes + News & Patchnotes - + From f92576483c9a650f0f1501ba7ccc55cd92043b4c Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:15:54 +0000 Subject: [PATCH 12/76] New translations ScreenPlay_.ts (Spanish) --- ScreenPlay/translations/ScreenPlay_es_ES.ts | 2739 +++++++++---------- 1 file changed, 1363 insertions(+), 1376 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_es_ES.ts b/ScreenPlay/translations/ScreenPlay_es_ES.ts index 27621307..da904e3c 100644 --- a/ScreenPlay/translations/ScreenPlay_es_ES.ts +++ b/ScreenPlay/translations/ScreenPlay_es_ES.ts @@ -1,2268 +1,2255 @@ - - + + ColorPicker - - Red - + + Red + Red - - Green - + + Green + Green - - Blue - + + Blue + Blue - - RGB - + + RGB + RGB - - HSV - + + HSV + HSV - - R: - + + R: + R: - - G: - + + G: + G: - - B: - + + B: + B: - - H: - + + H: + H: - - S: - + + S: + S: - - V: - + + V: + V: - - Alpha: - + + Alpha: + Alpha: - - # - + + # + # - - + + Community - - News - + + News + News - - Wiki - + + Wiki + Wiki - - Forum - + + Forum + Forum - - Issue List - + + Issue List + Issue List - - Contribute - + + Contribute + Contribute - - Steam Workshop - + + Steam Workshop + Steam Workshop - - + + CommunityNavItem - - Open in browser - + + Open in browser + Open in browser - - - CreateImport - - - - - - - - CreateUpload - - - - - - - + + CreateWallpaperInit - - 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: + +*.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: - - 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 - - Select file - + + Select file + Select file - - + + CreateWallpaperResult - - An error occurred! - + + An error occurred! + An error occurred! - - 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! - - + + CreateWallpaperVideoImportConvert - - - + + + - - Generating preview image... - + + Generating preview image... + Generating preview 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 preview gif... - + + Generating preview gif... + Generating preview gif... - - 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 ERROR! - + + Converting Video ERROR! + Converting 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 - - Generating preview video... - + + Generating preview video... + Generating preview video... - - Name (required!) - + + Name (required!) + Name (required!) - - Description - + + Description + Description - - Youtube URL - + + Youtube URL + Youtube URL - - Abort - + + Abort + Abort - - Save - + + Save + Save - - Save Wallpaper... - + + Save Wallpaper... + Save Wallpaper... - - + + DefaultVideoControls - - Volume - + + Volume + Volume - - Playback rate - + + Playback rate + Playback rate - - Current Video Time - + + Current Video Time + Current Video Time - - Fill Mode - + + Fill Mode + Fill Mode - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale_Down - + + Scale_Down + Scale_Down - - + + FileSelector - - Clear - + + Clear + Clear - - Select File - + + Select File + Select File - - Please choose a file - + + Please choose a file + Please choose a file - - + + GifWallpaper - - 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. - - Select your gif - + + Select your gif + Select your gif - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Tags - + + Tags + Tags - - + + HTMLWallpaper - - Create a HTML Wallpaper - + + Create a HTML Wallpaper + Create a HTML Wallpaper - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - License & Tags - + + License & Tags + License & Tags - - Preview Image - + + Preview Image + Preview Image - - + + HTMLWidget - - Create a HTML widget - + + Create a HTML widget + Create a HTML widget - - General - + + General + General - - Widget name - + + Widget name + Widget name - - Created by - + + Created by + Created by - - Tags - + + Tags + Tags - - + + Headline - - Headline - + + Headline + Headline - - + + HeadlineSection - - Headline Section - + + Headline Section + Headline Section - - + + ImageSelector - - Set your own preview image - + + Set your own preview image + Set your own preview image - - Clear - + + Clear + Clear - - Select Preview Image - + + Select Preview Image + Select Preview Image - - + + ImportWebmConvert - - - + + + - - AnalyseVideo... - + + AnalyseVideo... + AnalyseVideo... - - Generating preview image... - + + Generating preview image... + Generating preview 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 preview gif... - + + Generating preview gif... + Generating preview gif... - - 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 ERROR! - + + Converting Video ERROR! + Converting 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 - - Generating preview video... - + + Generating preview video... + Generating preview video... - - Name (required!) - + + Name (required!) + Name (required!) - - Description - + + Description + Description - - Youtube URL - + + Youtube URL + Youtube URL - - Abort - + + Abort + Abort - - Save - + + Save + Save - - Save Wallpaper... - + + Save Wallpaper... + Save Wallpaper... - - + + ImportWebmInit - - 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! - - 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. - - Open Documentation - + + Open Documentation + Open Documentation - - Select file - + + Select file + Select file - - + + Installed - - - + + + - - Refreshing! - + + Refreshing! + Refreshing! - - - 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! - - Open containing folder - + + Open containing folder + Open containing folder - - Remove Item - + + Remove Item + Remove Item - - Remove via Workshop - + + Remove via Workshop + Remove via Workshop - - 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? - - + + 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 - - Browse the Steam Workshop - + + Browse the Steam Workshop + Browse the Steam Workshop - - + + LicenseSelector - - 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. - - - 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 linking. - - 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 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. - - + + MonitorConfiguration - - Your monitor setup changed! + + Your monitor setup changed! Please configure your wallpaper again. - + Your monitor setup changed! + Please configure your wallpaper again. - - + + Monitors - - Wallpaper Configuration - + + Wallpaper Configuration + Wallpaper Configuration - - Remove selected - + + Remove selected + Remove selected - - - Remove - + + + Remove + Remove - - Wallpapers - + + Wallpapers + Wallpapers - - Widgets - + + Widgets + Widgets - - + + MonitorsProjectSettingItem - - Set color - + + Set color + Set color - - Please choose a color - + + Please choose a color + Please choose a color - - + + Navigation - - All - + + All + All - - Scenes - + + Scenes + Scenes - - Videos - + + Videos + Videos - - Widgets - + + Widgets + Widgets - - Install Date Ascending - + + Install Date Ascending + Install Date Ascending - - Install Date Descending - + + Install Date Descending + Install Date Descending - - Subscribed items: - + + Subscribed items: + Subscribed items: - - Upload to the Steam Workshop - + + Upload to the Steam Workshop + Upload to the Steam Workshop - - + + NavigationWallpaperConfiguration - - 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 - - + + 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 - - 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 - - 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 - - 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 - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - License & Tags - + + License & Tags + License & Tags - - Preview Image - + + Preview Image + Preview Image - - + + QMLWidget - - Create a QML widget - + + Create a QML widget + Create a QML widget - - General - + + General + General - - Widget name - + + Widget name + Widget name - - Created by - + + Created by + Created by - - Tags - + + Tags + Tags - - + + SaveNotification - - Profile saved successfully! - + + Profile saved successfully! + Profile saved successfully! - - + + ScreenPlayItem - - NEW - + + NEW + NEW - - + + Search - - Search for Wallpaper & Widgets - + + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets - - + + Settings - - General - + + General + General - - 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. - - 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. - - 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! - - Set save location - + + Set save location + Set save location - - Set location - + + Set location + Set location - - 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! - - Language - + + Language + Language - - Set the ScreenPlay UI Language - + + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language - - English - + + English + English - - German - + + German + German - - Chinese - Simplified - + + Chinese - Simplified + Chinese - Simplified - - Russian - + + Russian + Russian - - French - + + French + French - - Spanish - + + Spanish + Spanish - - Korean - + + Korean + Korean - - Vietnamese - + + Vietnamese + Vietnamese - - Portuguese (Brazil) - + + Portuguese (Brazil) + Portuguese (Brazil) - - Theme - + + Theme + Theme - - Switch dark/light theme - + + Switch dark/light theme + Switch dark/light theme - - System Default - + + System Default + System Default - - Dark - + + Dark + Dark - - Light - + + Light + Light - - Performance - + + Performance + Performance - - Pause wallpaper video rendering while another app is in the foreground - + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - + + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - - Default Fill Mode - + + Default Fill Mode + Default Fill Mode - - Set this property to define how the video is scaled to fit the target area. - + + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale-Down - + + Scale-Down + Scale-Down - - About - + + About + About - - Thank you for using ScreenPlay - + + Thank you for using ScreenPlay + Thank you for using ScreenPlay - - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - - Version - + + Version + Version - - ScreenPlay Build Version - + + ScreenPlay Build Version + ScreenPlay Build Version - - Open Changelog - + + Open Changelog + Open Changelog - - Third Party Software - + + Third Party Software + Third Party Software - - ScreenPlay would not be possible without the work of others. A big thank you to: - + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - - Licenses - + + Licenses + Licenses - - Logs - + + Logs + Logs - - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - + + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - - Show Logs - + + Show Logs + Show Logs - - Data Protection - + + Data Protection + Data Protection - - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - + + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - - Privacy - + + Privacy + Privacy - - + + SettingsExpander - - Copy text to clipboard - + + Copy text to clipboard + Copy text to clipboard - - + + Sidebar - - 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 (.webm) - + + Video Import (.webm) + Video Import (.webm) - - GIF Wallpaper - + + GIF Wallpaper + GIF Wallpaper - - QML Wallpaper - + + QML Wallpaper + QML Wallpaper - - HTML5 Wallpaper - + + HTML5 Wallpaper + HTML5 Wallpaper - - Website Wallpaper - + + Website Wallpaper + Website Wallpaper - - QML Widget - + + QML Widget + QML Widget - - HTML Widget - + + HTML Widget + HTML Widget - - Set Wallpaper - + + Set Wallpaper + Set Wallpaper - - Set Widget - + + Set Widget + Set Widget - - Headline - + + Headline + Headline - - 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 - - Fill Mode - + + Fill Mode + Fill Mode - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale-Down - + + Scale-Down + Scale-Down - - Size: - + + Size: + Size: - - MB - + + MB + MB - - 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 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: - - Open In Steam - + + Open In Steam + Open In Steam - - Subscribed! - + + Subscribed! + Subscribed! - - Subscribe - + + Subscribe + Subscribe - - + + StartInfo - - 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! - - + + SteamNotAvailable - - Could not load steam integration! - + + Could not load steam integration! + Could not load steam integration! - - + + SteamProfile - - - Back - + + + Back + Back - - Forward - + + Forward + Forward - - + + SteamWorkshop - - Loading - + + Loading + Loading - - Download now! - + + Download now! + Download now! - - Downloading... - + + Downloading... + Downloading... - - Details - + + Details + Details - - Open In Steam - + + Open In Steam + Open In Steam - - Profile - + + Profile + Profile - - Upload - + + Upload + Upload - - 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 - - Ranked By Vote - + + Ranked By Vote + Ranked By Vote - - Publication Date - + + Publication Date + Publication Date - - Ranked By Trend - + + Ranked By Trend + Ranked By Trend - - Favorited By Friends - + + Favorited By Friends + Favorited By Friends - - Created By Friends - + + Created By Friends + Created By Friends - - Created By Followed Users - + + Created By Followed Users + Created By Followed Users - - Not Yet Rated - + + Not Yet Rated + Not Yet Rated - - Total VotesAsc - + + Total VotesAsc + Total VotesAsc - - Votes Up - + + Votes Up + Votes Up - - Total Unique Subscriptions - + + Total Unique Subscriptions + Total Unique Subscriptions - - Back - + + Back + Back - - Forward - + + Forward + Forward - - + + TagSelector - - Save - + + Save + Save - - Add tag - + + Add tag + Add tag - - Cancel - + + Cancel + Cancel - - Add Tag - + + Add Tag + Add Tag - - + + TextField - - Label - + + Label + Label - - *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. - - Open ScreenPlay - + + Open ScreenPlay + Open ScreenPlay - - - Mute all - + + + Mute all + Mute all - - Unmute all - + + Unmute all + Unmute all - - - Pause all - + + + Pause all + Pause all - - Play all - + + Play all + Play all - - Quit - + + Quit + Quit - - + + UploadProject - - Upload Wallpaper/Widgets to Steam - + + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - - Abort - + + Abort + Abort - - Upload Selected Projects - + + Upload Selected Projects + Upload Selected Projects - - Finish - + + Finish + Finish - - + + UploadProjectBigItem - - Type: - + + Type: + Type: - - Open Folder - + + Open Folder + Open Folder - - Invalid Project! - + + Invalid Project! + Invalid Project! - - + + UploadProjectItem - - Fail - + + Fail + Fail - - No Connection - + + No Connection + No Connection - - Invalid Password - + + Invalid Password + Invalid Password - - Logged In Elsewhere - + + Logged In Elsewhere + Logged In Elsewhere - - Invalid Protocol Version - + + Invalid Protocol Version + Invalid Protocol Version - - Invalid Param - + + Invalid Param + Invalid Param - - File Not Found - + + File Not Found + File Not Found - - Busy - + + Busy + Busy - - Invalid State - + + Invalid State + Invalid State - - Invalid Name - + + Invalid Name + Invalid Name - - Invalid Email - + + Invalid Email + Invalid Email - - Duplicate Name - + + Duplicate Name + Duplicate Name - - Access Denied - + + Access Denied + Access Denied - - Timeout - + + Timeout + Timeout - - Banned - + + Banned + Banned - - Account Not Found - + + Account Not Found + Account Not Found - - Invalid SteamID - + + Invalid SteamID + Invalid SteamID - - Service Unavailable - + + Service Unavailable + Service Unavailable - - Not Logged On - + + Not Logged On + Not Logged On - - Pending - + + Pending + Pending - - Encryption Failure - + + Encryption Failure + Encryption Failure - - Insufficient Privilege - + + Insufficient Privilege + Insufficient Privilege - - Limit Exceeded - + + Limit Exceeded + Limit Exceeded - - Revoked - + + Revoked + Revoked - - Expired - + + Expired + Expired - - Already Redeemed - + + Already Redeemed + Already Redeemed - - Duplicate Request - + + Duplicate Request + Duplicate Request - - Already Owned - + + Already Owned + Already Owned - - IP Not Found - + + IP Not Found + IP Not Found - - Persist Failed - + + Persist Failed + Persist Failed - - Locking Failed - + + Locking Failed + Locking Failed - - Logon Session Replaced - + + Logon Session Replaced + Logon Session Replaced - - Connect Failed - + + Connect Failed + Connect Failed - - Handshake Failed - + + Handshake Failed + Handshake Failed - - IO Failure - + + IO Failure + IO Failure - - Remote Disconnect - + + Remote Disconnect + Remote Disconnect - - Shopping Cart Not Found - + + Shopping Cart Not Found + Shopping Cart Not Found - - Blocked - + + Blocked + Blocked - - Ignored - + + Ignored + Ignored - - No Match - + + No Match + No Match - - Account Disabled - + + Account Disabled + Account Disabled - - Service ReadOnly - + + Service ReadOnly + Service ReadOnly - - Account Not Featured - + + Account Not Featured + Account Not Featured - - Administrator OK - + + Administrator OK + Administrator OK - - Content Version - + + Content Version + Content Version - - Try Another CM - + + Try Another CM + Try Another CM - - 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 - - Suspended - + + Suspended + Suspended - - Cancelled - + + Cancelled + Cancelled - - Data Corruption - + + Data Corruption + Data Corruption - - Disk Full - + + Disk Full + Disk Full - - Remote Call Failed - + + Remote Call Failed + Remote Call Failed - - Password Unset - + + Password Unset + Password Unset - - External Account Unlinked - + + External Account Unlinked + External Account Unlinked - - PSN Ticket Invalid - + + PSN Ticket Invalid + PSN Ticket Invalid - - External Account Already Linked - + + External Account Already Linked + External Account Already Linked - - Remote File Conflict - + + Remote File Conflict + Remote File Conflict - - Illegal Password - + + Illegal Password + Illegal Password - - Same As Previous Value - + + Same As Previous Value + Same As Previous Value - - Account Logon Denied - + + Account Logon Denied + Account Logon Denied - - Cannot Use Old Password - + + Cannot Use Old Password + Cannot Use Old Password - - Invalid Login AuthCode - + + Invalid Login AuthCode + Invalid Login AuthCode - - 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 - - IPT Init Error - + + IPT Init Error + IPT Init Error - - Parental Control Restricted - + + Parental Control Restricted + Parental Control Restricted - - Facebook Query Error - + + Facebook Query Error + Facebook Query Error - - Expired Login Auth Code - + + Expired Login Auth Code + Expired Login Auth Code - - IP Login Restriction Failed - + + IP Login Restriction Failed + IP Login Restriction Failed - - 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 - - No MatchingURL - + + No MatchingURL + No MatchingURL - - Bad Response - + + Bad Response + Bad Response - - Require Password ReEntry - + + Require Password ReEntry + Require Password ReEntry - - Value Out Of Range - + + Value Out Of Range + Value Out Of Range - - Unexpecte Error - + + Unexpecte Error + Unexpecte Error - - Disabled - + + Disabled + Disabled - - Invalid CEG Submission - + + Invalid CEG Submission + Invalid CEG Submission - - Restricted Device - + + Restricted Device + Restricted Device - - Region Locked - + + Region Locked + Region Locked - - 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 - - Item Deleted - + + Item Deleted + Item Deleted - - 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 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 - - Not Modified - + + Not Modified + Not Modified - - No Mobile Device - + + No Mobile Device + No Mobile Device - - Time Not Synced - + + Time Not Synced + Time Not Synced - - Sms Code Failed - + + Sms Code Failed + Sms Code Failed - - Account Limit Exceeded - + + Account Limit Exceeded + Account 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 - - Refund To Wallet - + + Refund To Wallet + Refund To Wallet - - Email Send Failure - + + Email Send Failure + Email Send Failure - - Not Settled - + + Not Settled + Not Settled - - Need Captcha - + + Need Captcha + Need Captcha - - GSLT Denied - + + GSLT Denied + GSLT Denied - - GS Owner Denied - + + GS Owner Denied + GS Owner Denied - - Invalid Item Type - + + Invalid Item Type + Invalid Item Type - - IP Banned - + + IP Banned + IP Banned - - GSLT Expired - + + GSLT Expired + GSLT Expired - - Insufficient Funds - + + Insufficient Funds + Insufficient Funds - - Too Many Pending - + + Too Many Pending + Too Many Pending - - No Site Licenses Found - + + No Site Licenses Found + No Site Licenses Found - - WG Network Send Exceeded - + + WG Network Send Exceeded + WG Network Send Exceeded - - Account Not Friends - + + Account Not Friends + Account Not Friends - - Limited User Account - + + Limited User Account + Limited User Account - - Cant Remove Item - + + Cant Remove Item + Cant Remove Item - - Account Deleted - + + Account Deleted + Account Deleted - - Existing User Cancelled License - + + Existing User Cancelled License + Existing User Cancelled License - - Community Cooldown - + + Community Cooldown + Community Cooldown - - Status: - + + Status: + Status: - - Upload Progress: - + + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - - Create a Website Wallpaper - + + Create a Website Wallpaper + Create a Website Wallpaper - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - Tags - + + Tags + Tags - - Preview Image - + + Preview Image + Preview Image - - + + WizardPage - - Save - + + Save + Save - - Saving... - + + Saving... + Saving... - - + + WorkshopItem - - Successfully subscribed to Workshop Item! - + + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - - Download complete! - + + Download complete! + Download complete! - - + + XMLNewsfeed - - News & Patchnotes - + + News & Patchnotes + News & Patchnotes - + From d4727081260a3e329fca7488eb25b8274f73eb43 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:15:56 +0000 Subject: [PATCH 13/76] New translations ScreenPlay_.ts (German) --- ScreenPlay/translations/ScreenPlay_de_DE.ts | 2736 +++++++++---------- 1 file changed, 1360 insertions(+), 1376 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_de_DE.ts b/ScreenPlay/translations/ScreenPlay_de_DE.ts index 9ecded53..32a87714 100644 --- a/ScreenPlay/translations/ScreenPlay_de_DE.ts +++ b/ScreenPlay/translations/ScreenPlay_de_DE.ts @@ -1,2270 +1,2254 @@ - - + + 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 - - - CreateImport - - - - - - - - CreateUpload - - - - - - - + + CreateWallpaperInit - - Import any video type - Importiere jedes Video + + Import any video type + Importiere jedes 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 - 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 thumbnail image... - Erzeuge Vorschau-Miniaturbild... + + Generating preview image... + Erzeuge Vorschaubild... - - Generating 5 second preview video... - Generiere ein 5-Sekunden-Vorschau-Video... + + Generating preview thumbnail image... + Erzeuge Vorschau-Miniaturbild... - - Generating preview gif... - Generiere Vorschau-Gif... + + Generating 5 second preview video... + Generiere ein 5-Sekunden-Vorschau-Video... - - Converting Audio... - Konvertiere Audio... + + Generating preview gif... + Generiere Vorschau-Gif... - - Converting Video... This can take some time! - Video wird umgewandelt... Das kann etwas dauern! + + Converting Audio... + Konvertiere Audio... - - Converting Video ERROR! - Konvertieren nicht erfolgreich! + + Converting Video... This can take some time! + Video wird umgewandelt... Das kann etwas dauern! - - Analyse Video ERROR! - Analyse des Videos schlug Fehl! + + Converting Video ERROR! + Konvertieren nicht erfolgreich! - - Convert a video to a wallpaper - Konvertiere ein Video in ein Hintergrund Live Wallpaper + + Analyse Video ERROR! + Analyse des Videos schlug Fehl! - - - + + 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 - - 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 - - + + 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 + + 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... + + + - - Generating preview image... - Erzeuge Vorschaubild... + + AnalyseVideo... + Analysiere Video... - - Generating preview thumbnail image... - Erzeuge Vorschau-Miniaturbild... + + Generating preview image... + Erzeuge Vorschaubild... - - Generating 5 second preview video... - Generiere ein 5-Sekunden-Vorschau-Video... + + Generating preview thumbnail image... + Erzeuge Vorschau-Miniaturbild... - - Generating preview gif... - Generiere Vorschau-Gif... + + Generating 5 second preview video... + Generiere ein 5-Sekunden-Vorschau-Video... - - Converting Audio... - Konvertiere Audio... + + Generating preview gif... + Generiere Vorschau-Gif... - - Converting Video... This can take some time! - Video wird umgewandelt... Das kann etwas dauern! + + Converting Audio... + Konvertiere Audio... - - Converting Video ERROR! - Konvertieren nicht erfolgreich! + + Converting Video... This can take some time! + Video wird umgewandelt... Das kann etwas dauern! - - Analyse Video ERROR! - Analyse des Videos schlug Fehl! + + Converting Video ERROR! + Konvertieren nicht erfolgreich! - - Import a video to a wallpaper - Importiere ein Video zu ein Wallpaper + + Analyse Video ERROR! + Analyse des Videos schlug Fehl! - - - + + 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! + + + - - - Pull to refresh! - Drücken zum aktualisieren! + + Refreshing! + Aktualisiere! - - Get more Wallpaper & Widgets via the Steam workshop! - Holen dir mehr Wallpaper und Widgets über den Steam-Workshop! + + + Pull to refresh! + Drücken zum aktualisieren! - - Open containing folder - Enthaltenden Ordner öffnen + + Get more Wallpaper & Widgets via the Steam workshop! + Holen dir mehr Wallpaper und Widgets über den Steam-Workshop! - - Remove Item - + + Open containing folder + Enthaltenden Ordner öffnen - - Remove via Workshop - + + Remove Item + Remove Item - - Open Workshop Page - + + Remove via Workshop + Remove via Workshop - - Are you sure you want to delete this item? - Bist du dir sicher dass du dieses Item löschen möchtest? + + Open Workshop Page + Open Workshop Page - - - + + 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. - + + + 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. - - 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 do not share any rights and nobody is allowed to use or remix it (Not recommended). Can also used to credit work others. - + + 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. - - + + 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 - - + + 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 - + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + You need to run Steam for this. 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. - - 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 - + + NEW + NEW - - + + 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 - - 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 - - Set save location - Speicherort auswählen + + 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! - - Your storage path is empty! - + + Set save location + Speicherort auswählen - - Set location - Standort auswählen + + Set location + Standort auswählen - - 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! - + + 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! - 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 + English - - German - Deutsch + + German + Deutsch - - Russian - + + Chinese - Simplified + Chinese - Simplified - - French - + + Russian + Russian - - Spanish - + + French + French - - Korean - + + Spanish + Spanish - - Vietnamese - + + Korean + Korean - - Portuguese (Brazil) - + + Vietnamese + Vietnamese - - Theme - Thema + + Portuguese (Brazil) + Portuguese (Brazil) - - Switch dark/light theme - Wechsle Dunkles/Helles Design + + Theme + Thema - - System Default - System Standard + + Switch dark/light theme + Wechsle Dunkles/Helles Design - - Dark - Dunkel + + System Default + System Standard - - Light - Hell + + Dark + Dunkel - - Performance - Leistung + + Light + Hell - - Pause wallpaper video rendering while another app is in the foreground - Pausiere Wallpaper Video Rendering wenn eine andere App im Vordergrund ist + + Performance + Leistung - - 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! + + Pause wallpaper video rendering while another app is in the foreground + Pausiere Wallpaper Video Rendering wenn eine andere App im Vordergrund ist - - Logs - + + 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! - - Chinese - Simplified - + + Default Fill Mode + Standard-Füllmodus - - Default Fill Mode - Standard-Füllmodus + + Set this property to define how the video is scaled to fit the target area. + Lege diese Eigenschaft fest, um zu definieren, wie das Video skaliert wird, damit es in den Zielbereich passt. - - Set this property to define how the video is scaled to fit the target area. - Lege diese Eigenschaft fest, um zu definieren, wie das Video skaliert wird, damit es in den Zielbereich passt. + + Stretch + Strecken - - Stretch - Strecken + + Fill + Ausfüllen - - Fill - Ausfüllen + + Contain + Enthält - - Contain - Enthält + + Cover + Cover - - Cover - + + Scale-Down + Runter Skallieren - - Scale-Down - Runter Skallieren + + About + Über - - About - Über + + Thank you for using ScreenPlay + Danke, dass du ScreenPlay verwendest - - Thank you for using ScreenPlay - Danke, dass du ScreenPlay verwendest + + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Moin, ich bin Elias Steurer, auch bekannt als Kelteseth und ich bin der Entwickler von ScreenPlay. Danke, dass du meine Software nutzt. Du kannst mir hier folgen, um Updates über ScreenPlay zu erhalten: - - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Moin, ich bin Elias Steurer, auch bekannt als Kelteseth und ich bin der Entwickler von ScreenPlay. Danke, dass du meine Software nutzt. Du kannst mir hier folgen, um Updates über ScreenPlay zu erhalten: + + Version + Version - - Version - Version + + ScreenPlay Build Version + ScreenPlay-Build-Version - - ScreenPlay Build Version - ScreenPlay-Build-Version + + Open Changelog + Changelog öffnen - - Open Changelog - Changelog öffnen + + Third Party Software + Software von Drittanbietern - - Third Party Software - Software von Drittanbietern + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay wäre ohne die Arbeit anderer nicht möglich. Ein großes Dankeschön dafür geht an: - - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay wäre ohne die Arbeit anderer nicht möglich. Ein großes Dankeschön dafür geht an: + + Licenses + Lizenzen - - Licenses - Lizenzen + + Logs + Logs - - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Wenn den ScreenPlay sich falsch verhält, ist hier eine gute Möglichkeit, nach Antworten zu suchen. Hier werden alle Protokolle und Warnungen während der Laufzeit angezeigt. + + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + Wenn den ScreenPlay sich falsch verhält, ist hier eine gute Möglichkeit, nach Antworten zu suchen. Hier werden alle Protokolle und Warnungen während der Laufzeit angezeigt. - - Show Logs - Zeige Logs + + Show Logs + Zeige Logs - - Data Protection - Datenschutz + + Data Protection + Datenschutz - - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Wir verwenden deine Daten sehr sorgfältig, um ScreenPlay zu verbessern. Wir verkaufen oder teilen diese (anonymen) Informationen nicht mit anderen! + + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + Wir verwenden deine Daten sehr sorgfältig, um ScreenPlay zu verbessern. Wir verkaufen oder teilen diese (anonymen) Informationen nicht mit anderen! - - Privacy - Datenschutz + + Privacy + Datenschutz - - + + SettingsExpander - - Copy text to clipboard - Kopiere den Text in die Zwischenablage + + Copy text to clipboard + Kopiere den Text in die Zwischenablage - - + + Sidebar - - Set Widget - + + Tools Overview + Werkzeugeübersicht - - Headline - Überschrift + + Video import and convert (all types) + Video import and convert (all types) - - Select a Monitor to display the content - Wähle einen Monitor zur Anzeige des Inhalts + + Video Import (.webm) + Importiere Video (.webm) - - Set Volume - Audiolautstärke einstellen + + GIF Wallpaper + GIF Wallpaper - - Fill Mode - Füll-Modus + + QML Wallpaper + QML Wallpaper - - Stretch - Strecken + + HTML5 Wallpaper + HTML5 Wallpaper - - Fill - Ausfüllen + + Website Wallpaper + Website Wallpaper - - Contain - Enthält + + QML Widget + QML Widget - - Cover - + + HTML Widget + HTML Widget - - Scale-Down - Runter-Skallieren + + Set Wallpaper + Wallpaper Festlegen - - Set Wallpaper - Wallpaper Festlegen + + Set Widget + Set Widget - - MB - + + Headline + Überschrift - - Size: - Größe: + + Select a Monitor to display the content + Wähle einen Monitor zur Anzeige des Inhalts - - No description... - Leine Beschreibung... + + Set Volume + Audiolautstärke einstellen - - Click here if you like the content - Klicke hier wenn du den Inhalt magst + + Fill Mode + Füll-Modus - - Click here if you do not like the content - Klicke hier wenn du den Inhalt nicht magst + + Stretch + Strecken - - Subscribtions: - Abonnements + + Fill + Ausfüllen - - Open In Steam - Öffne in Steam + + Contain + Enthält - - Subscribed! - Abonniert + + Cover + Cover - - Subscribe - Abonniere + + Scale-Down + Runter-Skallieren - - Tools Overview - Werkzeugeübersicht + + Size: + Größe: - - Video import and convert (all types) - + + MB + MB - - Video Import (.webm) - Importiere Video (.webm) + + No description... + Leine Beschreibung... - - GIF Wallpaper - + + Click here if you like the content + Klicke hier wenn du den Inhalt magst - - QML Wallpaper - + + Click here if you do not like the content + Klicke hier wenn du den Inhalt nicht magst - - HTML5 Wallpaper - + + Subscribtions: + Abonnements - - Website Wallpaper - + + Open In Steam + Öffne in Steam - - QML Widget - + + Subscribed! + Abonniert - - HTML Widget - + + 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 - - Loading - laden + + Loading + laden - - Download now! - Jetzt Downloaden! + + Download now! + Jetzt Downloaden! - - Downloading... - Am Herunterladen... + + Downloading... + Am Herunterladen... - - Details - + + Details + Details - - Open In Steam - Öffne in Steam + + Open In Steam + Öffne in Steam - - Profile - Profil + + Profile + Profil - - 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 - - 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 - - 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 - - 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 - + + Remote File Conflict + Remote File Conflict - - 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 - + + Bad Response + Bad Response - - 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 Login Denied Throttle + Account Login Denied Throttle - - 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: - - 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 - + From f50b5eff76a32115bc0aa6ff2a004c3aa0dbc482 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:15:57 +0000 Subject: [PATCH 14/76] New translations ScreenPlay_.ts (Korean) --- ScreenPlay/translations/ScreenPlay_ko_KR.ts | 2739 +++++++++---------- 1 file changed, 1363 insertions(+), 1376 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_ko_KR.ts b/ScreenPlay/translations/ScreenPlay_ko_KR.ts index 135b4a3c..35e28ef5 100644 --- a/ScreenPlay/translations/ScreenPlay_ko_KR.ts +++ b/ScreenPlay/translations/ScreenPlay_ko_KR.ts @@ -1,2268 +1,2255 @@ - - + + ColorPicker - - Red - + + Red + Red - - Green - + + Green + Green - - Blue - + + Blue + Blue - - RGB - + + RGB + RGB - - HSV - + + HSV + HSV - - R: - + + R: + R: - - G: - + + G: + G: - - B: - + + B: + B: - - H: - + + H: + H: - - S: - + + S: + S: - - V: - + + V: + V: - - Alpha: - + + Alpha: + Alpha: - - # - + + # + # - - + + Community - - News - + + News + News - - Wiki - + + Wiki + Wiki - - Forum - + + Forum + Forum - - Issue List - + + Issue List + Issue List - - Contribute - + + Contribute + Contribute - - Steam Workshop - + + Steam Workshop + Steam Workshop - - + + CommunityNavItem - - Open in browser - + + Open in browser + Open in browser - - - CreateImport - - - - - - - - CreateUpload - - - - - - - + + CreateWallpaperInit - - 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: + +*.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: - - 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 - - Select file - + + Select file + Select file - - + + CreateWallpaperResult - - An error occurred! - + + An error occurred! + An error occurred! - - 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! - - + + CreateWallpaperVideoImportConvert - - - + + + - - Generating preview image... - + + Generating preview image... + Generating preview 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 preview gif... - + + Generating preview gif... + Generating preview gif... - - 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 ERROR! - + + Converting Video ERROR! + Converting 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 - - Generating preview video... - + + Generating preview video... + Generating preview video... - - Name (required!) - + + Name (required!) + Name (required!) - - Description - + + Description + Description - - Youtube URL - + + Youtube URL + Youtube URL - - Abort - + + Abort + Abort - - Save - + + Save + Save - - Save Wallpaper... - + + Save Wallpaper... + Save Wallpaper... - - + + DefaultVideoControls - - Volume - + + Volume + Volume - - Playback rate - + + Playback rate + Playback rate - - Current Video Time - + + Current Video Time + Current Video Time - - Fill Mode - + + Fill Mode + Fill Mode - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale_Down - + + Scale_Down + Scale_Down - - + + FileSelector - - Clear - + + Clear + Clear - - Select File - + + Select File + Select File - - Please choose a file - + + Please choose a file + Please choose a file - - + + GifWallpaper - - 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. - - Select your gif - + + Select your gif + Select your gif - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Tags - + + Tags + Tags - - + + HTMLWallpaper - - Create a HTML Wallpaper - + + Create a HTML Wallpaper + Create a HTML Wallpaper - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - License & Tags - + + License & Tags + License & Tags - - Preview Image - + + Preview Image + Preview Image - - + + HTMLWidget - - Create a HTML widget - + + Create a HTML widget + Create a HTML widget - - General - + + General + General - - Widget name - + + Widget name + Widget name - - Created by - + + Created by + Created by - - Tags - + + Tags + Tags - - + + Headline - - Headline - + + Headline + Headline - - + + HeadlineSection - - Headline Section - + + Headline Section + Headline Section - - + + ImageSelector - - Set your own preview image - + + Set your own preview image + Set your own preview image - - Clear - + + Clear + Clear - - Select Preview Image - + + Select Preview Image + Select Preview Image - - + + ImportWebmConvert - - - + + + - - AnalyseVideo... - + + AnalyseVideo... + AnalyseVideo... - - Generating preview image... - + + Generating preview image... + Generating preview 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 preview gif... - + + Generating preview gif... + Generating preview gif... - - 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 ERROR! - + + Converting Video ERROR! + Converting 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 - - Generating preview video... - + + Generating preview video... + Generating preview video... - - Name (required!) - + + Name (required!) + Name (required!) - - Description - + + Description + Description - - Youtube URL - + + Youtube URL + Youtube URL - - Abort - + + Abort + Abort - - Save - + + Save + Save - - Save Wallpaper... - + + Save Wallpaper... + Save Wallpaper... - - + + ImportWebmInit - - 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! - - 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. - - Open Documentation - + + Open Documentation + Open Documentation - - Select file - + + Select file + Select file - - + + Installed - - - + + + - - Refreshing! - + + Refreshing! + Refreshing! - - - 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! - - Open containing folder - + + Open containing folder + Open containing folder - - Remove Item - + + Remove Item + Remove Item - - Remove via Workshop - + + Remove via Workshop + Remove via Workshop - - 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? - - + + 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 - - Browse the Steam Workshop - + + Browse the Steam Workshop + Browse the Steam Workshop - - + + LicenseSelector - - 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. - - - 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 linking. - - 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 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. - - + + MonitorConfiguration - - Your monitor setup changed! + + Your monitor setup changed! Please configure your wallpaper again. - + Your monitor setup changed! + Please configure your wallpaper again. - - + + Monitors - - Wallpaper Configuration - + + Wallpaper Configuration + Wallpaper Configuration - - Remove selected - + + Remove selected + Remove selected - - - Remove - + + + Remove + Remove - - Wallpapers - + + Wallpapers + Wallpapers - - Widgets - + + Widgets + Widgets - - + + MonitorsProjectSettingItem - - Set color - + + Set color + Set color - - Please choose a color - + + Please choose a color + Please choose a color - - + + Navigation - - All - + + All + All - - Scenes - + + Scenes + Scenes - - Videos - + + Videos + Videos - - Widgets - + + Widgets + Widgets - - Install Date Ascending - + + Install Date Ascending + Install Date Ascending - - Install Date Descending - + + Install Date Descending + Install Date Descending - - Subscribed items: - + + Subscribed items: + Subscribed items: - - Upload to the Steam Workshop - + + Upload to the Steam Workshop + Upload to the Steam Workshop - - + + NavigationWallpaperConfiguration - - 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 - - + + 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 - - 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 - - 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 - - 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 - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - License & Tags - + + License & Tags + License & Tags - - Preview Image - + + Preview Image + Preview Image - - + + QMLWidget - - Create a QML widget - + + Create a QML widget + Create a QML widget - - General - + + General + General - - Widget name - + + Widget name + Widget name - - Created by - + + Created by + Created by - - Tags - + + Tags + Tags - - + + SaveNotification - - Profile saved successfully! - + + Profile saved successfully! + Profile saved successfully! - - + + ScreenPlayItem - - NEW - + + NEW + NEW - - + + Search - - Search for Wallpaper & Widgets - + + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets - - + + Settings - - General - + + General + General - - 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. - - 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. - - 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! - - Set save location - + + Set save location + Set save location - - Set location - + + Set location + Set location - - 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! - - Language - + + Language + Language - - Set the ScreenPlay UI Language - + + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language - - English - + + English + English - - German - + + German + German - - Chinese - Simplified - + + Chinese - Simplified + Chinese - Simplified - - Russian - + + Russian + Russian - - French - + + French + French - - Spanish - + + Spanish + Spanish - - Korean - + + Korean + Korean - - Vietnamese - + + Vietnamese + Vietnamese - - Portuguese (Brazil) - + + Portuguese (Brazil) + Portuguese (Brazil) - - Theme - + + Theme + Theme - - Switch dark/light theme - + + Switch dark/light theme + Switch dark/light theme - - System Default - + + System Default + System Default - - Dark - + + Dark + Dark - - Light - + + Light + Light - - Performance - + + Performance + Performance - - Pause wallpaper video rendering while another app is in the foreground - + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - + + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - - Default Fill Mode - + + Default Fill Mode + Default Fill Mode - - Set this property to define how the video is scaled to fit the target area. - + + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale-Down - + + Scale-Down + Scale-Down - - About - + + About + About - - Thank you for using ScreenPlay - + + Thank you for using ScreenPlay + Thank you for using ScreenPlay - - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - - Version - + + Version + Version - - ScreenPlay Build Version - + + ScreenPlay Build Version + ScreenPlay Build Version - - Open Changelog - + + Open Changelog + Open Changelog - - Third Party Software - + + Third Party Software + Third Party Software - - ScreenPlay would not be possible without the work of others. A big thank you to: - + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - - Licenses - + + Licenses + Licenses - - Logs - + + Logs + Logs - - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - + + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - - Show Logs - + + Show Logs + Show Logs - - Data Protection - + + Data Protection + Data Protection - - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - + + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - - Privacy - + + Privacy + Privacy - - + + SettingsExpander - - Copy text to clipboard - + + Copy text to clipboard + Copy text to clipboard - - + + Sidebar - - 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 (.webm) - + + Video Import (.webm) + Video Import (.webm) - - GIF Wallpaper - + + GIF Wallpaper + GIF Wallpaper - - QML Wallpaper - + + QML Wallpaper + QML Wallpaper - - HTML5 Wallpaper - + + HTML5 Wallpaper + HTML5 Wallpaper - - Website Wallpaper - + + Website Wallpaper + Website Wallpaper - - QML Widget - + + QML Widget + QML Widget - - HTML Widget - + + HTML Widget + HTML Widget - - Set Wallpaper - + + Set Wallpaper + Set Wallpaper - - Set Widget - + + Set Widget + Set Widget - - Headline - + + Headline + Headline - - 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 - - Fill Mode - + + Fill Mode + Fill Mode - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale-Down - + + Scale-Down + Scale-Down - - Size: - + + Size: + Size: - - MB - + + MB + MB - - 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 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: - - Open In Steam - + + Open In Steam + Open In Steam - - Subscribed! - + + Subscribed! + Subscribed! - - Subscribe - + + Subscribe + Subscribe - - + + StartInfo - - 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! - - + + SteamNotAvailable - - Could not load steam integration! - + + Could not load steam integration! + Could not load steam integration! - - + + SteamProfile - - - Back - + + + Back + Back - - Forward - + + Forward + Forward - - + + SteamWorkshop - - Loading - + + Loading + Loading - - Download now! - + + Download now! + Download now! - - Downloading... - + + Downloading... + Downloading... - - Details - + + Details + Details - - Open In Steam - + + Open In Steam + Open In Steam - - Profile - + + Profile + Profile - - Upload - + + Upload + Upload - - 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 - - Ranked By Vote - + + Ranked By Vote + Ranked By Vote - - Publication Date - + + Publication Date + Publication Date - - Ranked By Trend - + + Ranked By Trend + Ranked By Trend - - Favorited By Friends - + + Favorited By Friends + Favorited By Friends - - Created By Friends - + + Created By Friends + Created By Friends - - Created By Followed Users - + + Created By Followed Users + Created By Followed Users - - Not Yet Rated - + + Not Yet Rated + Not Yet Rated - - Total VotesAsc - + + Total VotesAsc + Total VotesAsc - - Votes Up - + + Votes Up + Votes Up - - Total Unique Subscriptions - + + Total Unique Subscriptions + Total Unique Subscriptions - - Back - + + Back + Back - - Forward - + + Forward + Forward - - + + TagSelector - - Save - + + Save + Save - - Add tag - + + Add tag + Add tag - - Cancel - + + Cancel + Cancel - - Add Tag - + + Add Tag + Add Tag - - + + TextField - - Label - + + Label + Label - - *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. - - Open ScreenPlay - + + Open ScreenPlay + Open ScreenPlay - - - Mute all - + + + Mute all + Mute all - - Unmute all - + + Unmute all + Unmute all - - - Pause all - + + + Pause all + Pause all - - Play all - + + Play all + Play all - - Quit - + + Quit + Quit - - + + UploadProject - - Upload Wallpaper/Widgets to Steam - + + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - - Abort - + + Abort + Abort - - Upload Selected Projects - + + Upload Selected Projects + Upload Selected Projects - - Finish - + + Finish + Finish - - + + UploadProjectBigItem - - Type: - + + Type: + Type: - - Open Folder - + + Open Folder + Open Folder - - Invalid Project! - + + Invalid Project! + Invalid Project! - - + + UploadProjectItem - - Fail - + + Fail + Fail - - No Connection - + + No Connection + No Connection - - Invalid Password - + + Invalid Password + Invalid Password - - Logged In Elsewhere - + + Logged In Elsewhere + Logged In Elsewhere - - Invalid Protocol Version - + + Invalid Protocol Version + Invalid Protocol Version - - Invalid Param - + + Invalid Param + Invalid Param - - File Not Found - + + File Not Found + File Not Found - - Busy - + + Busy + Busy - - Invalid State - + + Invalid State + Invalid State - - Invalid Name - + + Invalid Name + Invalid Name - - Invalid Email - + + Invalid Email + Invalid Email - - Duplicate Name - + + Duplicate Name + Duplicate Name - - Access Denied - + + Access Denied + Access Denied - - Timeout - + + Timeout + Timeout - - Banned - + + Banned + Banned - - Account Not Found - + + Account Not Found + Account Not Found - - Invalid SteamID - + + Invalid SteamID + Invalid SteamID - - Service Unavailable - + + Service Unavailable + Service Unavailable - - Not Logged On - + + Not Logged On + Not Logged On - - Pending - + + Pending + Pending - - Encryption Failure - + + Encryption Failure + Encryption Failure - - Insufficient Privilege - + + Insufficient Privilege + Insufficient Privilege - - Limit Exceeded - + + Limit Exceeded + Limit Exceeded - - Revoked - + + Revoked + Revoked - - Expired - + + Expired + Expired - - Already Redeemed - + + Already Redeemed + Already Redeemed - - Duplicate Request - + + Duplicate Request + Duplicate Request - - Already Owned - + + Already Owned + Already Owned - - IP Not Found - + + IP Not Found + IP Not Found - - Persist Failed - + + Persist Failed + Persist Failed - - Locking Failed - + + Locking Failed + Locking Failed - - Logon Session Replaced - + + Logon Session Replaced + Logon Session Replaced - - Connect Failed - + + Connect Failed + Connect Failed - - Handshake Failed - + + Handshake Failed + Handshake Failed - - IO Failure - + + IO Failure + IO Failure - - Remote Disconnect - + + Remote Disconnect + Remote Disconnect - - Shopping Cart Not Found - + + Shopping Cart Not Found + Shopping Cart Not Found - - Blocked - + + Blocked + Blocked - - Ignored - + + Ignored + Ignored - - No Match - + + No Match + No Match - - Account Disabled - + + Account Disabled + Account Disabled - - Service ReadOnly - + + Service ReadOnly + Service ReadOnly - - Account Not Featured - + + Account Not Featured + Account Not Featured - - Administrator OK - + + Administrator OK + Administrator OK - - Content Version - + + Content Version + Content Version - - Try Another CM - + + Try Another CM + Try Another CM - - 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 - - Suspended - + + Suspended + Suspended - - Cancelled - + + Cancelled + Cancelled - - Data Corruption - + + Data Corruption + Data Corruption - - Disk Full - + + Disk Full + Disk Full - - Remote Call Failed - + + Remote Call Failed + Remote Call Failed - - Password Unset - + + Password Unset + Password Unset - - External Account Unlinked - + + External Account Unlinked + External Account Unlinked - - PSN Ticket Invalid - + + PSN Ticket Invalid + PSN Ticket Invalid - - External Account Already Linked - + + External Account Already Linked + External Account Already Linked - - Remote File Conflict - + + Remote File Conflict + Remote File Conflict - - Illegal Password - + + Illegal Password + Illegal Password - - Same As Previous Value - + + Same As Previous Value + Same As Previous Value - - Account Logon Denied - + + Account Logon Denied + Account Logon Denied - - Cannot Use Old Password - + + Cannot Use Old Password + Cannot Use Old Password - - Invalid Login AuthCode - + + Invalid Login AuthCode + Invalid Login AuthCode - - 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 - - IPT Init Error - + + IPT Init Error + IPT Init Error - - Parental Control Restricted - + + Parental Control Restricted + Parental Control Restricted - - Facebook Query Error - + + Facebook Query Error + Facebook Query Error - - Expired Login Auth Code - + + Expired Login Auth Code + Expired Login Auth Code - - IP Login Restriction Failed - + + IP Login Restriction Failed + IP Login Restriction Failed - - 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 - - No MatchingURL - + + No MatchingURL + No MatchingURL - - Bad Response - + + Bad Response + Bad Response - - Require Password ReEntry - + + Require Password ReEntry + Require Password ReEntry - - Value Out Of Range - + + Value Out Of Range + Value Out Of Range - - Unexpecte Error - + + Unexpecte Error + Unexpecte Error - - Disabled - + + Disabled + Disabled - - Invalid CEG Submission - + + Invalid CEG Submission + Invalid CEG Submission - - Restricted Device - + + Restricted Device + Restricted Device - - Region Locked - + + Region Locked + Region Locked - - 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 - - Item Deleted - + + Item Deleted + Item Deleted - - 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 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 - - Not Modified - + + Not Modified + Not Modified - - No Mobile Device - + + No Mobile Device + No Mobile Device - - Time Not Synced - + + Time Not Synced + Time Not Synced - - Sms Code Failed - + + Sms Code Failed + Sms Code Failed - - Account Limit Exceeded - + + Account Limit Exceeded + Account 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 - - Refund To Wallet - + + Refund To Wallet + Refund To Wallet - - Email Send Failure - + + Email Send Failure + Email Send Failure - - Not Settled - + + Not Settled + Not Settled - - Need Captcha - + + Need Captcha + Need Captcha - - GSLT Denied - + + GSLT Denied + GSLT Denied - - GS Owner Denied - + + GS Owner Denied + GS Owner Denied - - Invalid Item Type - + + Invalid Item Type + Invalid Item Type - - IP Banned - + + IP Banned + IP Banned - - GSLT Expired - + + GSLT Expired + GSLT Expired - - Insufficient Funds - + + Insufficient Funds + Insufficient Funds - - Too Many Pending - + + Too Many Pending + Too Many Pending - - No Site Licenses Found - + + No Site Licenses Found + No Site Licenses Found - - WG Network Send Exceeded - + + WG Network Send Exceeded + WG Network Send Exceeded - - Account Not Friends - + + Account Not Friends + Account Not Friends - - Limited User Account - + + Limited User Account + Limited User Account - - Cant Remove Item - + + Cant Remove Item + Cant Remove Item - - Account Deleted - + + Account Deleted + Account Deleted - - Existing User Cancelled License - + + Existing User Cancelled License + Existing User Cancelled License - - Community Cooldown - + + Community Cooldown + Community Cooldown - - Status: - + + Status: + Status: - - Upload Progress: - + + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - - Create a Website Wallpaper - + + Create a Website Wallpaper + Create a Website Wallpaper - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - Tags - + + Tags + Tags - - Preview Image - + + Preview Image + Preview Image - - + + WizardPage - - Save - + + Save + Save - - Saving... - + + Saving... + Saving... - - + + WorkshopItem - - Successfully subscribed to Workshop Item! - + + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - - Download complete! - + + Download complete! + Download complete! - - + + XMLNewsfeed - - News & Patchnotes - + + News & Patchnotes + News & Patchnotes - + From a7ea51e758578eda80551dd346414d81730fb477 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:15:58 +0000 Subject: [PATCH 15/76] New translations ScreenPlay_.ts (Russian) --- ScreenPlay/translations/ScreenPlay_ru_RU.ts | 2739 +++++++++---------- 1 file changed, 1363 insertions(+), 1376 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_ru_RU.ts b/ScreenPlay/translations/ScreenPlay_ru_RU.ts index cee143d7..0f0b599b 100644 --- a/ScreenPlay/translations/ScreenPlay_ru_RU.ts +++ b/ScreenPlay/translations/ScreenPlay_ru_RU.ts @@ -1,2268 +1,2255 @@ - - + + ColorPicker - - Red - + + Red + Red - - Green - + + Green + Green - - Blue - + + Blue + Blue - - RGB - + + RGB + RGB - - HSV - + + HSV + HSV - - R: - + + R: + R: - - G: - + + G: + G: - - B: - + + B: + B: - - H: - + + H: + H: - - S: - + + S: + S: - - V: - + + V: + V: - - Alpha: - + + Alpha: + Alpha: - - # - + + # + # - - + + Community - - News - + + News + News - - Wiki - + + Wiki + Wiki - - Forum - + + Forum + Forum - - Issue List - + + Issue List + Issue List - - Contribute - + + Contribute + Contribute - - Steam Workshop - + + Steam Workshop + Steam Workshop - - + + CommunityNavItem - - Open in browser - + + Open in browser + Open in browser - - - CreateImport - - - - - - - - CreateUpload - - - - - - - + + CreateWallpaperInit - - 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: + +*.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: - - 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 - - Select file - + + Select file + Select file - - + + CreateWallpaperResult - - An error occurred! - + + An error occurred! + An error occurred! - - 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! - - + + CreateWallpaperVideoImportConvert - - - + + + - - Generating preview image... - + + Generating preview image... + Generating preview 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 preview gif... - + + Generating preview gif... + Generating preview gif... - - 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 ERROR! - + + Converting Video ERROR! + Converting 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 - - Generating preview video... - + + Generating preview video... + Generating preview video... - - Name (required!) - + + Name (required!) + Name (required!) - - Description - + + Description + Description - - Youtube URL - + + Youtube URL + Youtube URL - - Abort - + + Abort + Abort - - Save - + + Save + Save - - Save Wallpaper... - + + Save Wallpaper... + Save Wallpaper... - - + + DefaultVideoControls - - Volume - + + Volume + Volume - - Playback rate - + + Playback rate + Playback rate - - Current Video Time - + + Current Video Time + Current Video Time - - Fill Mode - + + Fill Mode + Fill Mode - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale_Down - + + Scale_Down + Scale_Down - - + + FileSelector - - Clear - + + Clear + Clear - - Select File - + + Select File + Select File - - Please choose a file - + + Please choose a file + Please choose a file - - + + GifWallpaper - - 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. - - Select your gif - + + Select your gif + Select your gif - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Tags - + + Tags + Tags - - + + HTMLWallpaper - - Create a HTML Wallpaper - + + Create a HTML Wallpaper + Create a HTML Wallpaper - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - License & Tags - + + License & Tags + License & Tags - - Preview Image - + + Preview Image + Preview Image - - + + HTMLWidget - - Create a HTML widget - + + Create a HTML widget + Create a HTML widget - - General - + + General + General - - Widget name - + + Widget name + Widget name - - Created by - + + Created by + Created by - - Tags - + + Tags + Tags - - + + Headline - - Headline - + + Headline + Headline - - + + HeadlineSection - - Headline Section - + + Headline Section + Headline Section - - + + ImageSelector - - Set your own preview image - + + Set your own preview image + Set your own preview image - - Clear - + + Clear + Clear - - Select Preview Image - + + Select Preview Image + Select Preview Image - - + + ImportWebmConvert - - - + + + - - AnalyseVideo... - + + AnalyseVideo... + AnalyseVideo... - - Generating preview image... - + + Generating preview image... + Generating preview 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 preview gif... - + + Generating preview gif... + Generating preview gif... - - 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 ERROR! - + + Converting Video ERROR! + Converting 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 - - Generating preview video... - + + Generating preview video... + Generating preview video... - - Name (required!) - + + Name (required!) + Name (required!) - - Description - + + Description + Description - - Youtube URL - + + Youtube URL + Youtube URL - - Abort - + + Abort + Abort - - Save - + + Save + Save - - Save Wallpaper... - + + Save Wallpaper... + Save Wallpaper... - - + + ImportWebmInit - - 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! - - 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. - - Open Documentation - + + Open Documentation + Open Documentation - - Select file - + + Select file + Select file - - + + Installed - - - + + + - - Refreshing! - + + Refreshing! + Refreshing! - - - 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! - - Open containing folder - + + Open containing folder + Open containing folder - - Remove Item - + + Remove Item + Remove Item - - Remove via Workshop - + + Remove via Workshop + Remove via Workshop - - 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? - - + + 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 - - Browse the Steam Workshop - + + Browse the Steam Workshop + Browse the Steam Workshop - - + + LicenseSelector - - 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. - - - 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 linking. - - 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 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. - - + + MonitorConfiguration - - Your monitor setup changed! + + Your monitor setup changed! Please configure your wallpaper again. - + Your monitor setup changed! + Please configure your wallpaper again. - - + + Monitors - - Wallpaper Configuration - + + Wallpaper Configuration + Wallpaper Configuration - - Remove selected - + + Remove selected + Remove selected - - - Remove - + + + Remove + Remove - - Wallpapers - + + Wallpapers + Wallpapers - - Widgets - + + Widgets + Widgets - - + + MonitorsProjectSettingItem - - Set color - + + Set color + Set color - - Please choose a color - + + Please choose a color + Please choose a color - - + + Navigation - - All - + + All + All - - Scenes - + + Scenes + Scenes - - Videos - + + Videos + Videos - - Widgets - + + Widgets + Widgets - - Install Date Ascending - + + Install Date Ascending + Install Date Ascending - - Install Date Descending - + + Install Date Descending + Install Date Descending - - Subscribed items: - + + Subscribed items: + Subscribed items: - - Upload to the Steam Workshop - + + Upload to the Steam Workshop + Upload to the Steam Workshop - - + + NavigationWallpaperConfiguration - - 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 - - + + 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 - - 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 - - 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 - - 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 - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - License & Tags - + + License & Tags + License & Tags - - Preview Image - + + Preview Image + Preview Image - - + + QMLWidget - - Create a QML widget - + + Create a QML widget + Create a QML widget - - General - + + General + General - - Widget name - + + Widget name + Widget name - - Created by - + + Created by + Created by - - Tags - + + Tags + Tags - - + + SaveNotification - - Profile saved successfully! - + + Profile saved successfully! + Profile saved successfully! - - + + ScreenPlayItem - - NEW - + + NEW + NEW - - + + Search - - Search for Wallpaper & Widgets - + + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets - - + + Settings - - General - + + General + General - - 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. - - 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. - - 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! - - Set save location - + + Set save location + Set save location - - Set location - + + Set location + Set location - - 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! - - Language - + + Language + Language - - Set the ScreenPlay UI Language - + + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language - - English - + + English + English - - German - + + German + German - - Chinese - Simplified - + + Chinese - Simplified + Chinese - Simplified - - Russian - + + Russian + Russian - - French - + + French + French - - Spanish - + + Spanish + Spanish - - Korean - + + Korean + Korean - - Vietnamese - + + Vietnamese + Vietnamese - - Portuguese (Brazil) - + + Portuguese (Brazil) + Portuguese (Brazil) - - Theme - + + Theme + Theme - - Switch dark/light theme - + + Switch dark/light theme + Switch dark/light theme - - System Default - + + System Default + System Default - - Dark - + + Dark + Dark - - Light - + + Light + Light - - Performance - + + Performance + Performance - - Pause wallpaper video rendering while another app is in the foreground - + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground - - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - + + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - - Default Fill Mode - + + Default Fill Mode + Default Fill Mode - - Set this property to define how the video is scaled to fit the target area. - + + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale-Down - + + Scale-Down + Scale-Down - - About - + + About + About - - Thank you for using ScreenPlay - + + Thank you for using ScreenPlay + Thank you for using ScreenPlay - - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - - Version - + + Version + Version - - ScreenPlay Build Version - + + ScreenPlay Build Version + ScreenPlay Build Version - - Open Changelog - + + Open Changelog + Open Changelog - - Third Party Software - + + Third Party Software + Third Party Software - - ScreenPlay would not be possible without the work of others. A big thank you to: - + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay would not be possible without the work of others. A big thank you to: - - Licenses - + + Licenses + Licenses - - Logs - + + Logs + Logs - - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - + + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - - Show Logs - + + Show Logs + Show Logs - - Data Protection - + + Data Protection + Data Protection - - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - + + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - - Privacy - + + Privacy + Privacy - - + + SettingsExpander - - Copy text to clipboard - + + Copy text to clipboard + Copy text to clipboard - - + + Sidebar - - 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 (.webm) - + + Video Import (.webm) + Video Import (.webm) - - GIF Wallpaper - + + GIF Wallpaper + GIF Wallpaper - - QML Wallpaper - + + QML Wallpaper + QML Wallpaper - - HTML5 Wallpaper - + + HTML5 Wallpaper + HTML5 Wallpaper - - Website Wallpaper - + + Website Wallpaper + Website Wallpaper - - QML Widget - + + QML Widget + QML Widget - - HTML Widget - + + HTML Widget + HTML Widget - - Set Wallpaper - + + Set Wallpaper + Set Wallpaper - - Set Widget - + + Set Widget + Set Widget - - Headline - + + Headline + Headline - - 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 - - Fill Mode - + + Fill Mode + Fill Mode - - Stretch - + + Stretch + Stretch - - Fill - + + Fill + Fill - - Contain - + + Contain + Contain - - Cover - + + Cover + Cover - - Scale-Down - + + Scale-Down + Scale-Down - - Size: - + + Size: + Size: - - MB - + + MB + MB - - 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 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: - - Open In Steam - + + Open In Steam + Open In Steam - - Subscribed! - + + Subscribed! + Subscribed! - - Subscribe - + + Subscribe + Subscribe - - + + StartInfo - - 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! - - + + SteamNotAvailable - - Could not load steam integration! - + + Could not load steam integration! + Could not load steam integration! - - + + SteamProfile - - - Back - + + + Back + Back - - Forward - + + Forward + Forward - - + + SteamWorkshop - - Loading - + + Loading + Loading - - Download now! - + + Download now! + Download now! - - Downloading... - + + Downloading... + Downloading... - - Details - + + Details + Details - - Open In Steam - + + Open In Steam + Open In Steam - - Profile - + + Profile + Profile - - Upload - + + Upload + Upload - - 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 - - Ranked By Vote - + + Ranked By Vote + Ranked By Vote - - Publication Date - + + Publication Date + Publication Date - - Ranked By Trend - + + Ranked By Trend + Ranked By Trend - - Favorited By Friends - + + Favorited By Friends + Favorited By Friends - - Created By Friends - + + Created By Friends + Created By Friends - - Created By Followed Users - + + Created By Followed Users + Created By Followed Users - - Not Yet Rated - + + Not Yet Rated + Not Yet Rated - - Total VotesAsc - + + Total VotesAsc + Total VotesAsc - - Votes Up - + + Votes Up + Votes Up - - Total Unique Subscriptions - + + Total Unique Subscriptions + Total Unique Subscriptions - - Back - + + Back + Back - - Forward - + + Forward + Forward - - + + TagSelector - - Save - + + Save + Save - - Add tag - + + Add tag + Add tag - - Cancel - + + Cancel + Cancel - - Add Tag - + + Add Tag + Add Tag - - + + TextField - - Label - + + Label + Label - - *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. - - Open ScreenPlay - + + Open ScreenPlay + Open ScreenPlay - - - Mute all - + + + Mute all + Mute all - - Unmute all - + + Unmute all + Unmute all - - - Pause all - + + + Pause all + Pause all - - Play all - + + Play all + Play all - - Quit - + + Quit + Quit - - + + UploadProject - - Upload Wallpaper/Widgets to Steam - + + Upload Wallpaper/Widgets to Steam + Upload Wallpaper/Widgets to Steam - - Abort - + + Abort + Abort - - Upload Selected Projects - + + Upload Selected Projects + Upload Selected Projects - - Finish - + + Finish + Finish - - + + UploadProjectBigItem - - Type: - + + Type: + Type: - - Open Folder - + + Open Folder + Open Folder - - Invalid Project! - + + Invalid Project! + Invalid Project! - - + + UploadProjectItem - - Fail - + + Fail + Fail - - No Connection - + + No Connection + No Connection - - Invalid Password - + + Invalid Password + Invalid Password - - Logged In Elsewhere - + + Logged In Elsewhere + Logged In Elsewhere - - Invalid Protocol Version - + + Invalid Protocol Version + Invalid Protocol Version - - Invalid Param - + + Invalid Param + Invalid Param - - File Not Found - + + File Not Found + File Not Found - - Busy - + + Busy + Busy - - Invalid State - + + Invalid State + Invalid State - - Invalid Name - + + Invalid Name + Invalid Name - - Invalid Email - + + Invalid Email + Invalid Email - - Duplicate Name - + + Duplicate Name + Duplicate Name - - Access Denied - + + Access Denied + Access Denied - - Timeout - + + Timeout + Timeout - - Banned - + + Banned + Banned - - Account Not Found - + + Account Not Found + Account Not Found - - Invalid SteamID - + + Invalid SteamID + Invalid SteamID - - Service Unavailable - + + Service Unavailable + Service Unavailable - - Not Logged On - + + Not Logged On + Not Logged On - - Pending - + + Pending + Pending - - Encryption Failure - + + Encryption Failure + Encryption Failure - - Insufficient Privilege - + + Insufficient Privilege + Insufficient Privilege - - Limit Exceeded - + + Limit Exceeded + Limit Exceeded - - Revoked - + + Revoked + Revoked - - Expired - + + Expired + Expired - - Already Redeemed - + + Already Redeemed + Already Redeemed - - Duplicate Request - + + Duplicate Request + Duplicate Request - - Already Owned - + + Already Owned + Already Owned - - IP Not Found - + + IP Not Found + IP Not Found - - Persist Failed - + + Persist Failed + Persist Failed - - Locking Failed - + + Locking Failed + Locking Failed - - Logon Session Replaced - + + Logon Session Replaced + Logon Session Replaced - - Connect Failed - + + Connect Failed + Connect Failed - - Handshake Failed - + + Handshake Failed + Handshake Failed - - IO Failure - + + IO Failure + IO Failure - - Remote Disconnect - + + Remote Disconnect + Remote Disconnect - - Shopping Cart Not Found - + + Shopping Cart Not Found + Shopping Cart Not Found - - Blocked - + + Blocked + Blocked - - Ignored - + + Ignored + Ignored - - No Match - + + No Match + No Match - - Account Disabled - + + Account Disabled + Account Disabled - - Service ReadOnly - + + Service ReadOnly + Service ReadOnly - - Account Not Featured - + + Account Not Featured + Account Not Featured - - Administrator OK - + + Administrator OK + Administrator OK - - Content Version - + + Content Version + Content Version - - Try Another CM - + + Try Another CM + Try Another CM - - 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 - - Suspended - + + Suspended + Suspended - - Cancelled - + + Cancelled + Cancelled - - Data Corruption - + + Data Corruption + Data Corruption - - Disk Full - + + Disk Full + Disk Full - - Remote Call Failed - + + Remote Call Failed + Remote Call Failed - - Password Unset - + + Password Unset + Password Unset - - External Account Unlinked - + + External Account Unlinked + External Account Unlinked - - PSN Ticket Invalid - + + PSN Ticket Invalid + PSN Ticket Invalid - - External Account Already Linked - + + External Account Already Linked + External Account Already Linked - - Remote File Conflict - + + Remote File Conflict + Remote File Conflict - - Illegal Password - + + Illegal Password + Illegal Password - - Same As Previous Value - + + Same As Previous Value + Same As Previous Value - - Account Logon Denied - + + Account Logon Denied + Account Logon Denied - - Cannot Use Old Password - + + Cannot Use Old Password + Cannot Use Old Password - - Invalid Login AuthCode - + + Invalid Login AuthCode + Invalid Login AuthCode - - 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 - - IPT Init Error - + + IPT Init Error + IPT Init Error - - Parental Control Restricted - + + Parental Control Restricted + Parental Control Restricted - - Facebook Query Error - + + Facebook Query Error + Facebook Query Error - - Expired Login Auth Code - + + Expired Login Auth Code + Expired Login Auth Code - - IP Login Restriction Failed - + + IP Login Restriction Failed + IP Login Restriction Failed - - 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 - - No MatchingURL - + + No MatchingURL + No MatchingURL - - Bad Response - + + Bad Response + Bad Response - - Require Password ReEntry - + + Require Password ReEntry + Require Password ReEntry - - Value Out Of Range - + + Value Out Of Range + Value Out Of Range - - Unexpecte Error - + + Unexpecte Error + Unexpecte Error - - Disabled - + + Disabled + Disabled - - Invalid CEG Submission - + + Invalid CEG Submission + Invalid CEG Submission - - Restricted Device - + + Restricted Device + Restricted Device - - Region Locked - + + Region Locked + Region Locked - - 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 - - Item Deleted - + + Item Deleted + Item Deleted - - 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 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 - - Not Modified - + + Not Modified + Not Modified - - No Mobile Device - + + No Mobile Device + No Mobile Device - - Time Not Synced - + + Time Not Synced + Time Not Synced - - Sms Code Failed - + + Sms Code Failed + Sms Code Failed - - Account Limit Exceeded - + + Account Limit Exceeded + Account 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 - - Refund To Wallet - + + Refund To Wallet + Refund To Wallet - - Email Send Failure - + + Email Send Failure + Email Send Failure - - Not Settled - + + Not Settled + Not Settled - - Need Captcha - + + Need Captcha + Need Captcha - - GSLT Denied - + + GSLT Denied + GSLT Denied - - GS Owner Denied - + + GS Owner Denied + GS Owner Denied - - Invalid Item Type - + + Invalid Item Type + Invalid Item Type - - IP Banned - + + IP Banned + IP Banned - - GSLT Expired - + + GSLT Expired + GSLT Expired - - Insufficient Funds - + + Insufficient Funds + Insufficient Funds - - Too Many Pending - + + Too Many Pending + Too Many Pending - - No Site Licenses Found - + + No Site Licenses Found + No Site Licenses Found - - WG Network Send Exceeded - + + WG Network Send Exceeded + WG Network Send Exceeded - - Account Not Friends - + + Account Not Friends + Account Not Friends - - Limited User Account - + + Limited User Account + Limited User Account - - Cant Remove Item - + + Cant Remove Item + Cant Remove Item - - Account Deleted - + + Account Deleted + Account Deleted - - Existing User Cancelled License - + + Existing User Cancelled License + Existing User Cancelled License - - Community Cooldown - + + Community Cooldown + Community Cooldown - - Status: - + + Status: + Status: - - Upload Progress: - + + Upload Progress: + Upload Progress: - - + + WebsiteWallpaper - - Create a Website Wallpaper - + + Create a Website Wallpaper + Create a Website Wallpaper - - General - + + General + General - - Wallpaper name - + + Wallpaper name + Wallpaper name - - Created By - + + Created By + Created By - - Description - + + Description + Description - - Tags - + + Tags + Tags - - Preview Image - + + Preview Image + Preview Image - - + + WizardPage - - Save - + + Save + Save - - Saving... - + + Saving... + Saving... - - + + WorkshopItem - - Successfully subscribed to Workshop Item! - + + Successfully subscribed to Workshop Item! + Successfully subscribed to Workshop Item! - - Download complete! - + + Download complete! + Download complete! - - + + XMLNewsfeed - - News & Patchnotes - + + News & Patchnotes + News & Patchnotes - + From c1b2ab002be39ea91e37418714d3a351da26a4d9 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:15:59 +0000 Subject: [PATCH 16/76] New translations ScreenPlay_.ts (Chinese Simplified) --- ScreenPlay/translations/ScreenPlay_zh_CN.ts | 2255 +++++++++++++++++++ 1 file changed, 2255 insertions(+) create mode 100644 ScreenPlay/translations/ScreenPlay_zh_CN.ts diff --git a/ScreenPlay/translations/ScreenPlay_zh_CN.ts b/ScreenPlay/translations/ScreenPlay_zh_CN.ts new file mode 100644 index 00000000..abeafb94 --- /dev/null +++ b/ScreenPlay/translations/ScreenPlay_zh_CN.ts @@ -0,0 +1,2255 @@ + + + + + ColorPicker + + + Red + Red + + + + Green + Green + + + + Blue + Blue + + + + RGB + RGB + + + + HSV + HSV + + + + R: + R: + + + + G: + G: + + + + B: + B: + + + + H: + H: + + + + S: + S: + + + + V: + V: + + + + Alpha: + Alpha: + + + + # + # + + + + Community + + + News + News + + + + Wiki + Wiki + + + + Forum + Forum + + + + Issue List + Issue List + + + + Contribute + Contribute + + + + Steam Workshop + Steam Workshop + + + + 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: + +*.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: + +*.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... + Generating 5 second preview video... + + + + Generating preview gif... + Generating preview 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 + + + + 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 + + + + GifWallpaper + + + 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. + + + + Select your gif + Select your gif + + + + General + General + + + + Wallpaper name + Wallpaper name + + + + Created By + Created By + + + + Tags + Tags + + + + HTMLWallpaper + + + Create a HTML Wallpaper + Create a HTML Wallpaper + + + + 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 + Create a HTML widget + + + + General + General + + + + Widget name + Widget name + + + + Created by + Created by + + + + Tags + Tags + + + + Headline + + + 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... + Generating 5 second preview video... + + + + Generating preview gif... + Generating preview 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 URL + + + + Abort + Abort + + + + Save + Save + + + + Save Wallpaper... + Save Wallpaper... + + + + ImportWebmInit + + + 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! + + + + 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. + + + + 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 linking. + + + + 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! + 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. + + + + MonitorConfiguration + + + Your monitor setup changed! + Please configure your wallpaper again. + 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 + + + + 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 + + + + Back + Back + + + + PopupSteamWorkshopAgreement + + + 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. + + + + View The Steam Subscriber Agreement + View The Steam Subscriber Agreement + + + + Accept Steam Workshop Agreement + Accept Steam Workshop Agreement + + + + QMLWallpaper + + + Create a QML Wallpaper + Create a QML Wallpaper + + + + 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 + Create a QML widget + + + + General + General + + + + Widget name + Widget name + + + + Created by + Created by + + + + Tags + Tags + + + + SaveNotification + + + Profile saved successfully! + Profile saved successfully! + + + + ScreenPlayItem + + + NEW + NEW + + + + Search + + + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets + + + + Settings + + + General + General + + + + Autostart + Autostart + + + + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + + + + 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. + + + + 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! + + + + 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! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + + + + Language + Language + + + + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language + + + + English + English + + + + German + German + + + + Chinese - Simplified + Chinese - Simplified + + + + Russian + Russian + + + + French + French + + + + Spanish + Spanish + + + + Korean + Korean + + + + Vietnamese + Vietnamese + + + + Portuguese (Brazil) + Portuguese (Brazil) + + + + Theme + Theme + + + + Switch dark/light theme + Switch dark/light theme + + + + System Default + System Default + + + + Dark + Dark + + + + Light + Light + + + + Performance + Performance + + + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground + + + + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + + + + Default Fill Mode + Default Fill Mode + + + + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. + + + + Stretch + Stretch + + + + Fill + Fill + + + + Contain + Contain + + + + Cover + Cover + + + + Scale-Down + Scale-Down + + + + About + About + + + + Thank you for using ScreenPlay + Thank you for using ScreenPlay + + + + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + + + + Version + Version + + + + ScreenPlay Build Version + ScreenPlay Build Version + + + + Open Changelog + Open Changelog + + + + Third Party Software + Third Party Software + + + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay 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 + + + + Sidebar + + + Tools Overview + Tools Overview + + + + Video import and convert (all types) + Video import and convert (all types) + + + + Video Import (.webm) + Video Import (.webm) + + + + GIF Wallpaper + GIF Wallpaper + + + + QML Wallpaper + QML Wallpaper + + + + HTML5 Wallpaper + HTML5 Wallpaper + + + + Website Wallpaper + Website Wallpaper + + + + QML Widget + QML Widget + + + + HTML Widget + HTML Widget + + + + 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 + Open In 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! + 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! + + + + SteamProfile + + + + Back + Back + + + + Forward + Forward + + + + SteamWorkshop + + + Loading + Loading + + + + Download now! + Download now! + + + + Downloading... + Downloading... + + + + Details + Details + + + + Open In Steam + Open In Steam + + + + Profile + Profile + + + + Upload + Upload + + + + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + + + + Open Workshop in Steam + Open Workshop in 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 - Double click to change you settings. + + + + Open ScreenPlay + Open 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 + Upload Wallpaper/Widgets to 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 + Invalid 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 Not Found + + + + 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 Ticket Invalid + + + + 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 Query Error + + + + Expired Login Auth Code + Expired Login Auth Code + + + + IP Login Restriction Failed + IP Login Restriction Failed + + + + 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 + Invalid CEG Submission + + + + 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 Banned + + + + 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 + + + From 8f74ace7deda131711fb59a4e6842e6f5118a610 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:16:01 +0000 Subject: [PATCH 17/76] New translations ScreenPlay_.ts (Vietnamese) --- ScreenPlay/translations/ScreenPlay_vi_VN.ts | 2734 +++++++++---------- 1 file changed, 1360 insertions(+), 1374 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_vi_VN.ts b/ScreenPlay/translations/ScreenPlay_vi_VN.ts index 26e9b636..e3d654e5 100644 --- a/ScreenPlay/translations/ScreenPlay_vi_VN.ts +++ b/ScreenPlay/translations/ScreenPlay_vi_VN.ts @@ -1,2269 +1,2255 @@ - - + + 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 - No exact translate for this because people call that too. - 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. - slider -> thanh trượt but it's long and complicated. - 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 - - + + 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 - Whats "widget" meaning in Vietnamese??? - 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 đề + + 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 - google translate xD - 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. - google translate - 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. - google translate - 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 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ọ. - - 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! - google translate - 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 - - + + 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 - + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + You need to run Steam for this. 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. - google translate - 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 - + + NEW + NEW - - + + 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 + + English + Tiếng Anh - - German - Tiếng Đức + + German + Tiếng Đức - - Chinese - Simplified - Tiếng Trung - Giản thể + + Chinese - Simplified + Tiếng Trung - Giản thể - - Russian - Tiếng Nga + + Russian + Tiếng Nga - - French - Tiếng Pháp + + French + Tiếng Pháp - - Spanish - Tiếng Tây Ban Nha + + Spanish + Tiếng Tây Ban Nha - - Korean - Tiếng Hàn Quốc + + Korean + Tiếng Hàn Quốc - - Vietnamese - Tiếng Việt + + Vietnamese + Tiếng Việt - - Portuguese (Brazil) - Tiếng Bồ Đào Nha (Brazil) + + Portuguese (Brazil) + Tiếng Bồ Đào Nha (Brazil) - - Theme - Chủ đề + + Theme + Chủ đề - - Switch dark/light theme - Chuyển chủ để sáng/tôí + + Switch dark/light theme + Chuyển chủ để sáng/tôí - - System Default - Mặc định theo hệ thống + + System Default + Mặc định theo hệ thống - - Dark - Tối + + Dark + Tối - - Light - Sáng + + Light + Sáng - - Performance - Hiệu suất + + Performance + Hiệu suất - - Pause wallpaper video rendering while another app is in the foreground - Tạm dừng ảnh nền video khi có một ứng dụng khác đang mở phía trước + + Pause wallpaper video rendering while another app is in the foreground + Tạm dừng ảnh nền video khi có một ứng dụng khác đang mở phía trước - - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - gg translate - Chúng tôi tắt hiển thị video (không phải âm thanh!) Để có hiệu suất tốt nhất. Nếu bạn gặp sự cố, bạn có thể vô hiệu hóa hành vi này tại đây. Yêu cầu khởi động lại hình nền! + + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + Chúng tôi tắt hiển thị video (không phải âm thanh!) Để có hiệu suất tốt nhất. Nếu bạn gặp sự cố, bạn có thể vô hiệu hóa hành vi này tại đây. Yêu cầu khởi động lại hình nền! - - Default Fill Mode - Cách lấp đầy mặc định + + Default Fill Mode + Cách lấp đầy mặc định - - Set this property to define how the video is scaled to fit the target area. - google translate - Đặt thuộc tính này để xác định cách chia tỷ lệ video để phù hợp với khu vực mục tiêu. + + Set this property to define how the video is scaled to fit the target area. + Đặt thuộc tính này để xác định cách chia tỷ lệ video để phù hợp với khu vực mục tiêu. - - Stretch - Kéo dài + + Stretch + Kéo dài - - Fill - Lấp đầy + + Fill + Lấp đầy - - Contain - Chứa đựng + + Contain + Chứa đựng - - Cover - Bao phủ + + Cover + Bao phủ - - Scale-Down - Giảm tỉ lệ + + Scale-Down + Giảm tỉ lệ - - About - Về ứng dụng + + About + Về ứng dụng - - Thank you for using ScreenPlay - Cảm ơn bạn vì đã sử dụng ScreenPlay + + Thank you for using ScreenPlay + Cảm ơn bạn vì đã sử dụng ScreenPlay - - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Chào, tôi là Elias Steurer hay được biết đến là Kelteseth và tôi là người phát triển của ScreenPlay. Cảm ơn bạn đã sử dụng phần mềm của tôi. Bạn có thể theo dõi tôi để nhận được những cập nhật về ScreenPlay tại: + + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Chào, tôi là Elias Steurer hay được biết đến là Kelteseth và tôi là người phát triển của ScreenPlay. Cảm ơn bạn đã sử dụng phần mềm của tôi. Bạn có thể theo dõi tôi để nhận được những cập nhật về ScreenPlay tại: - - Version - Phiên bản + + Version + Phiên bản - - ScreenPlay Build Version - Bản dựng của ScreenPlay + + ScreenPlay Build Version + Bản dựng của ScreenPlay - - Open Changelog - Mở nhật kí thay đổi + + Open Changelog + Mở nhật kí thay đổi - - Third Party Software - Phần mềm của bên thứ ba + + Third Party Software + Phần mềm của bên thứ ba - - ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay sẽ không thể có được nếu như không có thành quả của những người khác. Một lời cảm ơn lớn đến: + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay sẽ không thể có được nếu như không có thành quả của những người khác. Một lời cảm ơn lớn đến: - - Licenses - Bản quyền + + Licenses + Bản quyền - - Logs - Nhật kí + + Logs + Nhật kí - - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Nếu ScreenPlay của bạn hoạt động sai thì đây là một cách tốt để tìm câu trả lời. Ở đây hiện tất cả các nhật kí và cảnh báo trong khi chạy + + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + Nếu ScreenPlay của bạn hoạt động sai thì đây là một cách tốt để tìm câu trả lời. Ở đây hiện tất cả các nhật kí và cảnh báo trong khi chạy - - Show Logs - Hiện nhật kí + + Show Logs + Hiện nhật kí - - Data Protection - Bảo vệ dữ liệu + + Data Protection + Bảo vệ dữ liệu - - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - gg translate - Chúng tôi sử dụng dữ liệu của bạn rất cẩn thận để cải thiện ScreenPlay. Chúng tôi không bán hoặc chia sẻ thông tin này (ẩn danh) với người khác! + + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + Chúng tôi sử dụng dữ liệu của bạn rất cẩn thận để cải thiện ScreenPlay. Chúng tôi không bán hoặc chia sẻ thông tin này (ẩn danh) với người khác! - - Privacy - Quyền riêng tư + + Privacy + Quyền riêng tư - - + + 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: - gg translate - Đă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! - google translate - 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 - - 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 - + + Upload + Upload - - 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 - gg translate - 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 - + + Fail + Fail - - No Connection - + + No Connection + No Connection - - Invalid Password - + + Invalid Password + Invalid Password - - Logged In Elsewhere - + + Logged In Elsewhere + Logged In Elsewhere - - Invalid Protocol Version - + + Invalid Protocol Version + Invalid Protocol Version - - Invalid Param - + + Invalid Param + Invalid Param - - File Not Found - + + File Not Found + File Not Found - - Busy - + + Busy + Busy - - Invalid State - + + Invalid State + Invalid State - - Invalid Name - + + Invalid Name + Invalid Name - - Invalid Email - + + Invalid Email + Invalid Email - - Duplicate Name - + + Duplicate Name + Duplicate Name - - Access Denied - + + Access Denied + Access Denied - - Timeout - + + Timeout + Timeout - - Banned - + + Banned + Banned - - Account Not Found - + + Account Not Found + Account Not Found - - Invalid SteamID - + + Invalid SteamID + Invalid SteamID - - Service Unavailable - + + Service Unavailable + Service Unavailable - - Not Logged On - + + Not Logged On + Not Logged On - - Pending - + + Pending + Pending - - Encryption Failure - + + Encryption Failure + Encryption Failure - - Insufficient Privilege - + + Insufficient Privilege + Insufficient Privilege - - Limit Exceeded - + + Limit Exceeded + Limit Exceeded - - Revoked - + + Revoked + Revoked - - Expired - + + Expired + Expired - - Already Redeemed - + + Already Redeemed + Already Redeemed - - Duplicate Request - + + Duplicate Request + Duplicate Request - - Already Owned - + + Already Owned + Already Owned - - IP Not Found - + + IP Not Found + IP Not Found - - Persist Failed - + + Persist Failed + Persist Failed - - Locking Failed - + + Locking Failed + Locking Failed - - Logon Session Replaced - + + Logon Session Replaced + Logon Session Replaced - - Connect Failed - + + Connect Failed + Connect Failed - - Handshake Failed - + + Handshake Failed + Handshake Failed - - IO Failure - + + IO Failure + IO Failure - - Remote Disconnect - + + Remote Disconnect + Remote Disconnect - - Shopping Cart Not Found - + + Shopping Cart Not Found + Shopping Cart Not Found - - Blocked - + + Blocked + Blocked - - Ignored - + + Ignored + Ignored - - No Match - + + No Match + No Match - - Account Disabled - + + Account Disabled + Account Disabled - - Service ReadOnly - + + Service ReadOnly + Service ReadOnly - - Account Not Featured - + + Account Not Featured + Account Not Featured - - Administrator OK - + + Administrator OK + Administrator OK - - Content Version - + + Content Version + Content Version - - Try Another CM - + + Try Another CM + Try Another CM - - 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 - - Suspended - + + Suspended + Suspended - - Cancelled - + + Cancelled + Cancelled - - Data Corruption - + + Data Corruption + Data Corruption - - Disk Full - + + Disk Full + Disk Full - - Remote Call Failed - + + Remote Call Failed + Remote Call Failed - - Password Unset - + + Password Unset + Password Unset - - External Account Unlinked - + + External Account Unlinked + External Account Unlinked - - PSN Ticket Invalid - + + PSN Ticket Invalid + PSN Ticket Invalid - - External Account Already Linked - + + External Account Already Linked + External Account Already Linked - - Remote File Conflict - + + Remote File Conflict + Remote File Conflict - - Illegal Password - + + Illegal Password + Illegal Password - - Same As Previous Value - + + Same As Previous Value + Same As Previous Value - - Account Logon Denied - + + Account Logon Denied + Account Logon Denied - - Cannot Use Old Password - + + Cannot Use Old Password + Cannot Use Old Password - - Invalid Login AuthCode - + + Invalid Login AuthCode + Invalid Login AuthCode - - 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 - - IPT Init Error - + + IPT Init Error + IPT Init Error - - Parental Control Restricted - + + Parental Control Restricted + Parental Control Restricted - - Facebook Query Error - + + Facebook Query Error + Facebook Query Error - - Expired Login Auth Code - + + Expired Login Auth Code + Expired Login Auth Code - - IP Login Restriction Failed - + + IP Login Restriction Failed + IP Login Restriction Failed - - 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 - - No MatchingURL - + + No MatchingURL + No MatchingURL - - Bad Response - + + Bad Response + Bad Response - - Require Password ReEntry - + + Require Password ReEntry + Require Password ReEntry - - Value Out Of Range - + + Value Out Of Range + Value Out Of Range - - Unexpecte Error - + + Unexpecte Error + Unexpecte Error - - Disabled - + + Disabled + Disabled - - Invalid CEG Submission - + + Invalid CEG Submission + Invalid CEG Submission - - Restricted Device - + + Restricted Device + Restricted Device - - Region Locked - + + Region Locked + Region Locked - - 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 - - Item Deleted - + + Item Deleted + Item Deleted - - 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 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 - - Not Modified - + + Not Modified + Not Modified - - No Mobile Device - + + No Mobile Device + No Mobile Device - - Time Not Synced - + + Time Not Synced + Time Not Synced - - Sms Code Failed - + + Sms Code Failed + Sms Code Failed - - Account Limit Exceeded - + + Account Limit Exceeded + Account 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 - - Refund To Wallet - + + Refund To Wallet + Refund To Wallet - - Email Send Failure - + + Email Send Failure + Email Send Failure - - Not Settled - + + Not Settled + Not Settled - - Need Captcha - + + Need Captcha + Need Captcha - - GSLT Denied - + + GSLT Denied + GSLT Denied - - GS Owner Denied - + + GS Owner Denied + GS Owner Denied - - Invalid Item Type - + + Invalid Item Type + Invalid Item Type - - IP Banned - + + IP Banned + IP Banned - - GSLT Expired - + + GSLT Expired + GSLT Expired - - Insufficient Funds - + + Insufficient Funds + Insufficient Funds - - Too Many Pending - + + Too Many Pending + Too Many Pending - - No Site Licenses Found - + + No Site Licenses Found + No Site Licenses Found - - WG Network Send Exceeded - + + WG Network Send Exceeded + WG Network Send Exceeded - - Account Not Friends - + + Account Not Friends + Account Not Friends - - Limited User Account - + + Limited User Account + Limited User Account - - Cant Remove Item - + + Cant Remove Item + Cant Remove Item - - Account Deleted - + + Account Deleted + Account Deleted - - Existing User Cancelled License - + + Existing User Cancelled License + Existing User Cancelled License - - Community Cooldown - + + Community Cooldown + Community Cooldown - - Status: - + + Status: + Status: - - Upload Progress: - + + Upload Progress: + Upload Progress: - - + + 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á - + From 4c4c752a7f35047e694fe5ad6cfb3383c2323cb5 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:16:02 +0000 Subject: [PATCH 18/76] New translations ScreenPlay_.ts (Portuguese, Brazilian) --- ScreenPlay/translations/ScreenPlay_pt_BR.ts | 2255 +++++++++++++++++++ 1 file changed, 2255 insertions(+) create mode 100644 ScreenPlay/translations/ScreenPlay_pt_BR.ts diff --git a/ScreenPlay/translations/ScreenPlay_pt_BR.ts b/ScreenPlay/translations/ScreenPlay_pt_BR.ts new file mode 100644 index 00000000..d6c1aa2b --- /dev/null +++ b/ScreenPlay/translations/ScreenPlay_pt_BR.ts @@ -0,0 +1,2255 @@ + + + + + ColorPicker + + + Red + Red + + + + Green + Green + + + + Blue + Blue + + + + RGB + RGB + + + + HSV + HSV + + + + R: + R: + + + + G: + G: + + + + B: + B: + + + + H: + H: + + + + S: + S: + + + + V: + V: + + + + Alpha: + Alpha: + + + + # + # + + + + Community + + + News + News + + + + Wiki + Wiki + + + + Forum + Forum + + + + Issue List + Issue List + + + + Contribute + Contribute + + + + Steam Workshop + Steam Workshop + + + + 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: + +*.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: + +*.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... + Generating 5 second preview video... + + + + Generating preview gif... + Generating preview 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 + + + + 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 + + + + GifWallpaper + + + 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. + + + + Select your gif + Select your gif + + + + General + General + + + + Wallpaper name + Wallpaper name + + + + Created By + Created By + + + + Tags + Tags + + + + HTMLWallpaper + + + Create a HTML Wallpaper + Create a HTML Wallpaper + + + + 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 + Create a HTML widget + + + + General + General + + + + Widget name + Widget name + + + + Created by + Created by + + + + Tags + Tags + + + + Headline + + + 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... + Generating 5 second preview video... + + + + Generating preview gif... + Generating preview 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 URL + + + + Abort + Abort + + + + Save + Save + + + + Save Wallpaper... + Save Wallpaper... + + + + ImportWebmInit + + + 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! + + + + 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. + + + + 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 linking. + + + + 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! + 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. + + + + MonitorConfiguration + + + Your monitor setup changed! + Please configure your wallpaper again. + 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 + + + + 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 + + + + Back + Back + + + + PopupSteamWorkshopAgreement + + + 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. + + + + View The Steam Subscriber Agreement + View The Steam Subscriber Agreement + + + + Accept Steam Workshop Agreement + Accept Steam Workshop Agreement + + + + QMLWallpaper + + + Create a QML Wallpaper + Create a QML Wallpaper + + + + 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 + Create a QML widget + + + + General + General + + + + Widget name + Widget name + + + + Created by + Created by + + + + Tags + Tags + + + + SaveNotification + + + Profile saved successfully! + Profile saved successfully! + + + + ScreenPlayItem + + + NEW + NEW + + + + Search + + + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets + + + + Settings + + + General + General + + + + Autostart + Autostart + + + + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + + + + 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. + + + + 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! + + + + 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! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + + + + Language + Language + + + + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language + + + + English + English + + + + German + German + + + + Chinese - Simplified + Chinese - Simplified + + + + Russian + Russian + + + + French + French + + + + Spanish + Spanish + + + + Korean + Korean + + + + Vietnamese + Vietnamese + + + + Portuguese (Brazil) + Portuguese (Brazil) + + + + Theme + Theme + + + + Switch dark/light theme + Switch dark/light theme + + + + System Default + System Default + + + + Dark + Dark + + + + Light + Light + + + + Performance + Performance + + + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground + + + + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + + + + Default Fill Mode + Default Fill Mode + + + + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. + + + + Stretch + Stretch + + + + Fill + Fill + + + + Contain + Contain + + + + Cover + Cover + + + + Scale-Down + Scale-Down + + + + About + About + + + + Thank you for using ScreenPlay + Thank you for using ScreenPlay + + + + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + + + + Version + Version + + + + ScreenPlay Build Version + ScreenPlay Build Version + + + + Open Changelog + Open Changelog + + + + Third Party Software + Third Party Software + + + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay 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 + + + + Sidebar + + + Tools Overview + Tools Overview + + + + Video import and convert (all types) + Video import and convert (all types) + + + + Video Import (.webm) + Video Import (.webm) + + + + GIF Wallpaper + GIF Wallpaper + + + + QML Wallpaper + QML Wallpaper + + + + HTML5 Wallpaper + HTML5 Wallpaper + + + + Website Wallpaper + Website Wallpaper + + + + QML Widget + QML Widget + + + + HTML Widget + HTML Widget + + + + 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 + Open In 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! + 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! + + + + SteamProfile + + + + Back + Back + + + + Forward + Forward + + + + SteamWorkshop + + + Loading + Loading + + + + Download now! + Download now! + + + + Downloading... + Downloading... + + + + Details + Details + + + + Open In Steam + Open In Steam + + + + Profile + Profile + + + + Upload + Upload + + + + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + + + + Open Workshop in Steam + Open Workshop in 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 - Double click to change you settings. + + + + Open ScreenPlay + Open 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 + Upload Wallpaper/Widgets to 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 + Invalid 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 Not Found + + + + 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 Ticket Invalid + + + + 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 Query Error + + + + Expired Login Auth Code + Expired Login Auth Code + + + + IP Login Restriction Failed + IP Login Restriction Failed + + + + 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 + Invalid CEG Submission + + + + 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 Banned + + + + 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 + + + From 24bf214dac3af4c50c24a690a989bc90ae985c86 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:18:14 +0000 Subject: [PATCH 19/76] Fix file casings --- .../{ScreenPlay_pt_br.qm => ScreenPlay_pt_BR.qm} | Bin .../{ScreenPlay_pt_br.ts => ScreenPlay_pt_BR.ts} | 0 .../{ScreenPlay_zh_cn.qm => ScreenPlay_zh_CN.qm} | Bin .../{ScreenPlay_zh_cn.ts => ScreenPlay_zh_CN.ts} | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename ScreenPlay/translations/{ScreenPlay_pt_br.qm => ScreenPlay_pt_BR.qm} (100%) rename ScreenPlay/translations/{ScreenPlay_pt_br.ts => ScreenPlay_pt_BR.ts} (100%) rename ScreenPlay/translations/{ScreenPlay_zh_cn.qm => ScreenPlay_zh_CN.qm} (100%) rename ScreenPlay/translations/{ScreenPlay_zh_cn.ts => ScreenPlay_zh_CN.ts} (100%) diff --git a/ScreenPlay/translations/ScreenPlay_pt_br.qm b/ScreenPlay/translations/ScreenPlay_pt_BR.qm similarity index 100% rename from ScreenPlay/translations/ScreenPlay_pt_br.qm rename to ScreenPlay/translations/ScreenPlay_pt_BR.qm diff --git a/ScreenPlay/translations/ScreenPlay_pt_br.ts b/ScreenPlay/translations/ScreenPlay_pt_BR.ts similarity index 100% rename from ScreenPlay/translations/ScreenPlay_pt_br.ts rename to ScreenPlay/translations/ScreenPlay_pt_BR.ts diff --git a/ScreenPlay/translations/ScreenPlay_zh_cn.qm b/ScreenPlay/translations/ScreenPlay_zh_CN.qm similarity index 100% rename from ScreenPlay/translations/ScreenPlay_zh_cn.qm rename to ScreenPlay/translations/ScreenPlay_zh_CN.qm diff --git a/ScreenPlay/translations/ScreenPlay_zh_cn.ts b/ScreenPlay/translations/ScreenPlay_zh_CN.ts similarity index 100% rename from ScreenPlay/translations/ScreenPlay_zh_cn.ts rename to ScreenPlay/translations/ScreenPlay_zh_CN.ts From d2255e4a61d9830c813d4e6337657e641d72b3e5 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:26:19 +0000 Subject: [PATCH 20/76] Update Crowdin configuration file --- crowdin.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/crowdin.yml b/crowdin.yml index 8cbb384d..7ec66f0a 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,3 +1,15 @@ files: - - source: /ScreenPlay/translations/ScreenPlay_.ts + - source: /ScreenPlay/ + ignore: + - /ScreenPlay/assets/ + - /ScreenPlay/legal/ + - /ScreenPlay/tests/ + - /ScreenPlay/translations/ + - '*.qrc' + - '*.json' + - '*.conf' + - '*.rc' + - '*.txt' + - .clang-format + - '*.plist' translation: /ScreenPlay/translations/ScreenPlay_%locale_with_underscore%.ts From 2be7ae3cc6f8efbf889f53251e63ef23dbd6a117 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:30:08 +0000 Subject: [PATCH 21/76] Update Crowdin configuration file --- crowdin.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/crowdin.yml b/crowdin.yml index 7ec66f0a..8cbb384d 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,15 +1,3 @@ files: - - source: /ScreenPlay/ - ignore: - - /ScreenPlay/assets/ - - /ScreenPlay/legal/ - - /ScreenPlay/tests/ - - /ScreenPlay/translations/ - - '*.qrc' - - '*.json' - - '*.conf' - - '*.rc' - - '*.txt' - - .clang-format - - '*.plist' + - source: /ScreenPlay/translations/ScreenPlay_.ts translation: /ScreenPlay/translations/ScreenPlay_%locale_with_underscore%.ts From d95952d8081eb7dbf65aad423eb281045f594f75 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:30:37 +0000 Subject: [PATCH 22/76] New translations ScreenPlay_.ts (Chinese Simplified) --- ScreenPlay/translations/ScreenPlay_zh_CN.ts | 808 ++++++++++---------- 1 file changed, 404 insertions(+), 404 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_zh_CN.ts b/ScreenPlay/translations/ScreenPlay_zh_CN.ts index abeafb94..9b3646a1 100644 --- a/ScreenPlay/translations/ScreenPlay_zh_CN.ts +++ b/ScreenPlay/translations/ScreenPlay_zh_CN.ts @@ -6,17 +6,17 @@ Red - Red + Green - Green + 绿 Blue - Blue + @@ -61,7 +61,7 @@ Alpha: - Alpha: + 透明度: @@ -74,32 +74,32 @@ News - News + 新闻 Wiki - Wiki + 维基 Forum - Forum + 论坛 Issue List - Issue List + 议题列表 Contribute - Contribute + 贡献 Steam Workshop - Steam Workshop + Steam 创意工坊 @@ -107,7 +107,7 @@ Open in browser - Open in browser + 在浏览器中打开 @@ -115,36 +115,36 @@ 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: *.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: + 取决于您的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 + 选择文件 @@ -152,17 +152,17 @@ 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! + 返回以创建并发送错误报告! @@ -175,82 +175,82 @@ Generating preview image... - Generating preview image... + 生成预览图... Generating preview thumbnail image... - Generating preview thumbnail image... + 生成预览缩略图... Generating 5 second preview video... - Generating 5 second preview video... + 生成5秒预览视频... Generating preview 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 链接 Abort - Abort + 中止 Save - Save + 保存 Save Wallpaper... - Save Wallpaper... + 保存壁纸... @@ -258,47 +258,47 @@ 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 + 裁切 @@ -306,17 +306,17 @@ Clear - Clear + 清空 Select File - Select File + 选择文件 Please choose a file - Please choose a file + 请选择文件 @@ -324,37 +324,37 @@ Import a Gif Wallpaper - Import a Gif Wallpaper + 导入 GIF 壁纸 Drop a *.gif file here or use 'Select file' below. - Drop a *.gif file here or use 'Select file' below. + 拖放一个 *.gif 文件到这里,或者使用下面的 '选择文件'。 Select your gif - Select your gif + 选择您的 GIF General - General + 常规 Wallpaper name - Wallpaper name + 壁纸名称 Created By - Created By + 作者 Tags - Tags + 标签 @@ -362,37 +362,37 @@ Create a HTML Wallpaper - 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 + 预览图 @@ -400,27 +400,27 @@ Create a HTML widget - Create a HTML widget + 创建 HTML 部件 General - General + 常规 Widget name - Widget name + 部件名称 Created by - Created by + 作者 Tags - Tags + 标签 @@ -428,7 +428,7 @@ Headline - Headline + 标题 @@ -436,7 +436,7 @@ Headline Section - Headline Section + 摘要 @@ -444,17 +444,17 @@ Set your own preview image - Set your own preview image + 设置您的预览图 Clear - Clear + 清空 Select Preview Image - Select Preview Image + 选择预览图 @@ -467,87 +467,87 @@ AnalyseVideo... - AnalyseVideo... + 分析视频... Generating preview image... - Generating preview image... + 生成预览图... Generating preview thumbnail image... - Generating preview thumbnail image... + 生成预览缩略图... Generating 5 second preview video... - Generating 5 second preview video... + 生成5秒预览视频... Generating preview 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 URL + Youtube 链接 Abort - Abort + 中止 Save - Save + 保存 Save Wallpaper... - Save Wallpaper... + 保存壁纸... @@ -555,32 +555,32 @@ Import a .webm video - 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! - 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)! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! + 文件类型无效。必须是 VP8 / VP9(*.webm)! Drop a *.webm file here or use 'Select file' below. - Drop a *.webm file here or use 'Select file' below. + 将一个webm文件拖到这里,或者使用下面的'选择文件' Open Documentation - Open Documentation + 打开文档 Select file - Select file + 选择文件 @@ -593,43 +593,43 @@ 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? + 您确定要删除此物品? @@ -637,12 +637,12 @@ 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 + 浏览创意工坊 @@ -650,38 +650,38 @@ 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 linking. + 您授权他人对您的作品进行再创作,并更改其链接的许可证。 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! - 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. + 您不分享任何权限,没有人可以使用或改编它(不推荐)。这也可用于计入他人的作品。 @@ -690,8 +690,8 @@ Your monitor setup changed! Please configure your wallpaper again. - Your monitor setup changed! - Please configure your wallpaper again. + 您的显示器设置已更改! + 请重新配置您的壁纸。 @@ -699,28 +699,28 @@ Wallpaper Configuration - Wallpaper Configuration + 壁纸配置 Remove selected - Remove selected + 移除已选择 Remove - Remove + 移除 Wallpapers - Wallpapers + 壁纸 Widgets - Widgets + 物件 @@ -728,12 +728,12 @@ Set color - Set color + 设置颜色 Please choose a color - Please choose a color + 请选择颜色 @@ -741,42 +741,42 @@ 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 + 上传到创意工坊 @@ -784,12 +784,12 @@ Configurate active Wallpaper or Widgets - Configurate active Wallpaper or Widgets + 设置活动壁纸或物件 No active Wallpaper or Widgets - No active Wallpaper or Widgets + 没有活动壁纸或物件 @@ -802,7 +802,7 @@ Back - Back + 返回 @@ -810,22 +810,22 @@ You Need to Agree To The Steam Subscriber Agreement First - 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. - 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 - View The Steam Subscriber Agreement + 查看Steam订阅者协议 Accept Steam Workshop Agreement - Accept Steam Workshop Agreement + 接受Steam创意工坊协议 @@ -833,37 +833,37 @@ Create a QML Wallpaper - 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 + 预览图 @@ -871,27 +871,27 @@ Create a QML widget - Create a QML widget + 创建一个QML部件 General - General + 常规 Widget name - Widget name + 部件名 Created by - Created by + 作者 Tags - Tags + 标签 @@ -899,7 +899,7 @@ Profile saved successfully! - Profile saved successfully! + 配置保存成功! @@ -915,7 +915,7 @@ Search for Wallpaper & Widgets - Search for Wallpaper & Widgets + 搜索壁纸和物件... @@ -923,262 +923,262 @@ General - General + 常规 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将在操作系统启动时启动,并会设置您的桌面。 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. + 这个选项赋予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! - 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! - 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 - Set the ScreenPlay UI Language + 设置ScreenPlay界面语言 English - English + 英语 German - German + 德语 Chinese - Simplified - Chinese - Simplified + 中文(简体) Russian - Russian + 俄语 French - French + 法语 Spanish - Spanish + 西班牙语 Korean - Korean + 韩语 Vietnamese - Vietnamese + 越南语 Portuguese (Brazil) - Portuguese (Brazil) + 英语(巴西) Theme - Theme + 主题 Switch dark/light theme - Switch dark/light theme + 切换到暗/亮主题 System Default - System Default + 跟随系统 Dark - Dark + Light - Light + Performance - Performance + 性能 Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + 当其他应用程序在前台时,暂停壁纸视频渲染 We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + 我们禁用视频渲染(不是音频)以获得最佳性能。如果您有问题,可以在此处禁用此行为。 需要重启壁纸! Default Fill Mode - Default Fill Mode + 默认填充模式 Set this property to define how the video is scaled to fit the target area. - Set this property to define how the video is scaled to fit the target area. + 设置此属性可定义视频的缩放方式以适应目标区域。 Stretch - Stretch + 拉伸 Fill - Fill + 填充 Contain - Contain + 适应 Cover - Cover + 平铺 Scale-Down - Scale-Down + 裁剪 About - About + 关于 Thank you for using ScreenPlay - Thank you for using ScreenPlay + 感谢您的使用 Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + 您好,我是Elias Steurer,也叫Kelteseth,我是ScreenPlay的开发者。感谢您使用我的软件。您可以在这里关注我,接收ScreenPlay的更新。 Version - Version + 版本 ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay编译版本 Open Changelog - Open Changelog + 打开更改日志。 Third Party Software - Third Party Software + 第三方软件 ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay离不开一些人的帮助。非常感谢你们: Licenses - Licenses + 许可证 Logs - Logs + 日志 If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + 如果您的ScreenPlay出错,这是个很好的查错方式。它显示所有的日志和运行时警告。 Show Logs - Show Logs + 显示日志 Data Protection - Data Protection + 数据保护 We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + 我们使用您的数据提升ScreenPlay的体验。我们承诺不出售或分享这些匿名信息! Privacy - Privacy + 隐私 @@ -1186,7 +1186,7 @@ Copy text to clipboard - Copy text to clipboard + 复制文本至剪贴板 @@ -1194,7 +1194,7 @@ Tools Overview - Tools Overview + 工具概览 @@ -1204,137 +1204,137 @@ Video Import (.webm) - Video Import (.webm) + 视频导入 (.webm) GIF Wallpaper - GIF Wallpaper + GIF 壁纸 QML Wallpaper - QML Wallpaper + QML 壁纸 HTML5 Wallpaper - HTML5 Wallpaper + HTML5 壁纸 Website Wallpaper - Website Wallpaper + 网页壁纸 QML Widget - QML Widget + QML 部件 HTML Widget - 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 - Open In Steam + 在Steam打开 Subscribed! - Subscribed! + 已订阅! Subscribe - Subscribe + 订阅 @@ -1342,12 +1342,12 @@ 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! + 下面你可以找到ScreenPlay所提供的以外的工具来创建wallaper。 @@ -1355,7 +1355,7 @@ Could not load steam integration! - Could not load steam integration! + 无法加载steam集成! @@ -1364,12 +1364,12 @@ Back - Back + 返回 Forward - Forward + 前进 @@ -1377,32 +1377,32 @@ Loading - Loading + 加载中 Download now! - Download now! + 开始下载! Downloading... - Downloading... + 下载中... Details - Details + 查看详情 Open In Steam - Open In Steam + 在Steam打开 Profile - Profile + 配置 @@ -1412,72 +1412,72 @@ Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + 搜索壁纸和物件... Open Workshop in 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 + 前进 @@ -1485,22 +1485,22 @@ Save - Save + 保存 Add tag - Add tag + 添加标签 Cancel - Cancel + 取消 Add Tag - Add Tag + 添加标签 @@ -1508,12 +1508,12 @@ Label - Label + 标识 *Required - *Required + *必要的 @@ -1521,39 +1521,39 @@ ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - 双击以改变设置 Open ScreenPlay - Open ScreenPlay + 打开ScreenPlay Mute all - Mute all + 关闭全部提醒 Unmute all - Unmute all + 开启全部提醒 Pause all - Pause all + 暂停全部 Play all - Play all + 播放全部 Quit - Quit + 退出 @@ -1561,22 +1561,22 @@ Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + 上传 壁纸/物件 到Steam Abort - Abort + 取消 Upload Selected Projects - Upload Selected Projects + 上传所选项目 Finish - Finish + 结束 @@ -1584,17 +1584,17 @@ Type: - Type: + 类型: Open Folder - Open Folder + 打开文件夹 Invalid Project! - Invalid Project! + 无效的项目! @@ -1602,582 +1602,582 @@ 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 - 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 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 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 Query Error + Facebook查询错误 Expired Login Auth Code - Expired Login Auth Code + 过期的登录授权码 IP Login Restriction Failed - 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 - 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 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: + 上传进度: @@ -2185,37 +2185,37 @@ 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 + 预览图 @@ -2223,12 +2223,12 @@ Save - Save + 保存 Saving... - Saving... + 保存中... @@ -2236,12 +2236,12 @@ Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + 成功订阅创意工坊物品! Download complete! - Download complete! + 下载完成! @@ -2249,7 +2249,7 @@ News & Patchnotes - News & Patchnotes + 新闻和更改日志 From ce41737a6b35d1a632e29aa5ef7bf10c5804be81 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:32:26 +0000 Subject: [PATCH 23/76] New translations ScreenPlay_.ts (German) --- ScreenPlay/translations/ScreenPlay_de_DE.ts | 713 ++++++++++---------- 1 file changed, 357 insertions(+), 356 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_de_DE.ts b/ScreenPlay/translations/ScreenPlay_de_DE.ts index 32a87714..05391b3b 100644 --- a/ScreenPlay/translations/ScreenPlay_de_DE.ts +++ b/ScreenPlay/translations/ScreenPlay_de_DE.ts @@ -6,17 +6,17 @@ Red - Rot + Red Green - Grün + Green Blue - Blau + Blue @@ -61,7 +61,7 @@ Alpha: - Alpha + Alpha: @@ -74,7 +74,7 @@ News - Neuigkeiten + News @@ -89,12 +89,12 @@ Issue List - Fehler Liste + Issue List Contribute - Beitragen + Contribute @@ -107,7 +107,7 @@ Open in browser - Öffne in + Open in browser @@ -115,35 +115,36 @@ Import any video type - Importiere jedes Video + 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: *.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: + 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: - Bevorzugte Video-Kodierung Festlegen + Set your preffered video codec: Quality slider. Lower value means better quality. - Qualitäts-Regler. Niedriger wert heißt niedrige Qualität + Quality slider. Lower value means better quality. Open Documentation - Öffne Documentation + Open Documentation Select file - Datei auswählen + Select file @@ -151,17 +152,17 @@ An error occurred! - Es ist ein Fehler aufgetreten! + An error occurred! Copy text to clipboard - Kopiere den Text in die Zwischenablage + Copy text to clipboard Back to create and send an error report! - Zurück zum Erstellen und einen Fehlerbericht senden! + Back to create and send an error report! @@ -174,82 +175,82 @@ Generating preview image... - Erzeuge Vorschaubild... + Generating preview image... Generating preview thumbnail image... - Erzeuge Vorschau-Miniaturbild... + Generating preview thumbnail image... Generating 5 second preview video... - Generiere ein 5-Sekunden-Vorschau-Video... + Generating 5 second preview video... Generating preview gif... - Generiere Vorschau-Gif... + Generating preview gif... Converting Audio... - Konvertiere Audio... + Converting Audio... Converting Video... This can take some time! - Video wird umgewandelt... Das kann etwas dauern! + Converting Video... This can take some time! Converting Video ERROR! - Konvertieren nicht erfolgreich! + Converting Video ERROR! Analyse Video ERROR! - Analyse des Videos schlug Fehl! + Analyse Video ERROR! Convert a video to a wallpaper - Konvertiere ein Video in ein Hintergrund Live Wallpaper + Convert a video to a wallpaper Generating preview video... - Generiere Vorschau-Video... + Generating preview video... Name (required!) - Name (erforderlich!) + Name (required!) Description - Beschreibung + Description Youtube URL - YouTube-URL + Youtube URL Abort - Abbrechen + Abort Save - Speichern + Save Save Wallpaper... - Speicher Wallpaper... + Save Wallpaper... @@ -257,37 +258,37 @@ Volume - Lautstärke + Volume Playback rate - Wiedergabegeschwindigkeit + Playback rate Current Video Time - Aktuelle Videozeit + Current Video Time Fill Mode - Füll-Modus + Fill Mode Stretch - Strecken + Stretch Fill - Ausfüllen + Fill Contain - Enthält + Contain @@ -297,7 +298,7 @@ Scale_Down - Runter Skallieren + Scale_Down @@ -305,17 +306,17 @@ Clear - Leeren + Clear Select File - Datei auswählen + Select File Please choose a file - Bitte Wählen Sie eine Datei aus + Please choose a file @@ -323,37 +324,37 @@ Import a Gif Wallpaper - Importiere ein GIF Wallpaper + Import a 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. Select your gif - Wähle dein GIF aus + Select your gif General - Allgemein + General Wallpaper name - Wallpaper Name + Wallpaper name Created By - Erstellt von + Created By Tags - Schlagwörter + Tags @@ -361,37 +362,37 @@ Create a HTML Wallpaper - Erstelle ein HTML Wallpaper + Create a HTML Wallpaper General - Allgemein + General Wallpaper name - Wallpaper Name + Wallpaper name Created By - Erstellt von + Created By Description - Beschreibung + Description License & Tags - Lizenz & Schlagwörter + License & Tags Preview Image - Vorschau Bild + Preview Image @@ -399,27 +400,27 @@ Create a HTML widget - Erstelle ein HTML Widget + Create a HTML widget General - Allgemein + General Widget name - Widget Name + Widget name Created by - Erstellt von + Created by Tags - Schlagwörter + Tags @@ -427,7 +428,7 @@ Headline - Überschrift + Headline @@ -435,7 +436,7 @@ Headline Section - Überschrift auswahl + Headline Section @@ -443,17 +444,17 @@ Set your own preview image - Setze dein eigenes Vorschaubild + Set your own preview image Clear - Leeren + Clear Select Preview Image - Wähle ein Vorschaubild + Select Preview Image @@ -466,87 +467,87 @@ AnalyseVideo... - Analysiere Video... + AnalyseVideo... Generating preview image... - Erzeuge Vorschaubild... + Generating preview image... Generating preview thumbnail image... - Erzeuge Vorschau-Miniaturbild... + Generating preview thumbnail image... Generating 5 second preview video... - Generiere ein 5-Sekunden-Vorschau-Video... + Generating 5 second preview video... Generating preview gif... - Generiere Vorschau-Gif... + Generating preview gif... Converting Audio... - Konvertiere Audio... + Converting Audio... Converting Video... This can take some time! - Video wird umgewandelt... Das kann etwas dauern! + Converting Video... This can take some time! Converting Video ERROR! - Konvertieren nicht erfolgreich! + Converting Video ERROR! Analyse Video ERROR! - Analyse des Videos schlug Fehl! + Analyse Video ERROR! Import a video to a wallpaper - Importiere ein Video zu ein Wallpaper + Import a video to a wallpaper Generating preview video... - Generiere Vorschau-Video... + Generating preview video... Name (required!) - Name (erforderlich!) + Name (required!) Description - Beschreibung + Description Youtube URL - YouTube-URL + Youtube URL Abort - Abbrechen + Abort Save - Speichern + Save Save Wallpaper... - Speicher Wallpaper... + Save Wallpaper... @@ -554,32 +555,32 @@ Import a .webm video - Importiere ein .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! - 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! 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)! 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. Open Documentation - Öffne Dokumentation + Open Documentation Select file - Datei auswählen + Select file @@ -592,23 +593,23 @@ Refreshing! - Aktualisiere! + Refreshing! Pull to refresh! - Drücken zum aktualisieren! + Pull to refresh! 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! Open containing folder - Enthaltenden Ordner öffnen + Open containing folder @@ -628,7 +629,7 @@ 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? @@ -636,12 +637,12 @@ 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 Browse the Steam Workshop - Stöbere durch den Steam Workshop + Browse the Steam Workshop @@ -649,12 +650,12 @@ License - Lizenz + 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. - 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. @@ -689,8 +690,8 @@ Your monitor setup changed! Please configure your wallpaper again. - Deine Bildschirm aufstellung hat sich geändert! -Bitte Konfiguriere deine Wallpaper noch erneut + Your monitor setup changed! + Please configure your wallpaper again. @@ -698,23 +699,23 @@ Bitte Konfiguriere deine Wallpaper noch erneut Wallpaper Configuration - Wallpaper Konfiguration + Wallpaper Configuration Remove selected - Die Auswahl entfernen + Remove selected Remove - Entferne + Remove Wallpapers - Hintergründe + Wallpapers @@ -727,12 +728,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut Set color - Farbe Festlegen + Set color Please choose a color - Bitte wähle eine Farbe aus + Please choose a color @@ -740,12 +741,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut All - Alles + All Scenes - Szenen + Scenes @@ -760,22 +761,22 @@ Bitte Konfiguriere deine Wallpaper noch erneut Install Date Ascending - Installationsdatum aufsteigend + Install Date Ascending Install Date Descending - Installationsdatum absteigend + Install Date Descending Subscribed items: - Abonnierte Inhalte: + Subscribed items: Upload to the Steam Workshop - Zum Steam Workshop Hochladen + Upload to the Steam Workshop @@ -783,12 +784,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut Configurate active Wallpaper or Widgets - Konfiguriere aktive Wallpaper oder Widgets + Configurate active Wallpaper or Widgets No active Wallpaper or Widgets - Keine aktiven Wallpaper oder Widgets + No active Wallpaper or Widgets @@ -801,7 +802,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Back - Zurück + Back @@ -809,7 +810,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut 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 @@ -819,12 +820,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut View The Steam Subscriber Agreement - Siehe dir den Steam-Abonnentenvertrag + View The Steam Subscriber Agreement Accept Steam Workshop Agreement - Aktzeptiere den Steam-Abonnentenvertrag + Accept Steam Workshop Agreement @@ -832,37 +833,37 @@ Bitte Konfiguriere deine Wallpaper noch erneut Create a QML Wallpaper - Erstelle ein QML Wallpaper + Create a QML Wallpaper General - Allgemein + General Wallpaper name - Wallpaper Name + Wallpaper name Created By - Erstellt von + Created By Description - Beschreibung + Description License & Tags - Lizenz & Schlagwörter + License & Tags Preview Image - Vorschaubild + Preview Image @@ -870,27 +871,27 @@ Bitte Konfiguriere deine Wallpaper noch erneut Create a QML widget - Erstelle ein QML Widget + Create a QML widget General - Allgemein + General Widget name - Widget Name + Widget name Created by - Erstellt von + Created by Tags - Schlagwörter + Tags @@ -898,7 +899,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Profile saved successfully! - Profil erfolgreich gespeichert! + Profile saved successfully! @@ -914,7 +915,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Search for Wallpaper & Widgets - Suche nach Wallpaper & Widgets + Search for Wallpaper & Widgets @@ -922,7 +923,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut General - Allgemein + General @@ -932,22 +933,22 @@ Bitte Konfiguriere deine Wallpaper noch erneut 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. High priority Autostart - Hohe Priorität für Autostart + High priority 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. Send anonymous crash reports and statistics - Sende anonyme Absturzberichte und Statistiken + Send anonymous crash reports and statistics @@ -957,12 +958,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut Set save location - Speicherort auswählen + Set save location Set location - Standort auswählen + Set location @@ -972,17 +973,17 @@ Bitte Konfiguriere deine Wallpaper noch erneut 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! Language - Sprache + Language Set the ScreenPlay UI Language - Wähle die Sprache des Programms aus + Set the ScreenPlay UI Language @@ -992,7 +993,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut German - Deutsch + German @@ -1032,67 +1033,67 @@ Bitte Konfiguriere deine Wallpaper noch erneut Theme - Thema + Theme Switch dark/light theme - Wechsle Dunkles/Helles Design + Switch dark/light theme System Default - System Standard + System Default Dark - Dunkel + Dark Light - Hell + Light Performance - Leistung + Performance Pause wallpaper video rendering while another app is in the foreground - Pausiere Wallpaper Video Rendering wenn eine andere App im Vordergrund ist + Pause wallpaper video rendering while another app is in the foreground We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Wir deaktivieren das Video Rendering (Aber nicht die Sounds) für die beste Leistung. Wenn du damit probleme haben solltest kannst dieses Verhalten hier ausschalten. Ein Neustart wird aber von Nöten sein! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! Default Fill Mode - Standard-Füllmodus + Default Fill Mode Set this property to define how the video is scaled to fit the target area. - Lege diese Eigenschaft fest, um zu definieren, wie das Video skaliert wird, damit es in den Zielbereich passt. + Set this property to define how the video is scaled to fit the target area. Stretch - Strecken + Stretch Fill - Ausfüllen + Fill Contain - Enthält + Contain @@ -1102,22 +1103,22 @@ Bitte Konfiguriere deine Wallpaper noch erneut Scale-Down - Runter Skallieren + Scale-Down About - Über + About Thank you for using ScreenPlay - Danke, dass du ScreenPlay verwendest + 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: - Moin, ich bin Elias Steurer, auch bekannt als Kelteseth und ich bin der Entwickler von ScreenPlay. Danke, dass du meine Software nutzt. Du kannst mir hier folgen, um Updates über ScreenPlay zu erhalten: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: @@ -1127,27 +1128,27 @@ Bitte Konfiguriere deine Wallpaper noch erneut ScreenPlay Build Version - ScreenPlay-Build-Version + ScreenPlay Build Version Open Changelog - Changelog öffnen + Open Changelog Third Party Software - Software von Drittanbietern + Third Party Software ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay wäre ohne die Arbeit anderer nicht möglich. Ein großes Dankeschön dafür geht an: + ScreenPlay would not be possible without the work of others. A big thank you to: Licenses - Lizenzen + Licenses @@ -1157,27 +1158,27 @@ Bitte Konfiguriere deine Wallpaper noch erneut If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Wenn den ScreenPlay sich falsch verhält, ist hier eine gute Möglichkeit, nach Antworten zu suchen. Hier werden alle Protokolle und Warnungen während der Laufzeit angezeigt. + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. Show Logs - Zeige Logs + Show Logs Data Protection - Datenschutz + Data Protection We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Wir verwenden deine Daten sehr sorgfältig, um ScreenPlay zu verbessern. Wir verkaufen oder teilen diese (anonymen) Informationen nicht mit anderen! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! Privacy - Datenschutz + Privacy @@ -1185,7 +1186,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Copy text to clipboard - Kopiere den Text in die Zwischenablage + Copy text to clipboard @@ -1193,7 +1194,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Tools Overview - Werkzeugeübersicht + Tools Overview @@ -1203,7 +1204,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Video Import (.webm) - Importiere Video (.webm) + Video Import (.webm) @@ -1238,7 +1239,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Set Wallpaper - Wallpaper Festlegen + Set Wallpaper @@ -1248,37 +1249,37 @@ Bitte Konfiguriere deine Wallpaper noch erneut Headline - Überschrift + Headline Select a Monitor to display the content - Wähle einen Monitor zur Anzeige des Inhalts + Select a Monitor to display the content Set Volume - Audiolautstärke einstellen + Set Volume Fill Mode - Füll-Modus + Fill Mode Stretch - Strecken + Stretch Fill - Ausfüllen + Fill Contain - Enthält + Contain @@ -1288,12 +1289,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut Scale-Down - Runter-Skallieren + Scale-Down Size: - Größe: + Size: @@ -1303,37 +1304,37 @@ Bitte Konfiguriere deine Wallpaper noch erneut No description... - Leine Beschreibung... + No description... Click here if you like the content - Klicke hier wenn du den Inhalt magst + Click here if you like the content 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 Subscribtions: - Abonnements + Subscribtions: Open In Steam - Öffne in Steam + Open In Steam Subscribed! - Abonniert + Subscribed! Subscribe - Abonniere + Subscribe @@ -1341,12 +1342,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut Free Tools to create wallpaper - Gratis App zur Erstellung von Hintergünden + Free Tools to create wallpaper 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! @@ -1354,7 +1355,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Could not load steam integration! - Konnte Steam integration nicht Laden! + Could not load steam integration! @@ -1363,12 +1364,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut Back - Zurück + Back Forward - Vor + Forward @@ -1376,17 +1377,17 @@ Bitte Konfiguriere deine Wallpaper noch erneut Loading - laden + Loading Download now! - Jetzt Downloaden! + Download now! Downloading... - Am Herunterladen... + Downloading... @@ -1396,12 +1397,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut Open In Steam - Öffne in Steam + Open In Steam Profile - Profil + Profile @@ -1411,72 +1412,72 @@ Bitte Konfiguriere deine Wallpaper noch erneut Search for Wallpaper and Widgets... - Suche nach Hintergründen und Widgets... + Search for Wallpaper and Widgets... Open Workshop in Steam - Öffne Workshop in Steam + Open Workshop in Steam Ranked By Vote - Nach Bewertungen sortieren + Ranked By Vote Publication Date - Veröffentlichungs Datum + Publication Date Ranked By Trend - Nach Trends sortieren + Ranked By Trend Favorited By Friends - Von Freunden Favorisiert + Favorited By Friends Created By Friends - Von Freunden erstellt + Created By Friends Created By Followed Users - Von Gefolgten Benutzern erstellt + Created By Followed Users Not Yet Rated - Noch nicht Bewertet + Not Yet Rated Total VotesAsc - Abstimmungs Anzahl Absteigend + Total VotesAsc Votes Up - Abstimmungs Anzahl Steigend + Votes Up Total Unique Subscriptions - Anzahl Einzigartiger Abonnennts + Total Unique Subscriptions Back - Zurück + Back Forward - Vor + Forward @@ -1484,22 +1485,22 @@ Bitte Konfiguriere deine Wallpaper noch erneut Save - Speichern + Save Add tag - Tag hinzufügen + Add tag Cancel - Abbrechen + Cancel Add Tag - Tag hinzufügen + Add Tag @@ -1507,12 +1508,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut Label - Beschriftung + Label *Required - *Benötigt + *Required @@ -1520,39 +1521,39 @@ Bitte Konfiguriere deine Wallpaper noch erneut ScreenPlay - Double click to change you settings. - ScreenPlay - Doppelklicke, um deine Einstellungen zu ändern. + ScreenPlay - Double click to change you settings. Open ScreenPlay - Öffne ScreenPlay + Open ScreenPlay Mute all - Alles stummschalten + Mute all Unmute all - Alle Stummschaltungen aufheben + Unmute all Pause all - Alles pausieren + Pause all Play all - Alles abspielen + Play all Quit - Beenden + Quit @@ -1560,22 +1561,22 @@ Bitte Konfiguriere deine Wallpaper noch erneut Upload Wallpaper/Widgets to Steam - Lade Wallpaper/Widget auf Steam hoch + Upload Wallpaper/Widgets to Steam Abort - Abbrechen + Abort Upload Selected Projects - Lade ausgewähltes Projekt hoch + Upload Selected Projects Finish - Beenden + Finish @@ -1583,17 +1584,17 @@ Bitte Konfiguriere deine Wallpaper noch erneut Type: - Typ: + Type: Open Folder - Öffne Ordner + Open Folder Invalid Project! - Ungültiges Projekt + Invalid Project! @@ -1601,177 +1602,177 @@ Bitte Konfiguriere deine Wallpaper noch erneut Fail - Fehler + Fail No Connection - Keine Verbindung + No Connection Invalid Password - Falsches Passwort + Invalid Password Logged In Elsewhere - Woanders Eingelogged + Logged In Elsewhere Invalid Protocol Version - Falsche Protokoll Version + Invalid Protocol Version Invalid Param - Falsche Parameter + Invalid Param File Not Found - Datei nicht gefunden + File Not Found Busy - Beschäftigt + Busy Invalid State - ungültiger Status + Invalid State Invalid Name - ungültiger Name + Invalid Name Invalid Email - ungültige Email + Invalid Email Duplicate Name - Doppelter Name + Duplicate Name Access Denied - Zugriff verweigert + Access Denied Timeout - Auszeit + Timeout Banned - Gebannt + Banned Account Not Found - Account nicht gefunden + Account Not Found Invalid SteamID - ungültige Steam ID + Invalid SteamID Service Unavailable - Service nicht Verfügbar + Service Unavailable Not Logged On - Nicht angemeldet + Not Logged On Pending - Ausstehend + Pending Encryption Failure - Verschlüsselungsfehler + Encryption Failure Insufficient Privilege - Unzureichende Berechtigung + Insufficient Privilege Limit Exceeded - Limit überschritten + Limit Exceeded Revoked - Wiederrufen + Revoked Expired - Abgelaufen + Expired Already Redeemed - Bereits eingelöst + Already Redeemed Duplicate Request - Doppelte anfrage + Duplicate Request Already Owned - Bereits vergeben + Already Owned IP Not Found - IP nicht gefunden + IP Not Found Persist Failed - Anhalten fehlgeschlagen + Persist Failed Locking Failed - Sperren fehlgeschlagen + Locking Failed Logon Session Replaced - Anmeldesitzung ersetzt + Logon Session Replaced Connect Failed - Verbindung gescheitert + Connect Failed Handshake Failed - Handshake fehlgeschlagen + Handshake Failed IO Failure - IO Fehler + IO Failure @@ -1781,32 +1782,32 @@ Bitte Konfiguriere deine Wallpaper noch erneut Shopping Cart Not Found - Warenkorb nicht gefunden + Shopping Cart Not Found Blocked - Blockiert + Blocked Ignored - Ignoriert + Ignored No Match - Keine Übereinstimmung + No Match Account Disabled - Account deaktiviert + Account Disabled Service ReadOnly - Schreibgeschützter Dienst + Service ReadOnly @@ -1821,42 +1822,42 @@ Bitte Konfiguriere deine Wallpaper noch erneut Content Version - Inhaltsversion + Content Version Try Another CM - Versuch ein anderen CM + Try Another CM Password Required T oKick Session - Passwort benötigt zum beenden der Sitzung + Password Required T oKick Session Already Logged In Elsewhere - Bereits woanders eingeloggt + Already Logged In Elsewhere Suspended - Gesperrt + Suspended Cancelled - Abgebrochen + Cancelled Data Corruption - Datenkorruption + Data Corruption Disk Full - Festplatte voll + Disk Full @@ -1866,22 +1867,22 @@ Bitte Konfiguriere deine Wallpaper noch erneut Password Unset - Passwort aufheben + Password Unset External Account Unlinked - Externe Accountverknüpfung aufheben + External Account Unlinked PSN Ticket Invalid - ungültiges PSN Ticket + PSN Ticket Invalid External Account Already Linked - Externer Account ist bereits verbunden + External Account Already Linked @@ -1891,77 +1892,77 @@ Bitte Konfiguriere deine Wallpaper noch erneut Illegal Password - Nicht unterstütztes Passwort + Illegal Password Same As Previous Value - Gleicher wert wie vorheriger + Same As Previous Value Account Logon Denied - Anmeldung verweigert + Account Logon Denied Cannot Use Old Password - Du kannst dein altes Passwort nicht benutzen + Cannot Use Old Password Invalid Login AuthCode - Falscher Login AuthCode + Invalid Login AuthCode Account Logon Denied No Mail - Account anmeldung abgelehnt, keine Mail + Account Logon Denied No Mail Hardware Not Capable Of IPT - Hardware ist nicht IPT fähig + Hardware Not Capable Of IPT IPT Init Error - IPT Init Fehler + IPT Init Error Parental Control Restricted - Kindersicherung eingeschränkt + Parental Control Restricted Facebook Query Error - Facebook-Abfragefehler + Facebook Query Error Expired Login Auth Code - Abgelaufener Login Auth Code + Expired Login Auth Code IP Login Restriction Failed - IP-Anmeldebeschränkung fehlgeschlagen + IP Login Restriction Failed Account Locked Down - Account gesperrt + Account Locked Down Account Logon Denied Verified Email Required - Account anmeldung abgelehnt, Verifizierte E-Mail erforderlich + Account Logon Denied Verified Email Required No MatchingURL - Keine passende URL + No MatchingURL @@ -1971,52 +1972,52 @@ Bitte Konfiguriere deine Wallpaper noch erneut Require Password ReEntry - Passwort erneurt eintragen + Require Password ReEntry Value Out Of Range - Wert außerhalb des Bereichs + Value Out Of Range Unexpecte Error - Unerwarteter Fehler + Unexpecte Error Disabled - Deaktiviert + Disabled Invalid CEG Submission - Ungültige CEG-Einreichung + Invalid CEG Submission Restricted Device - Eingeschränktes Gerät + Restricted Device Region Locked - Region gesperrt + Region Locked Rate Limit Exceeded - Frequenzgrenze überschritten + Rate Limit Exceeded Account Login Denied Need Two Factor - Accountanmeldung verweigert zwei Faktor Auth benötigt + Account Login Denied Need Two Factor Item Deleted - item gelöscht + Item Deleted @@ -2026,147 +2027,147 @@ Bitte Konfiguriere deine Wallpaper noch erneut Two Factor Code Mismatch - Zwei Faktor Code stimmt nicht überein + Two Factor Code Mismatch Two Factor Activation Code Mismatch - Zwei Faktor Code stimmt nicht überein + Two Factor Activation Code Mismatch Account Associated To Multiple Partners - Account ist mehreren Partnern zugeordnet + Account Associated To Multiple Partners Not Modified - Nicht modifiziert + Not Modified No Mobile Device - Kein Mobilgerät + No Mobile Device Time Not Synced - Zeit nicht synchronisiert + Time Not Synced Sms Code Failed - SMS-Code fehlgeschlagen + Sms Code Failed Account Limit Exceeded - Kontolimit überschritten + Account Limit Exceeded Account Activity Limit Exceeded - Kontoaktivitätslimit überschritten + Account Activity Limit Exceeded Phone Activity Limit Exceeded - Telefonaktivitätslimit überschritten + Phone Activity Limit Exceeded Refund To Wallet - Rückerstattung an Wallet + Refund To Wallet Email Send Failure - E-Mail-Sendefehler + Email Send Failure Not Settled - Nicht geklärt + Not Settled Need Captcha - Captcha benötigt + Need Captcha GSLT Denied - GSLT abgelehnt + GSLT Denied GS Owner Denied - GS besitzer abgelehnt + GS Owner Denied Invalid Item Type - Ungültiger Item Typ + Invalid Item Type IP Banned - IP Gebannt + IP Banned GSLT Expired - GSLT Abgelaufen + GSLT Expired Insufficient Funds - Unzureichende Mittel + Insufficient Funds Too Many Pending - Zu viele ausstehend + Too Many Pending No Site Licenses Found - Keine Site-Lizenzen gefunden + No Site Licenses Found WG Network Send Exceeded - WG-Netzwerk senden überschritten + WG Network Send Exceeded Account Not Friends - Account nicht befreundet + Account Not Friends Limited User Account - Eingeschränktes Benutzerkonto + Limited User Account Cant Remove Item - Item kann nicht Entfernt werden + Cant Remove Item Account Deleted - Account gelöscht + Account Deleted Existing User Cancelled License - Benutzer hat Lizenz Annulliert + Existing User Cancelled License Community Cooldown - Community-Abklingzeit + Community Cooldown @@ -2176,7 +2177,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Upload Progress: - Upload-Fortschritt: + Upload Progress: @@ -2184,37 +2185,37 @@ Bitte Konfiguriere deine Wallpaper noch erneut Create a Website Wallpaper - Erstelle ein Website Wallpaper + Create a Website Wallpaper General - Allgemein + General Wallpaper name - Wallpaper Name + Wallpaper name Created By - Erstellt von + Created By Description - Beschreibung + Description Tags - Schlagwörter + Tags Preview Image - Vorschaubild + Preview Image @@ -2222,12 +2223,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut Save - Speichern + Save Saving... - Speichern... + Saving... @@ -2235,12 +2236,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut Successfully subscribed to Workshop Item! - Erfolgreich Steam Workshop Item Abonniert! + Successfully subscribed to Workshop Item! Download complete! - Download abgeschlossen! + Download complete! @@ -2248,7 +2249,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut News & Patchnotes - Neuigkeiten & Patchnotes + News & Patchnotes From 5648de6b1a935b8b8e55f83449c92e12b9c9c991 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:32:29 +0000 Subject: [PATCH 24/76] New translations ScreenPlay_.ts (Chinese Simplified) --- ScreenPlay/translations/ScreenPlay_zh_CN.ts | 808 ++++++++++---------- 1 file changed, 404 insertions(+), 404 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_zh_CN.ts b/ScreenPlay/translations/ScreenPlay_zh_CN.ts index 9b3646a1..abeafb94 100644 --- a/ScreenPlay/translations/ScreenPlay_zh_CN.ts +++ b/ScreenPlay/translations/ScreenPlay_zh_CN.ts @@ -6,17 +6,17 @@ Red - + Red Green - 绿 + Green Blue - + Blue @@ -61,7 +61,7 @@ Alpha: - 透明度: + Alpha: @@ -74,32 +74,32 @@ News - 新闻 + News Wiki - 维基 + Wiki Forum - 论坛 + Forum Issue List - 议题列表 + Issue List Contribute - 贡献 + Contribute Steam Workshop - Steam 创意工坊 + Steam Workshop @@ -107,7 +107,7 @@ Open in browser - 在浏览器中打开 + Open in browser @@ -115,36 +115,36 @@ 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: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv - 取决于您的PC配置,最好将您的壁纸转换为特定的视频编码格式。如果它们的性能都不好,您还可以尝试 QML 壁纸!已支持的视频格式有: + 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 @@ -152,17 +152,17 @@ 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! @@ -175,82 +175,82 @@ 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... Generating preview gif... - 生成预览GIF... + Generating preview 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 Abort - 中止 + Abort Save - 保存 + Save Save Wallpaper... - 保存壁纸... + Save Wallpaper... @@ -258,47 +258,47 @@ 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 @@ -306,17 +306,17 @@ Clear - 清空 + Clear Select File - 选择文件 + Select File Please choose a file - 请选择文件 + Please choose a file @@ -324,37 +324,37 @@ Import a Gif Wallpaper - 导入 GIF 壁纸 + Import a Gif Wallpaper Drop a *.gif file here or use 'Select file' below. - 拖放一个 *.gif 文件到这里,或者使用下面的 '选择文件'。 + Drop a *.gif file here or use 'Select file' below. Select your gif - 选择您的 GIF + Select your gif General - 常规 + General Wallpaper name - 壁纸名称 + Wallpaper name Created By - 作者 + Created By Tags - 标签 + Tags @@ -362,37 +362,37 @@ Create a HTML Wallpaper - 创建 HTML 壁纸 + Create a HTML Wallpaper General - 常规 + General Wallpaper name - 壁纸名称 + Wallpaper name Created By - 作者 + Created By Description - 简介 + Description License & Tags - 许可证 & 标签 + License & Tags Preview Image - 预览图 + Preview Image @@ -400,27 +400,27 @@ Create a HTML widget - 创建 HTML 部件 + Create a HTML widget General - 常规 + General Widget name - 部件名称 + Widget name Created by - 作者 + Created by Tags - 标签 + Tags @@ -428,7 +428,7 @@ Headline - 标题 + Headline @@ -436,7 +436,7 @@ Headline Section - 摘要 + Headline Section @@ -444,17 +444,17 @@ Set your own preview image - 设置您的预览图 + Set your own preview image Clear - 清空 + Clear Select Preview Image - 选择预览图 + Select Preview Image @@ -467,87 +467,87 @@ 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... Generating preview gif... - 生成预览 GIF... + Generating preview 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 Abort - 中止 + Abort Save - 保存 + Save Save Wallpaper... - 保存壁纸... + Save Wallpaper... @@ -555,32 +555,32 @@ Import a .webm video - 导入 .webm 视频 + 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! - 导入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! Invalid file type. Must be valid VP8 or VP9 (*.webm)! - 文件类型无效。必须是 VP8 / VP9(*.webm)! + Invalid file type. Must be valid VP8 or VP9 (*.webm)! Drop a *.webm file here or use 'Select file' below. - 将一个webm文件拖到这里,或者使用下面的'选择文件' + Drop a *.webm file here or use 'Select file' below. Open Documentation - 打开文档 + Open Documentation Select file - 选择文件 + Select file @@ -593,43 +593,43 @@ 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? @@ -637,12 +637,12 @@ 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 @@ -650,38 +650,38 @@ 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 linking. 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! 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. @@ -690,8 +690,8 @@ Your monitor setup changed! Please configure your wallpaper again. - 您的显示器设置已更改! - 请重新配置您的壁纸。 + Your monitor setup changed! + Please configure your wallpaper again. @@ -699,28 +699,28 @@ Wallpaper Configuration - 壁纸配置 + Wallpaper Configuration Remove selected - 移除已选择 + Remove selected Remove - 移除 + Remove Wallpapers - 壁纸 + Wallpapers Widgets - 物件 + Widgets @@ -728,12 +728,12 @@ Set color - 设置颜色 + Set color Please choose a color - 请选择颜色 + Please choose a color @@ -741,42 +741,42 @@ 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 @@ -784,12 +784,12 @@ Configurate active Wallpaper or Widgets - 设置活动壁纸或物件 + Configurate active Wallpaper or Widgets No active Wallpaper or Widgets - 没有活动壁纸或物件 + No active Wallpaper or Widgets @@ -802,7 +802,7 @@ Back - 返回 + Back @@ -810,22 +810,22 @@ You Need to Agree To The Steam Subscriber Agreement First - 您应先同意Steam订阅者协议 + 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. - 需要网络连接与免费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. View The Steam Subscriber Agreement - 查看Steam订阅者协议 + View The Steam Subscriber Agreement Accept Steam Workshop Agreement - 接受Steam创意工坊协议 + Accept Steam Workshop Agreement @@ -833,37 +833,37 @@ Create a QML Wallpaper - 创建一个QML壁纸 + Create a QML Wallpaper General - 常规 + General Wallpaper name - 壁纸名 + Wallpaper name Created By - 作者 + Created By Description - 简介 + Description License & Tags - 许可证 & 标签 + License & Tags Preview Image - 预览图 + Preview Image @@ -871,27 +871,27 @@ Create a QML widget - 创建一个QML部件 + Create a QML widget General - 常规 + General Widget name - 部件名 + Widget name Created by - 作者 + Created by Tags - 标签 + Tags @@ -899,7 +899,7 @@ Profile saved successfully! - 配置保存成功! + Profile saved successfully! @@ -915,7 +915,7 @@ Search for Wallpaper & Widgets - 搜索壁纸和物件... + Search for Wallpaper & Widgets @@ -923,262 +923,262 @@ 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. 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. 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! 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! Language - 语言 + Language Set the ScreenPlay UI Language - 设置ScreenPlay界面语言 + Set the ScreenPlay UI Language English - 英语 + English German - 德语 + German Chinese - Simplified - 中文(简体) + Chinese - Simplified Russian - 俄语 + Russian French - 法语 + French Spanish - 西班牙语 + Spanish Korean - 韩语 + Korean Vietnamese - 越南语 + Vietnamese Portuguese (Brazil) - 英语(巴西) + Portuguese (Brazil) Theme - 主题 + Theme Switch dark/light theme - 切换到暗/亮主题 + Switch dark/light theme System Default - 跟随系统 + System Default Dark - + Dark Light - + Light Performance - 性能 + Performance Pause wallpaper video rendering while another app is in the foreground - 当其他应用程序在前台时,暂停壁纸视频渲染 + Pause wallpaper video rendering while another app is in the foreground We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - 我们禁用视频渲染(不是音频)以获得最佳性能。如果您有问题,可以在此处禁用此行为。 需要重启壁纸! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! Default Fill Mode - 默认填充模式 + Default Fill Mode Set this property to define how the video is scaled to fit the target area. - 设置此属性可定义视频的缩放方式以适应目标区域。 + Set this property to define how the video is scaled to fit the target area. Stretch - 拉伸 + Stretch Fill - 填充 + Fill Contain - 适应 + Contain Cover - 平铺 + Cover Scale-Down - 裁剪 + Scale-Down About - 关于 + About Thank you for using ScreenPlay - 感谢您的使用 + Thank you for using ScreenPlay Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - 您好,我是Elias Steurer,也叫Kelteseth,我是ScreenPlay的开发者。感谢您使用我的软件。您可以在这里关注我,接收ScreenPlay的更新。 + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Version - 版本 + Version ScreenPlay Build Version - ScreenPlay编译版本 + ScreenPlay Build Version Open Changelog - 打开更改日志。 + Open Changelog Third Party Software - 第三方软件 + Third Party Software ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay离不开一些人的帮助。非常感谢你们: + ScreenPlay would not be possible without the work of others. A big thank you to: Licenses - 许可证 + Licenses Logs - 日志 + Logs If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - 如果您的ScreenPlay出错,这是个很好的查错方式。它显示所有的日志和运行时警告。 + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. Show Logs - 显示日志 + Show Logs Data Protection - 数据保护 + Data Protection We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - 我们使用您的数据提升ScreenPlay的体验。我们承诺不出售或分享这些匿名信息! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! Privacy - 隐私 + Privacy @@ -1186,7 +1186,7 @@ Copy text to clipboard - 复制文本至剪贴板 + Copy text to clipboard @@ -1194,7 +1194,7 @@ Tools Overview - 工具概览 + Tools Overview @@ -1204,137 +1204,137 @@ Video Import (.webm) - 视频导入 (.webm) + Video Import (.webm) GIF Wallpaper - GIF 壁纸 + GIF Wallpaper QML Wallpaper - QML 壁纸 + QML Wallpaper HTML5 Wallpaper - HTML5 壁纸 + HTML5 Wallpaper Website Wallpaper - 网页壁纸 + Website Wallpaper QML Widget - QML 部件 + QML Widget HTML Widget - HTML 部件 + HTML Widget 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 Subscribed! - 已订阅! + Subscribed! Subscribe - 订阅 + Subscribe @@ -1342,12 +1342,12 @@ 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! @@ -1355,7 +1355,7 @@ Could not load steam integration! - 无法加载steam集成! + Could not load steam integration! @@ -1364,12 +1364,12 @@ Back - 返回 + Back Forward - 前进 + Forward @@ -1377,32 +1377,32 @@ Loading - 加载中 + Loading Download now! - 开始下载! + Download now! Downloading... - 下载中... + Downloading... Details - 查看详情 + Details Open In Steam - 在Steam打开 + Open In Steam Profile - 配置 + Profile @@ -1412,72 +1412,72 @@ Search for Wallpaper and Widgets... - 搜索壁纸和物件... + Search for Wallpaper and Widgets... Open Workshop in Steam - 在Steam中打开创意工坊 + Open Workshop in 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 @@ -1485,22 +1485,22 @@ Save - 保存 + Save Add tag - 添加标签 + Add tag Cancel - 取消 + Cancel Add Tag - 添加标签 + Add Tag @@ -1508,12 +1508,12 @@ Label - 标识 + Label *Required - *必要的 + *Required @@ -1521,39 +1521,39 @@ ScreenPlay - Double click to change you settings. - ScreenPlay - 双击以改变设置 + ScreenPlay - Double click to change you settings. Open ScreenPlay - 打开ScreenPlay + Open ScreenPlay Mute all - 关闭全部提醒 + Mute all Unmute all - 开启全部提醒 + Unmute all Pause all - 暂停全部 + Pause all Play all - 播放全部 + Play all Quit - 退出 + Quit @@ -1561,22 +1561,22 @@ Upload Wallpaper/Widgets to Steam - 上传 壁纸/物件 到Steam + Upload Wallpaper/Widgets to Steam Abort - 取消 + Abort Upload Selected Projects - 上传所选项目 + Upload Selected Projects Finish - 结束 + Finish @@ -1584,17 +1584,17 @@ Type: - 类型: + Type: Open Folder - 打开文件夹 + Open Folder Invalid Project! - 无效的项目! + Invalid Project! @@ -1602,582 +1602,582 @@ 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 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 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 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 Expired Login Auth Code - 过期的登录授权码 + Expired Login Auth Code IP Login Restriction Failed - IP登录限制失败 + IP Login Restriction Failed 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 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 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: @@ -2185,37 +2185,37 @@ 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 @@ -2223,12 +2223,12 @@ Save - 保存 + Save Saving... - 保存中... + Saving... @@ -2236,12 +2236,12 @@ Successfully subscribed to Workshop Item! - 成功订阅创意工坊物品! + Successfully subscribed to Workshop Item! Download complete! - 下载完成! + Download complete! @@ -2249,7 +2249,7 @@ News & Patchnotes - 新闻和更改日志 + News & Patchnotes From d426e9084118311b6d3a2afe129f02feffb559e1 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 12:32:31 +0000 Subject: [PATCH 25/76] New translations ScreenPlay_.ts (Vietnamese) --- ScreenPlay/translations/ScreenPlay_vi_VN.ts | 580 ++++++++++---------- 1 file changed, 290 insertions(+), 290 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_vi_VN.ts b/ScreenPlay/translations/ScreenPlay_vi_VN.ts index e3d654e5..7bd6bd37 100644 --- a/ScreenPlay/translations/ScreenPlay_vi_VN.ts +++ b/ScreenPlay/translations/ScreenPlay_vi_VN.ts @@ -6,17 +6,17 @@ Red - Đỏ + Red Green - Xanh lá + Green Blue - Xanh dương + Blue @@ -31,37 +31,37 @@ R: - Đỏ: + R: G: - Xanh lá: + G: B: - Xanh dương: + B: H: - Màu: + H: S: - Độ bão hòa: + S: V: - Giá trị: + V: Alpha: - Độ trong suốt: + Alpha: @@ -74,7 +74,7 @@ News - Tin tức + News @@ -84,17 +84,17 @@ Forum - Diễn đàn + Forum Issue List - D.sách lỗi + Issue List Contribute - Đóng góp + Contribute @@ -107,7 +107,7 @@ Open in browser - Mở trong trình duyệt + Open in browser @@ -115,36 +115,36 @@ Import any video type - Nhập bất kì loại video + 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: *.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ợ: + 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: - Chọn loại video mà bạn muốn: + Set your preffered video codec: 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. Open Documentation - Mở tài liệu tham khảo + Open Documentation Select file - Chọn tệp + Select file @@ -152,17 +152,17 @@ An error occurred! - Đã có lỗi xảy ra! + An error occurred! Copy text to clipboard - Sao chép vào khay nhớ tạm + Copy text to clipboard 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! @@ -175,82 +175,82 @@ Generating preview image... - Đang tạo ra ảnh xem trước... + Generating preview image... Generating preview thumbnail image... - Đang tạo ra hình thu nhỏ xem trước... + Generating preview thumbnail image... Generating 5 second preview video... - Đang tao ra video 5 giây xem trước... + Generating 5 second preview video... Generating preview gif... - Đang tạo ra gif xem trước... + Generating preview gif... Converting Audio... - Đang chuyển đổi dạng âm thanh... + Converting Audio... 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! Converting Video ERROR! - Đã có lỗi xảy ra khi chuyển đổi dạng video! + Converting Video ERROR! Analyse Video ERROR! - Đã có lỗi xảy ra khi đang xử lý video! + Analyse Video ERROR! Convert a video to a wallpaper - Chuyển đổi một video sang ảnh động + Convert a video to a wallpaper Generating preview video... - Đang tạo ra video xem trước... + Generating preview video... Name (required!) - Tên (bắt buộc!) + Name (required!) Description - Mô tả + Description Youtube URL - Link YouTube + Youtube URL Abort - Hủy bỏ + Abort Save - Lưu + Save Save Wallpaper... - Lưu hình nền... + Save Wallpaper... @@ -258,47 +258,47 @@ Volume - Âm lượng + Volume Playback rate - Tốc độ phát lại + Playback rate Current Video Time - Thời gian video hiện tại + Current Video Time Fill Mode - Cách lấp đầy + Fill Mode Stretch - Kéo dài + Stretch Fill - Lấp đầy + Fill Contain - Chứa đựng + Contain Cover - Bao phủ + Cover Scale_Down - Giảm tỉ lệ + Scale_Down @@ -306,17 +306,17 @@ Clear - Xóa + Clear Select File - Chọn một tệp + Select File Please choose a file - Xin hãy chọn một tệp + Please choose a file @@ -324,37 +324,37 @@ Import a Gif Wallpaper - Nhập một ảnh động gif + Import a Gif Wallpaper 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. Select your gif - Chọn gif của bạn + Select your gif General - Chung + General Wallpaper name - Tên ảnh động + Wallpaper name Created By - Đươc tạo bởi + Created By Tags - Thẻ + Tags @@ -362,37 +362,37 @@ Create a HTML Wallpaper - Tạo một ảnh động HTML + Create a HTML Wallpaper General - Chung + General Wallpaper name - Tên ảnh động + Wallpaper name Created By - Được tạo bởi + Created By Description - Mô tả + Description License & Tags - Bản quyền & Thẻ + License & Tags Preview Image - Ảnh xem trước + Preview Image @@ -400,27 +400,27 @@ Create a HTML widget - Tạo một widget HTML + Create a HTML widget General - Chung + General Widget name - Tên widget + Widget name Created by - Đươc tạo bởi + Created by Tags - Thẻ + Tags @@ -428,7 +428,7 @@ Headline - Tiêu đề + Headline @@ -436,7 +436,7 @@ Headline Section - Phần tiêu đề + Headline Section @@ -444,17 +444,17 @@ Set your own preview image - Đặt ảnh xem trước của bạn + Set your own preview image Clear - Xóa + Clear Select Preview Image - Chọn ảnh xem trước + Select Preview Image @@ -467,87 +467,87 @@ AnalyseVideo... - Đang xử lý video... + AnalyseVideo... Generating preview image... - Đang tạo ra ảnh xem trước... + Generating preview image... Generating preview thumbnail image... - Đang tạo ra hình thu nhỏ xem trước... + Generating preview thumbnail image... Generating 5 second preview video... - Đang tao ra video 5 giây xem trước... + Generating 5 second preview video... Generating preview gif... - Đang tạo ra gif xem trước... + Generating preview gif... Converting Audio... - Đang chuyển đổi dạng âm thanh... + Converting Audio... 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! Converting Video ERROR! - Đã có lỗi xảy ra khi chuyển đổi dạng video! + Converting Video ERROR! Analyse Video ERROR! - Đã có lỗi xảy ra khi đang xử lý video! + Analyse Video ERROR! Import a video to a wallpaper - Nhập một video vào hình nền + Import a video to a wallpaper Generating preview video... - Đang tạo ra video xem trước... + Generating preview video... Name (required!) - Tên (bắt buộc!) + Name (required!) Description - Mô tả + Description Youtube URL - Link YouTube + Youtube URL Abort - Hủy bỏ + Abort Save - Lưu + Save Save Wallpaper... - Lưu hình nền... + Save Wallpaper... @@ -555,32 +555,32 @@ Import a .webm video - Nhập một tệp webm + 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! - 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! 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)! 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. Open Documentation - Mở tài liệu tham khảo + Open Documentation Select file - Chọn một tệp + Select file @@ -593,43 +593,43 @@ Refreshing! - Đang làm mới! + Refreshing! Pull to refresh! - Kéo xuống để làm mới! + Pull to refresh! 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! Open containing folder - Mở thư mục chứa hình nền. + Open containing folder Remove Item - Xóa hình nền + Remove Item Remove via Workshop - Xóa nhờ Workshop + Remove via Workshop Open Workshop Page - Mở trang workshop + Open Workshop Page 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? @@ -637,12 +637,12 @@ 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 Browse the Steam Workshop - Duyệt qua Steam Workshop + Browse the Steam Workshop @@ -650,38 +650,38 @@ License - Bản quyền + 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. - 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. 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 linking. 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! 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. 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! 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. @@ -690,8 +690,8 @@ Your monitor setup changed! Please configure your wallpaper again. - 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. + Your monitor setup changed! + Please configure your wallpaper again. @@ -699,23 +699,23 @@ Wallpaper Configuration - Cấu hình ảnh động + Wallpaper Configuration Remove selected - Xóa mục đã chọn + Remove selected Remove - Xóa + Remove Wallpapers - Ảnh động + Wallpapers @@ -728,12 +728,12 @@ Set color - Đặt màu + Set color Please choose a color - Xin hãy chọn một màu + Please choose a color @@ -741,12 +741,12 @@ All - Tất cả + All Scenes - Cảnh + Scenes @@ -761,22 +761,22 @@ Install Date Ascending - Ngày cài đặt tăng dần + Install Date Ascending Install Date Descending - Ngày cài đặt giảm dần + Install Date Descending Subscribed items: - Những mục đã đăng ký: + Subscribed items: Upload to the Steam Workshop - Tải lên Steam Workshop + Upload to the Steam Workshop @@ -784,12 +784,12 @@ 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 No active Wallpaper or Widgets - Không có hình nền hoặc widgets đang hoạt động + No active Wallpaper or Widgets @@ -802,7 +802,7 @@ Back - Quay lại + Back @@ -810,22 +810,22 @@ 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 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. View The Steam Subscriber Agreement - Xem thỏa thuận người đăng ký của Steam + View The Steam Subscriber Agreement Accept Steam Workshop Agreement - Chấp nhận thỏa thuận của Steam Workshop + Accept Steam Workshop Agreement @@ -833,37 +833,37 @@ Create a QML Wallpaper - Tạo một ảnh động QML + Create a QML Wallpaper General - Chung + General Wallpaper name - Tên ảnh động + Wallpaper name Created By - Đươc tạo bởi + Created By Description - Mô tả + Description License & Tags - Bản quyền & Thẻ + License & Tags Preview Image - Ảnh xem trước + Preview Image @@ -871,27 +871,27 @@ Create a QML widget - Tạo một widget QML + Create a QML widget General - Chung + General Widget name - Tên widget + Widget name Created by - Đươc tạo bởi + Created by Tags - Thẻ + Tags @@ -899,7 +899,7 @@ Profile saved successfully! - Đã lưu cấu hình thành công! + Profile saved successfully! @@ -915,7 +915,7 @@ Search for Wallpaper & Widgets - Tìm ảnh động & widgets + Search for Wallpaper & Widgets @@ -923,262 +923,262 @@ General - Chung + General Autostart - Tự động mở + Autostart 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. High priority Autostart - Tự động mở ưu tiên hơn + High priority Autostart 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. 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 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! Set save location - Đặt vị trí lưu + Set save location Set location - Đặt vị trí + Set location Your storage path is empty! - Đường dẫn lưu trữ của bạn đang trống! + Your storage path is empty! 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! Language - Ngôn ngữ + Language Set the ScreenPlay UI Language - Đặt ngôn ngữ của ScreenPlay + Set the ScreenPlay UI Language English - Tiếng Anh + English German - Tiếng Đức + German Chinese - Simplified - Tiếng Trung - Giản thể + Chinese - Simplified Russian - Tiếng Nga + Russian French - Tiếng Pháp + French Spanish - Tiếng Tây Ban Nha + Spanish Korean - Tiếng Hàn Quốc + Korean Vietnamese - Tiếng Việt + Vietnamese Portuguese (Brazil) - Tiếng Bồ Đào Nha (Brazil) + Portuguese (Brazil) Theme - Chủ đề + Theme Switch dark/light theme - Chuyển chủ để sáng/tôí + Switch dark/light theme System Default - Mặc định theo hệ thống + System Default Dark - Tối + Dark Light - Sáng + Light Performance - Hiệu suất + Performance Pause wallpaper video rendering while another app is in the foreground - Tạm dừng ảnh nền video khi có một ứng dụng khác đang mở phía trước + Pause wallpaper video rendering while another app is in the foreground We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - Chúng tôi tắt hiển thị video (không phải âm thanh!) Để có hiệu suất tốt nhất. Nếu bạn gặp sự cố, bạn có thể vô hiệu hóa hành vi này tại đây. Yêu cầu khởi động lại hình nền! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! Default Fill Mode - Cách lấp đầy mặc định + Default Fill Mode Set this property to define how the video is scaled to fit the target area. - Đặt thuộc tính này để xác định cách chia tỷ lệ video để phù hợp với khu vực mục tiêu. + Set this property to define how the video is scaled to fit the target area. Stretch - Kéo dài + Stretch Fill - Lấp đầy + Fill Contain - Chứa đựng + Contain Cover - Bao phủ + Cover Scale-Down - Giảm tỉ lệ + Scale-Down About - Về ứng dụng + About Thank you for using ScreenPlay - Cảm ơn bạn vì đã sử dụng ScreenPlay + Thank you for using ScreenPlay Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Chào, tôi là Elias Steurer hay được biết đến là Kelteseth và tôi là người phát triển của ScreenPlay. Cảm ơn bạn đã sử dụng phần mềm của tôi. Bạn có thể theo dõi tôi để nhận được những cập nhật về ScreenPlay tại: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Version - Phiên bản + Version ScreenPlay Build Version - Bản dựng của ScreenPlay + ScreenPlay Build Version Open Changelog - Mở nhật kí thay đổi + Open Changelog Third Party Software - Phần mềm của bên thứ ba + Third Party Software ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay sẽ không thể có được nếu như không có thành quả của những người khác. Một lời cảm ơn lớn đến: + ScreenPlay would not be possible without the work of others. A big thank you to: Licenses - Bản quyền + Licenses Logs - Nhật kí + Logs If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - Nếu ScreenPlay của bạn hoạt động sai thì đây là một cách tốt để tìm câu trả lời. Ở đây hiện tất cả các nhật kí và cảnh báo trong khi chạy + If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. Show Logs - Hiện nhật kí + Show Logs Data Protection - Bảo vệ dữ liệu + Data Protection We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - Chúng tôi sử dụng dữ liệu của bạn rất cẩn thận để cải thiện ScreenPlay. Chúng tôi không bán hoặc chia sẻ thông tin này (ẩn danh) với người khác! + We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! Privacy - Quyền riêng tư + Privacy @@ -1186,7 +1186,7 @@ Copy text to clipboard - Sao chép vào khay nhớ tạm + Copy text to clipboard @@ -1194,147 +1194,147 @@ Tools Overview - Tổng quan về công cụ + Tools Overview 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) Video Import (.webm) - Nhập video (.webm) + Video Import (.webm) GIF Wallpaper - Hình nền GIF + GIF Wallpaper QML Wallpaper - Hình nền QML + QML Wallpaper HTML5 Wallpaper - Hình nền HTML5 + HTML5 Wallpaper Website Wallpaper - Trang chủ của hình nền + Website Wallpaper QML Widget - Widget QML + QML Widget HTML Widget - Widget HTML + HTML Widget Set Wallpaper - Đặt hình nền + Set Wallpaper Set Widget - Đặt widget + Set Widget Headline - Tiêu đề + Headline 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 Set Volume - Chỉnh âm lượng + Set Volume Fill Mode - Cách lấp đầy + Fill Mode Stretch - Kéo dài + Stretch Fill - Lấp đầy + Fill Contain - Chứa đựng + Contain Cover - Bao phủ + Cover Scale-Down - Giảm tỉ lệ + Scale-Down Size: - Kích cỡ: + Size: MB - MB + MB No description... - Không có mô tả... + No description... 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 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 Subscribtions: - Đăng ký: + Subscribtions: Open In Steam - Mở trong Steam + Open In Steam Subscribed! - Đã đăng kí! + Subscribed! Subscribe - Đăng kí + Subscribe @@ -1342,12 +1342,12 @@ Free Tools to create wallpaper - Những công cụ miễn phí để tạo hình nền + Free Tools to create wallpaper 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! @@ -1355,7 +1355,7 @@ Could not load steam integration! - Không thể tải tích hợp Steam! + Could not load steam integration! @@ -1364,12 +1364,12 @@ Back - Quay lại + Back Forward - Tiếp tục + Forward @@ -1377,32 +1377,32 @@ Loading - Đang tải + Loading Download now! - Tải về ngay! + Download now! Downloading... - Đang tải xuống... + Downloading... Details - Chi tiết + Details Open In Steam - Mở trong Steam + Open In Steam Profile - Hồ sơ + Profile @@ -1412,72 +1412,72 @@ Search for Wallpaper and Widgets... - Tìm hình nền & widgets... + Search for Wallpaper and Widgets... Open Workshop in Steam - Mở workshop trong Steam + Open Workshop in Steam Ranked By Vote - Xếp hạng theo bình chọn + Ranked By Vote Publication Date - Ngày xuất bản + Publication Date Ranked By Trend - Xếp hạng theo xu hướng + Ranked By Trend Favorited By Friends - Được yêu thích bởỉ bạn bè + Favorited By Friends Created By Friends - Được tạo bởi bạn bè + Created By Friends Created By Followed Users - Được tạo bởi những người đã theo dõi + Created By Followed Users Not Yet Rated - Chưa được đánh giá + Not Yet Rated Total VotesAsc - Tổng lượt bình chọn + Total VotesAsc Votes Up - Bình chọn + Votes Up Total Unique Subscriptions - Tổng số đăng ký + Total Unique Subscriptions Back - Quay lại + Back Forward - Tiếp tục + Forward @@ -1485,22 +1485,22 @@ Save - Lưu + Save Add tag - Thêm thẻ + Add tag Cancel - Hủy + Cancel Add Tag - Thêm thẻ + Add Tag @@ -1508,12 +1508,12 @@ Label - Nhãn mác + Label *Required - *Bắt buộc + *Required @@ -1521,39 +1521,39 @@ ScreenPlay - Double click to change you settings. - ScreenPlay - Bấm đúp để thay đổi cài đặt + ScreenPlay - Double click to change you settings. Open ScreenPlay - Mở ScreenPlay + Open ScreenPlay Mute all - Tắt tiếng tất cả hình nền + Mute all Unmute all - Bật tiếng tất cả hình nền + Unmute all Pause all - Tạm dừng tất cả hình nền + Pause all Play all - Phát tất cả hình nền + Play all Quit - Thoát + Quit @@ -1561,22 +1561,22 @@ Upload Wallpaper/Widgets to Steam - Tải hình nền/widgets lên Steam + Upload Wallpaper/Widgets to Steam Abort - Hủy bỏ + Abort Upload Selected Projects - Tải lên dự án đã chọn + Upload Selected Projects Finish - Xong + Finish @@ -1584,17 +1584,17 @@ Type: - Loại: + Type: Open Folder - Mở thư mục + Open Folder Invalid Project! - Dự án không hợp lệ! + Invalid Project! @@ -2185,37 +2185,37 @@ Create a Website Wallpaper - Tạo một hình nền của trang web + Create a Website Wallpaper General - Chung + General Wallpaper name - Tên ảnh động + Wallpaper name Created By - Đươc tạo bởi + Created By Description - Mô tả + Description Tags - Thẻ + Tags Preview Image - Ảnh xem trước + Preview Image @@ -2223,12 +2223,12 @@ Save - Lưu + Save Saving... - Đang lưu... + Saving... @@ -2236,12 +2236,12 @@ Successfully subscribed to Workshop Item! - Đăng ký thành công! + Successfully subscribed to Workshop Item! Download complete! - Tải xuống thành công! + Download complete! @@ -2249,7 +2249,7 @@ News & Patchnotes - Tin tức & Ghi chú bản vá + News & Patchnotes From fce0baca74779dec569ee8f7b2ba780878b94200 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 13:21:43 +0000 Subject: [PATCH 26/76] New translations ScreenPlay_.ts (German) --- ScreenPlay/translations/ScreenPlay_de_DE.ts | 745 ++++++++++---------- 1 file changed, 372 insertions(+), 373 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_de_DE.ts b/ScreenPlay/translations/ScreenPlay_de_DE.ts index 05391b3b..8c2a8114 100644 --- a/ScreenPlay/translations/ScreenPlay_de_DE.ts +++ b/ScreenPlay/translations/ScreenPlay_de_DE.ts @@ -6,67 +6,67 @@ Red - Red + Rot Green - Green + Grün Blue - Blue + Blau RGB - RGB + RGB HSV - HSV + HSV R: - R: + R: G: - G: + G: B: - B: + B: H: - H: + H: S: - S: + S: V: - V: + V: Alpha: - Alpha: + Alpha # - # + # @@ -74,32 +74,32 @@ News - News + Neuigkeiten Wiki - Wiki + Wiki Forum - Forum + Forum Issue List - Issue List + Fehler Liste Contribute - Contribute + Beitragen Steam Workshop - Steam Workshop + Steam Workshop @@ -107,7 +107,7 @@ Open in browser - Open in browser + Öffne in @@ -115,36 +115,35 @@ Import any video type - 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: *.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: - + 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: - Set your preffered video codec: + Bevorzugte Video-Kodierung Festlegen Quality slider. Lower value means better quality. - Quality slider. Lower value means better quality. + Qualitäts-Regler. Niedriger wert heißt niedrige Qualität Open Documentation - Open Documentation + Öffne Documentation Select file - Select file + Datei auswählen @@ -152,17 +151,17 @@ An error occurred! - An error occurred! + Es ist ein Fehler aufgetreten! Copy text to clipboard - Copy text to clipboard + Kopiere den Text in die Zwischenablage Back to create and send an error report! - Back to create and send an error report! + Zurück zum Erstellen und einen Fehlerbericht senden! @@ -175,82 +174,82 @@ Generating preview image... - Generating preview image... + Erzeuge Vorschaubild... Generating preview thumbnail image... - Generating preview thumbnail image... + Erzeuge Vorschau-Miniaturbild... Generating 5 second preview video... - Generating 5 second preview video... + Generiere ein 5-Sekunden-Vorschau-Video... Generating preview gif... - Generating preview gif... + Generiere Vorschau-Gif... Converting Audio... - Converting Audio... + Konvertiere Audio... Converting Video... This can take some time! - Converting Video... This can take some time! + Video wird umgewandelt... Das kann etwas dauern! Converting Video ERROR! - Converting Video ERROR! + Konvertieren nicht erfolgreich! Analyse Video ERROR! - Analyse Video ERROR! + Analyse des Videos schlug Fehl! Convert a video to a wallpaper - Convert a video to a wallpaper + Konvertiere ein Video in ein Hintergrund Live Wallpaper Generating preview video... - Generating preview video... + Generiere Vorschau-Video... Name (required!) - Name (required!) + Name (erforderlich!) Description - Description + Beschreibung Youtube URL - Youtube URL + YouTube-URL Abort - Abort + Abbrechen Save - Save + Speichern Save Wallpaper... - Save Wallpaper... + Speicher Wallpaper... @@ -258,37 +257,37 @@ Volume - Volume + Lautstärke Playback rate - Playback rate + Wiedergabegeschwindigkeit Current Video Time - Current Video Time + Aktuelle Videozeit Fill Mode - Fill Mode + Füll-Modus Stretch - Stretch + Strecken Fill - Fill + Ausfüllen Contain - Contain + Enthält @@ -298,7 +297,7 @@ Scale_Down - Scale_Down + Runter Skallieren @@ -306,17 +305,17 @@ Clear - Clear + Leeren Select File - Select File + Datei auswählen Please choose a file - Please choose a file + Bitte Wählen Sie eine Datei aus @@ -324,37 +323,37 @@ Import a Gif Wallpaper - Import a Gif Wallpaper + Importiere ein GIF Wallpaper Drop a *.gif file here or use 'Select file' below. - Drop a *.gif file here or use 'Select file' below. + Ziehe eine .gif Datei hierher und benutze 'Datei auswählen' darunter. Select your gif - Select your gif + Wähle dein GIF aus General - General + Allgemein Wallpaper name - Wallpaper name + Wallpaper Name Created By - Created By + Erstellt von Tags - Tags + Schlagwörter @@ -362,37 +361,37 @@ Create a HTML Wallpaper - Create a HTML Wallpaper + Erstelle ein HTML Wallpaper General - General + Allgemein Wallpaper name - Wallpaper name + Wallpaper Name Created By - Created By + Erstellt von Description - Description + Beschreibung License & Tags - License & Tags + Lizenz & Schlagwörter Preview Image - Preview Image + Vorschau Bild @@ -400,27 +399,27 @@ Create a HTML widget - Create a HTML widget + Erstelle ein HTML Widget General - General + Allgemein Widget name - Widget name + Widget Name Created by - Created by + Erstellt von Tags - Tags + Schlagwörter @@ -428,7 +427,7 @@ Headline - Headline + Überschrift @@ -436,7 +435,7 @@ Headline Section - Headline Section + Überschrift auswahl @@ -444,17 +443,17 @@ Set your own preview image - Set your own preview image + Setze dein eigenes Vorschaubild Clear - Clear + Leeren Select Preview Image - Select Preview Image + Wähle ein Vorschaubild @@ -467,87 +466,87 @@ AnalyseVideo... - AnalyseVideo... + Analysiere Video... Generating preview image... - Generating preview image... + Erzeuge Vorschaubild... Generating preview thumbnail image... - Generating preview thumbnail image... + Erzeuge Vorschau-Miniaturbild... Generating 5 second preview video... - Generating 5 second preview video... + Generiere ein 5-Sekunden-Vorschau-Video... Generating preview gif... - Generating preview gif... + Generiere Vorschau-Gif... Converting Audio... - Converting Audio... + Konvertiere Audio... Converting Video... This can take some time! - Converting Video... This can take some time! + Video wird umgewandelt... Das kann etwas dauern! Converting Video ERROR! - Converting Video ERROR! + Konvertieren nicht erfolgreich! Analyse Video ERROR! - Analyse Video ERROR! + Analyse des Videos schlug Fehl! Import a video to a wallpaper - Import a video to a wallpaper + Importiere ein Video zu ein Wallpaper Generating preview video... - Generating preview video... + Generiere Vorschau-Video... Name (required!) - Name (required!) + Name (erforderlich!) Description - Description + Beschreibung Youtube URL - Youtube URL + YouTube-URL Abort - Abort + Abbrechen Save - Save + Speichern Save Wallpaper... - Save Wallpaper... + Speicher Wallpaper... @@ -555,32 +554,32 @@ Import a .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! - 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)! - 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. - Drop a *.webm file here or use 'Select file' below. + Lass hier eine *.webm Datei fallen oder benutze 'Datei auswählen' darunter Open Documentation - Open Documentation + Öffne Dokumentation Select file - Select file + Datei auswählen @@ -593,23 +592,23 @@ Refreshing! - Refreshing! + Aktualisiere! Pull to refresh! - Pull to refresh! + Drücken zum aktualisieren! Get more Wallpaper & Widgets via the Steam workshop! - Get more Wallpaper & Widgets via the Steam workshop! + Holen dir mehr Wallpaper und Widgets über den Steam-Workshop! Open containing folder - Open containing folder + Enthaltenden Ordner öffnen @@ -629,7 +628,7 @@ Are you sure you want to delete this item? - Are you sure you want to delete this item? + Bist du dir sicher dass du dieses Item löschen möchtest? @@ -637,12 +636,12 @@ Get free Widgets and Wallpaper via the Steam Workshop - Get free Widgets and Wallpaper via the Steam Workshop + Hole dir kostenlose Widgets und Wallpaper via Steam Browse the Steam Workshop - Browse the Steam Workshop + Stöbere durch den Steam Workshop @@ -650,12 +649,12 @@ License - 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. - 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. @@ -690,8 +689,8 @@ Your monitor setup changed! Please configure your wallpaper again. - Your monitor setup changed! - Please configure your wallpaper again. + Deine Bildschirm aufstellung hat sich geändert! +Bitte Konfiguriere deine Wallpaper noch erneut @@ -699,28 +698,28 @@ Wallpaper Configuration - Wallpaper Configuration + Wallpaper Konfiguration Remove selected - Remove selected + Die Auswahl entfernen Remove - Remove + Entferne Wallpapers - Wallpapers + Hintergründe Widgets - Widgets + Widgets @@ -728,12 +727,12 @@ Set color - Set color + Farbe Festlegen Please choose a color - Please choose a color + Bitte wähle eine Farbe aus @@ -741,42 +740,42 @@ All - All + Alles Scenes - Scenes + Szenen Videos - Videos + Videos Widgets - Widgets + Widgets Install Date Ascending - Install Date Ascending + Installationsdatum aufsteigend Install Date Descending - Install Date Descending + Installationsdatum absteigend Subscribed items: - Subscribed items: + Abonnierte Inhalte: Upload to the Steam Workshop - Upload to the Steam Workshop + Zum Steam Workshop Hochladen @@ -784,12 +783,12 @@ Configurate active Wallpaper or Widgets - Configurate active Wallpaper or Widgets + Konfiguriere aktive Wallpaper oder Widgets No active Wallpaper or Widgets - No active Wallpaper or Widgets + Keine aktiven Wallpaper oder Widgets @@ -802,7 +801,7 @@ Back - Back + Zurück @@ -810,7 +809,7 @@ You Need to Agree To The Steam Subscriber Agreement First - You Need to Agree To The Steam Subscriber Agreement First + Du musst zuerst zu den Steam-Abonnentenvertrag zustimmen @@ -820,12 +819,12 @@ View The Steam Subscriber Agreement - View The Steam Subscriber Agreement + Siehe dir den Steam-Abonnentenvertrag Accept Steam Workshop Agreement - Accept Steam Workshop Agreement + Aktzeptiere den Steam-Abonnentenvertrag @@ -833,37 +832,37 @@ Create a QML Wallpaper - Create a QML Wallpaper + Erstelle ein QML Wallpaper General - General + Allgemein Wallpaper name - Wallpaper name + Wallpaper Name Created By - Created By + Erstellt von Description - Description + Beschreibung License & Tags - License & Tags + Lizenz & Schlagwörter Preview Image - Preview Image + Vorschaubild @@ -871,27 +870,27 @@ Create a QML widget - Create a QML widget + Erstelle ein QML Widget General - General + Allgemein Widget name - Widget name + Widget Name Created by - Created by + Erstellt von Tags - Tags + Schlagwörter @@ -899,7 +898,7 @@ Profile saved successfully! - Profile saved successfully! + Profil erfolgreich gespeichert! @@ -915,7 +914,7 @@ Search for Wallpaper & Widgets - Search for Wallpaper & Widgets + Suche nach Wallpaper & Widgets @@ -923,7 +922,7 @@ General - General + Allgemein @@ -933,22 +932,22 @@ 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 startet mit Windows und richtet deinen Desktop jedes Mal für dich ein. High priority Autostart - High priority Autostart + Hohe Priorität für Autostart This options grants ScreenPlay a higher autostart priority than other apps. - 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 - Send anonymous crash reports and statistics + Sende anonyme Absturzberichte und Statistiken @@ -958,12 +957,12 @@ Set save location - Set save location + Speicherort auswählen Set location - Set location + Standort auswählen @@ -973,17 +972,17 @@ 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! + Wichtig: Eine Änderung dieses Verzeichnisses hat keine Auswirkungen auf den Download-Pfad des Workshops. ScreenPlay unterstützt nur ein Verzeichnis! Language - Language + Sprache Set the ScreenPlay UI Language - Set the ScreenPlay UI Language + Wähle die Sprache des Programms aus @@ -993,7 +992,7 @@ German - German + Deutsch @@ -1033,67 +1032,67 @@ Theme - Theme + Thema Switch dark/light theme - Switch dark/light theme + Wechsle Dunkles/Helles Design System Default - System Default + System Standard Dark - Dark + Dunkel Light - Light + Hell Performance - Performance + Leistung Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + Pausiere Wallpaper Video Rendering wenn eine andere App im Vordergrund ist We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + Wir deaktivieren das Video Rendering (Aber nicht die Sounds) für die beste Leistung. Wenn du damit probleme haben solltest kannst dieses Verhalten hier ausschalten. Ein Neustart wird aber von Nöten sein! Default Fill Mode - Default Fill Mode + Standard-Füllmodus 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. + Lege diese Eigenschaft fest, um zu definieren, wie das Video skaliert wird, damit es in den Zielbereich passt. Stretch - Stretch + Strecken Fill - Fill + Ausfüllen Contain - Contain + Enthält @@ -1103,52 +1102,52 @@ Scale-Down - Scale-Down + Runter Skallieren About - About + Über Thank you for using ScreenPlay - Thank you for using ScreenPlay + Danke, dass du ScreenPlay verwendest Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Moin, ich bin Elias Steurer, auch bekannt als Kelteseth und ich bin der Entwickler von ScreenPlay. Danke, dass du meine Software nutzt. Du kannst mir hier folgen, um Updates über ScreenPlay zu erhalten: Version - Version + Version ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay-Build-Version Open Changelog - Open Changelog + Changelog öffnen Third Party Software - Third Party Software + Software von Drittanbietern ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay wäre ohne die Arbeit anderer nicht möglich. Ein großes Dankeschön dafür geht an: Licenses - Licenses + Lizenzen @@ -1158,27 +1157,27 @@ 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. + 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 - Show Logs + Zeige Logs Data Protection - Data Protection + Datenschutz 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! + Wir verwenden deine Daten sehr sorgfältig, um ScreenPlay zu verbessern. Wir verkaufen oder teilen diese (anonymen) Informationen nicht mit anderen! Privacy - Privacy + Datenschutz @@ -1186,7 +1185,7 @@ Copy text to clipboard - Copy text to clipboard + Kopiere den Text in die Zwischenablage @@ -1194,7 +1193,7 @@ Tools Overview - Tools Overview + Werkzeugeübersicht @@ -1204,7 +1203,7 @@ Video Import (.webm) - Video Import (.webm) + Importiere Video (.webm) @@ -1239,7 +1238,7 @@ Set Wallpaper - Set Wallpaper + Wallpaper Festlegen @@ -1249,37 +1248,37 @@ Headline - Headline + Überschrift Select a Monitor to display the content - Select a Monitor to display the content + Wähle einen Monitor zur Anzeige des Inhalts Set Volume - Set Volume + Audiolautstärke einstellen Fill Mode - Fill Mode + Füll-Modus Stretch - Stretch + Strecken Fill - Fill + Ausfüllen Contain - Contain + Enthält @@ -1289,12 +1288,12 @@ Scale-Down - Scale-Down + Runter-Skallieren Size: - Size: + Größe: @@ -1304,37 +1303,37 @@ No description... - No description... + Leine Beschreibung... Click here if you like the content - Click here if you like the content + Klicke hier wenn du den Inhalt magst Click here if you do not like the content - Click here if you do not like the content + Klicke hier wenn du den Inhalt nicht magst Subscribtions: - Subscribtions: + Abonnements Open In Steam - Open In Steam + Öffne in Steam Subscribed! - Subscribed! + Abonniert Subscribe - Subscribe + Abonniere @@ -1342,12 +1341,12 @@ Free Tools to create wallpaper - 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! - 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! @@ -1355,7 +1354,7 @@ Could not load steam integration! - Could not load steam integration! + Konnte Steam integration nicht Laden! @@ -1364,12 +1363,12 @@ Back - Back + Zurück Forward - Forward + Vor @@ -1377,17 +1376,17 @@ Loading - Loading + laden Download now! - Download now! + Jetzt Downloaden! Downloading... - Downloading... + Am Herunterladen... @@ -1397,12 +1396,12 @@ Open In Steam - Open In Steam + Öffne in Steam Profile - Profile + Profil @@ -1412,72 +1411,72 @@ Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + Suche nach Hintergründen und Widgets... Open Workshop in Steam - Open Workshop in Steam + Öffne Workshop in Steam Ranked By Vote - Ranked By Vote + Nach Bewertungen sortieren Publication Date - Publication Date + Veröffentlichungs Datum Ranked By Trend - Ranked By Trend + Nach Trends sortieren Favorited By Friends - Favorited By Friends + Von Freunden Favorisiert Created By Friends - Created By Friends + Von Freunden erstellt Created By Followed Users - Created By Followed Users + Von Gefolgten Benutzern erstellt Not Yet Rated - Not Yet Rated + Noch nicht Bewertet Total VotesAsc - Total VotesAsc + Abstimmungs Anzahl Absteigend Votes Up - Votes Up + Abstimmungs Anzahl Steigend Total Unique Subscriptions - Total Unique Subscriptions + Anzahl Einzigartiger Abonnennts Back - Back + Zurück Forward - Forward + Vor @@ -1485,22 +1484,22 @@ Save - Save + Speichern Add tag - Add tag + Tag hinzufügen Cancel - Cancel + Abbrechen Add Tag - Add Tag + Tag hinzufügen @@ -1508,12 +1507,12 @@ Label - Label + Beschriftung *Required - *Required + *Benötigt @@ -1521,39 +1520,39 @@ ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - Doppelklicke, um deine Einstellungen zu ändern. Open ScreenPlay - Open ScreenPlay + Öffne ScreenPlay Mute all - Mute all + Alles stummschalten Unmute all - Unmute all + Alle Stummschaltungen aufheben Pause all - Pause all + Alles pausieren Play all - Play all + Alles abspielen Quit - Quit + Beenden @@ -1561,22 +1560,22 @@ Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + Lade Wallpaper/Widget auf Steam hoch Abort - Abort + Abbrechen Upload Selected Projects - Upload Selected Projects + Lade ausgewähltes Projekt hoch Finish - Finish + Beenden @@ -1584,17 +1583,17 @@ Type: - Type: + Typ: Open Folder - Open Folder + Öffne Ordner Invalid Project! - Invalid Project! + Ungültiges Projekt @@ -1602,177 +1601,177 @@ Fail - Fail + Fehler No Connection - No Connection + Keine Verbindung Invalid Password - Invalid Password + Falsches Passwort Logged In Elsewhere - Logged In Elsewhere + Woanders Eingelogged Invalid Protocol Version - Invalid Protocol Version + Falsche Protokoll Version Invalid Param - Invalid Param + Falsche Parameter File Not Found - File Not Found + Datei nicht gefunden Busy - Busy + Beschäftigt Invalid State - Invalid State + ungültiger Status Invalid Name - Invalid Name + ungültiger Name Invalid Email - Invalid Email + ungültige Email Duplicate Name - Duplicate Name + Doppelter Name Access Denied - Access Denied + Zugriff verweigert Timeout - Timeout + Auszeit Banned - Banned + Gebannt Account Not Found - Account Not Found + Account nicht gefunden Invalid SteamID - Invalid SteamID + ungültige Steam ID Service Unavailable - Service Unavailable + Service nicht Verfügbar Not Logged On - Not Logged On + Nicht angemeldet Pending - Pending + Ausstehend Encryption Failure - Encryption Failure + Verschlüsselungsfehler Insufficient Privilege - Insufficient Privilege + Unzureichende Berechtigung Limit Exceeded - Limit Exceeded + Limit überschritten Revoked - Revoked + Wiederrufen Expired - Expired + Abgelaufen Already Redeemed - Already Redeemed + Bereits eingelöst Duplicate Request - Duplicate Request + Doppelte anfrage Already Owned - Already Owned + Bereits vergeben IP Not Found - IP Not Found + IP nicht gefunden Persist Failed - Persist Failed + Anhalten fehlgeschlagen Locking Failed - Locking Failed + Sperren fehlgeschlagen Logon Session Replaced - Logon Session Replaced + Anmeldesitzung ersetzt Connect Failed - Connect Failed + Verbindung gescheitert Handshake Failed - Handshake Failed + Handshake fehlgeschlagen IO Failure - IO Failure + IO Fehler @@ -1782,32 +1781,32 @@ Shopping Cart Not Found - Shopping Cart Not Found + Warenkorb nicht gefunden Blocked - Blocked + Blockiert Ignored - Ignored + Ignoriert No Match - No Match + Keine Übereinstimmung Account Disabled - Account Disabled + Account deaktiviert Service ReadOnly - Service ReadOnly + Schreibgeschützter Dienst @@ -1822,42 +1821,42 @@ Content Version - Content Version + Inhaltsversion Try Another CM - Try Another CM + Versuch ein anderen CM Password Required T oKick Session - Password Required T oKick Session + Passwort benötigt zum beenden der Sitzung Already Logged In Elsewhere - Already Logged In Elsewhere + Bereits woanders eingeloggt Suspended - Suspended + Gesperrt Cancelled - Cancelled + Abgebrochen Data Corruption - Data Corruption + Datenkorruption Disk Full - Disk Full + Festplatte voll @@ -1867,22 +1866,22 @@ Password Unset - Password Unset + Passwort aufheben External Account Unlinked - External Account Unlinked + Externe Accountverknüpfung aufheben PSN Ticket Invalid - PSN Ticket Invalid + ungültiges PSN Ticket External Account Already Linked - External Account Already Linked + Externer Account ist bereits verbunden @@ -1892,77 +1891,77 @@ Illegal Password - Illegal Password + Nicht unterstütztes Passwort Same As Previous Value - Same As Previous Value + Gleicher wert wie vorheriger Account Logon Denied - Account Logon Denied + Anmeldung verweigert Cannot Use Old Password - Cannot Use Old Password + Du kannst dein altes Passwort nicht benutzen Invalid Login AuthCode - Invalid Login AuthCode + Falscher Login AuthCode Account Logon Denied No Mail - Account Logon Denied No Mail + Account anmeldung abgelehnt, keine Mail Hardware Not Capable Of IPT - Hardware Not Capable Of IPT + Hardware ist nicht IPT fähig IPT Init Error - IPT Init Error + IPT Init Fehler Parental Control Restricted - Parental Control Restricted + Kindersicherung eingeschränkt Facebook Query Error - Facebook Query Error + Facebook-Abfragefehler Expired Login Auth Code - Expired Login Auth Code + Abgelaufener Login Auth Code IP Login Restriction Failed - IP Login Restriction Failed + IP-Anmeldebeschränkung fehlgeschlagen Account Locked Down - Account Locked Down + Account gesperrt Account Logon Denied Verified Email Required - Account Logon Denied Verified Email Required + Account anmeldung abgelehnt, Verifizierte E-Mail erforderlich No MatchingURL - No MatchingURL + Keine passende URL @@ -1972,52 +1971,52 @@ Require Password ReEntry - Require Password ReEntry + Passwort erneurt eintragen Value Out Of Range - Value Out Of Range + Wert außerhalb des Bereichs Unexpecte Error - Unexpecte Error + Unerwarteter Fehler Disabled - Disabled + Deaktiviert Invalid CEG Submission - Invalid CEG Submission + Ungültige CEG-Einreichung Restricted Device - Restricted Device + Eingeschränktes Gerät Region Locked - Region Locked + Region gesperrt Rate Limit Exceeded - Rate Limit Exceeded + Frequenzgrenze überschritten Account Login Denied Need Two Factor - Account Login Denied Need Two Factor + Accountanmeldung verweigert zwei Faktor Auth benötigt Item Deleted - Item Deleted + item gelöscht @@ -2027,147 +2026,147 @@ Two Factor Code Mismatch - Two Factor Code Mismatch + Zwei Faktor Code stimmt nicht überein Two Factor Activation Code Mismatch - Two Factor Activation Code Mismatch + Zwei Faktor Code stimmt nicht überein Account Associated To Multiple Partners - Account Associated To Multiple Partners + Account ist mehreren Partnern zugeordnet Not Modified - Not Modified + Nicht modifiziert No Mobile Device - No Mobile Device + Kein Mobilgerät Time Not Synced - Time Not Synced + Zeit nicht synchronisiert Sms Code Failed - Sms Code Failed + SMS-Code fehlgeschlagen Account Limit Exceeded - Account Limit Exceeded + Kontolimit überschritten Account Activity Limit Exceeded - Account Activity Limit Exceeded + Kontoaktivitätslimit überschritten Phone Activity Limit Exceeded - Phone Activity Limit Exceeded + Telefonaktivitätslimit überschritten Refund To Wallet - Refund To Wallet + Rückerstattung an Wallet Email Send Failure - Email Send Failure + E-Mail-Sendefehler Not Settled - Not Settled + Nicht geklärt Need Captcha - Need Captcha + Captcha benötigt GSLT Denied - GSLT Denied + GSLT abgelehnt GS Owner Denied - GS Owner Denied + GS besitzer abgelehnt Invalid Item Type - Invalid Item Type + Ungültiger Item Typ IP Banned - IP Banned + IP Gebannt GSLT Expired - GSLT Expired + GSLT Abgelaufen Insufficient Funds - Insufficient Funds + Unzureichende Mittel Too Many Pending - Too Many Pending + Zu viele ausstehend No Site Licenses Found - No Site Licenses Found + Keine Site-Lizenzen gefunden WG Network Send Exceeded - WG Network Send Exceeded + WG-Netzwerk senden überschritten Account Not Friends - Account Not Friends + Account nicht befreundet Limited User Account - Limited User Account + Eingeschränktes Benutzerkonto Cant Remove Item - Cant Remove Item + Item kann nicht Entfernt werden Account Deleted - Account Deleted + Account gelöscht Existing User Cancelled License - Existing User Cancelled License + Benutzer hat Lizenz Annulliert Community Cooldown - Community Cooldown + Community-Abklingzeit @@ -2177,7 +2176,7 @@ Upload Progress: - Upload Progress: + Upload-Fortschritt: @@ -2185,37 +2184,37 @@ Create a Website Wallpaper - Create a Website Wallpaper + Erstelle ein Website Wallpaper General - General + Allgemein Wallpaper name - Wallpaper name + Wallpaper Name Created By - Created By + Erstellt von Description - Description + Beschreibung Tags - Tags + Schlagwörter Preview Image - Preview Image + Vorschaubild @@ -2223,12 +2222,12 @@ Save - Save + Speichern Saving... - Saving... + Speichern... @@ -2236,12 +2235,12 @@ Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + Erfolgreich Steam Workshop Item Abonniert! Download complete! - Download complete! + Download abgeschlossen! @@ -2249,7 +2248,7 @@ News & Patchnotes - News & Patchnotes + Neuigkeiten & Patchnotes From 7e510a3e30b94ca40105e6fad1aa180a4eac0a80 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 13:21:45 +0000 Subject: [PATCH 27/76] New translations ScreenPlay_.ts (Chinese Simplified) --- ScreenPlay/translations/ScreenPlay_zh_CN.ts | 826 ++++++++++---------- 1 file changed, 413 insertions(+), 413 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_zh_CN.ts b/ScreenPlay/translations/ScreenPlay_zh_CN.ts index abeafb94..6af7701a 100644 --- a/ScreenPlay/translations/ScreenPlay_zh_CN.ts +++ b/ScreenPlay/translations/ScreenPlay_zh_CN.ts @@ -6,67 +6,67 @@ Red - Red + Green - Green + 绿 Blue - Blue + RGB - RGB + RGB HSV - HSV + HSV R: - R: + R: G: - G: + G: B: - B: + B: H: - H: + H: S: - S: + S: V: - V: + V: Alpha: - Alpha: + 透明度: # - # + # @@ -74,32 +74,32 @@ News - News + 新闻 Wiki - Wiki + 维基 Forum - Forum + 论坛 Issue List - Issue List + 议题列表 Contribute - Contribute + 贡献 Steam Workshop - Steam Workshop + Steam 创意工坊 @@ -107,7 +107,7 @@ Open in browser - Open in browser + 在浏览器中打开 @@ -115,36 +115,36 @@ 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: *.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: + 取决于您的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 + 选择文件 @@ -152,17 +152,17 @@ 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! + 返回以创建并发送错误报告! @@ -175,82 +175,82 @@ Generating preview image... - Generating preview image... + 生成预览图... Generating preview thumbnail image... - Generating preview thumbnail image... + 生成预览缩略图... Generating 5 second preview video... - Generating 5 second preview video... + 生成5秒预览视频... Generating preview 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 链接 Abort - Abort + 中止 Save - Save + 保存 Save Wallpaper... - Save Wallpaper... + 保存壁纸... @@ -258,47 +258,47 @@ 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 + 裁切 @@ -306,17 +306,17 @@ Clear - Clear + 清空 Select File - Select File + 选择文件 Please choose a file - Please choose a file + 请选择文件 @@ -324,37 +324,37 @@ Import a Gif Wallpaper - Import a Gif Wallpaper + 导入 GIF 壁纸 Drop a *.gif file here or use 'Select file' below. - Drop a *.gif file here or use 'Select file' below. + 拖放一个 *.gif 文件到这里,或者使用下面的 '选择文件'。 Select your gif - Select your gif + 选择您的 GIF General - General + 常规 Wallpaper name - Wallpaper name + 壁纸名称 Created By - Created By + 作者 Tags - Tags + 标签 @@ -362,37 +362,37 @@ Create a HTML Wallpaper - 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 + 预览图 @@ -400,27 +400,27 @@ Create a HTML widget - Create a HTML widget + 创建 HTML 部件 General - General + 常规 Widget name - Widget name + 部件名称 Created by - Created by + 作者 Tags - Tags + 标签 @@ -428,7 +428,7 @@ Headline - Headline + 标题 @@ -436,7 +436,7 @@ Headline Section - Headline Section + 摘要 @@ -444,17 +444,17 @@ Set your own preview image - Set your own preview image + 设置您的预览图 Clear - Clear + 清空 Select Preview Image - Select Preview Image + 选择预览图 @@ -467,87 +467,87 @@ AnalyseVideo... - AnalyseVideo... + 分析视频... Generating preview image... - Generating preview image... + 生成预览图... Generating preview thumbnail image... - Generating preview thumbnail image... + 生成预览缩略图... Generating 5 second preview video... - Generating 5 second preview video... + 生成5秒预览视频... Generating preview 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 URL + Youtube 链接 Abort - Abort + 中止 Save - Save + 保存 Save Wallpaper... - Save Wallpaper... + 保存壁纸... @@ -555,32 +555,32 @@ Import a .webm video - 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! - 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)! - Invalid file type. Must be valid VP8 or VP9 (*.webm)! + 文件类型无效。必须是 VP8 / VP9(*.webm)! Drop a *.webm file here or use 'Select file' below. - Drop a *.webm file here or use 'Select file' below. + 将一个webm文件拖到这里,或者使用下面的'选择文件' Open Documentation - Open Documentation + 打开文档 Select file - Select file + 选择文件 @@ -593,43 +593,43 @@ 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? + 您确定要删除此物品? @@ -637,12 +637,12 @@ 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 + 浏览创意工坊 @@ -650,38 +650,38 @@ 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 linking. + 您授权他人对您的作品进行再创作,并更改其链接的许可证。 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! - 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. + 您不分享任何权限,没有人可以使用或改编它(不推荐)。这也可用于计入他人的作品。 @@ -690,8 +690,8 @@ Your monitor setup changed! Please configure your wallpaper again. - Your monitor setup changed! - Please configure your wallpaper again. + 您的显示器设置已更改! + 请重新配置您的壁纸。 @@ -699,28 +699,28 @@ Wallpaper Configuration - Wallpaper Configuration + 壁纸配置 Remove selected - Remove selected + 移除已选择 Remove - Remove + 移除 Wallpapers - Wallpapers + 壁纸 Widgets - Widgets + 物件 @@ -728,12 +728,12 @@ Set color - Set color + 设置颜色 Please choose a color - Please choose a color + 请选择颜色 @@ -741,42 +741,42 @@ 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 + 上传到创意工坊 @@ -784,12 +784,12 @@ Configurate active Wallpaper or Widgets - Configurate active Wallpaper or Widgets + 设置活动壁纸或物件 No active Wallpaper or Widgets - No active Wallpaper or Widgets + 没有活动壁纸或物件 @@ -802,7 +802,7 @@ Back - Back + 返回 @@ -810,22 +810,22 @@ You Need to Agree To The Steam Subscriber Agreement First - 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. - 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 - View The Steam Subscriber Agreement + 查看Steam订阅者协议 Accept Steam Workshop Agreement - Accept Steam Workshop Agreement + 接受Steam创意工坊协议 @@ -833,37 +833,37 @@ Create a QML Wallpaper - 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 + 预览图 @@ -871,27 +871,27 @@ Create a QML widget - Create a QML widget + 创建一个QML部件 General - General + 常规 Widget name - Widget name + 部件名 Created by - Created by + 作者 Tags - Tags + 标签 @@ -899,7 +899,7 @@ Profile saved successfully! - Profile saved successfully! + 配置保存成功! @@ -915,7 +915,7 @@ Search for Wallpaper & Widgets - Search for Wallpaper & Widgets + 搜索壁纸和物件... @@ -923,262 +923,262 @@ General - General + 常规 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将在操作系统启动时启动,并会设置您的桌面。 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. + 这个选项赋予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! - 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! - 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 - Set the ScreenPlay UI Language + 设置ScreenPlay界面语言 English - English + 英语 German - German + 德语 Chinese - Simplified - Chinese - Simplified + 中文(简体) Russian - Russian + 俄语 French - French + 法语 Spanish - Spanish + 西班牙语 Korean - Korean + 韩语 Vietnamese - Vietnamese + 越南语 Portuguese (Brazil) - Portuguese (Brazil) + 英语(巴西) Theme - Theme + 主题 Switch dark/light theme - Switch dark/light theme + 切换到暗/亮主题 System Default - System Default + 跟随系统 Dark - Dark + Light - Light + Performance - Performance + 性能 Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + 当其他应用程序在前台时,暂停壁纸视频渲染 We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + 我们禁用视频渲染(不是音频)以获得最佳性能。如果您有问题,可以在此处禁用此行为。 需要重启壁纸! Default Fill Mode - Default Fill Mode + 默认填充模式 Set this property to define how the video is scaled to fit the target area. - Set this property to define how the video is scaled to fit the target area. + 设置此属性可定义视频的缩放方式以适应目标区域。 Stretch - Stretch + 拉伸 Fill - Fill + 填充 Contain - Contain + 适应 Cover - Cover + 平铺 Scale-Down - Scale-Down + 裁剪 About - About + 关于 Thank you for using ScreenPlay - Thank you for using ScreenPlay + 感谢您的使用 Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + 您好,我是Elias Steurer,也叫Kelteseth,我是ScreenPlay的开发者。感谢您使用我的软件。您可以在这里关注我,接收ScreenPlay的更新。 Version - Version + 版本 ScreenPlay Build Version - ScreenPlay Build Version + ScreenPlay编译版本 Open Changelog - Open Changelog + 打开更改日志。 Third Party Software - Third Party Software + 第三方软件 ScreenPlay would not be possible without the work of others. A big thank you to: - ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay离不开一些人的帮助。非常感谢你们: Licenses - Licenses + 许可证 Logs - Logs + 日志 If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. - If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime. + 如果您的ScreenPlay出错,这是个很好的查错方式。它显示所有的日志和运行时警告。 Show Logs - Show Logs + 显示日志 Data Protection - Data Protection + 数据保护 We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! - We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others! + 我们使用您的数据提升ScreenPlay的体验。我们承诺不出售或分享这些匿名信息! Privacy - Privacy + 隐私 @@ -1186,7 +1186,7 @@ Copy text to clipboard - Copy text to clipboard + 复制文本至剪贴板 @@ -1194,7 +1194,7 @@ Tools Overview - Tools Overview + 工具概览 @@ -1204,137 +1204,137 @@ Video Import (.webm) - Video Import (.webm) + 视频导入 (.webm) GIF Wallpaper - GIF Wallpaper + GIF 壁纸 QML Wallpaper - QML Wallpaper + QML 壁纸 HTML5 Wallpaper - HTML5 Wallpaper + HTML5 壁纸 Website Wallpaper - Website Wallpaper + 网页壁纸 QML Widget - QML Widget + QML 部件 HTML Widget - 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 - Open In Steam + 在Steam打开 Subscribed! - Subscribed! + 已订阅! Subscribe - Subscribe + 订阅 @@ -1342,12 +1342,12 @@ 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! + 下面你可以找到ScreenPlay所提供的以外的工具来创建wallaper。 @@ -1355,7 +1355,7 @@ Could not load steam integration! - Could not load steam integration! + 无法加载steam集成! @@ -1364,12 +1364,12 @@ Back - Back + 返回 Forward - Forward + 前进 @@ -1377,32 +1377,32 @@ Loading - Loading + 加载中 Download now! - Download now! + 开始下载! Downloading... - Downloading... + 下载中... Details - Details + 查看详情 Open In Steam - Open In Steam + 在Steam打开 Profile - Profile + 配置 @@ -1412,72 +1412,72 @@ Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + 搜索壁纸和物件... Open Workshop in 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 + 前进 @@ -1485,22 +1485,22 @@ Save - Save + 保存 Add tag - Add tag + 添加标签 Cancel - Cancel + 取消 Add Tag - Add Tag + 添加标签 @@ -1508,12 +1508,12 @@ Label - Label + 标识 *Required - *Required + *必要的 @@ -1521,39 +1521,39 @@ ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - 双击以改变设置 Open ScreenPlay - Open ScreenPlay + 打开ScreenPlay Mute all - Mute all + 关闭全部提醒 Unmute all - Unmute all + 开启全部提醒 Pause all - Pause all + 暂停全部 Play all - Play all + 播放全部 Quit - Quit + 退出 @@ -1561,22 +1561,22 @@ Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + 上传 壁纸/物件 到Steam Abort - Abort + 取消 Upload Selected Projects - Upload Selected Projects + 上传所选项目 Finish - Finish + 结束 @@ -1584,17 +1584,17 @@ Type: - Type: + 类型: Open Folder - Open Folder + 打开文件夹 Invalid Project! - Invalid Project! + 无效的项目! @@ -1602,582 +1602,582 @@ 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 - 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 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 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 Query Error + Facebook查询错误 Expired Login Auth Code - Expired Login Auth Code + 过期的登录授权码 IP Login Restriction Failed - 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 - 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 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: + 上传进度: @@ -2185,37 +2185,37 @@ 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 + 预览图 @@ -2223,12 +2223,12 @@ Save - Save + 保存 Saving... - Saving... + 保存中... @@ -2236,12 +2236,12 @@ Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + 成功订阅创意工坊物品! Download complete! - Download complete! + 下载完成! @@ -2249,7 +2249,7 @@ News & Patchnotes - News & Patchnotes + 新闻和更改日志 From 633e93c4e8909312627c32048367cb80f8da0a04 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 13:21:47 +0000 Subject: [PATCH 28/76] New translations ScreenPlay_.ts (Vietnamese) --- ScreenPlay/translations/ScreenPlay_vi_VN.ts | 596 ++++++++++---------- 1 file changed, 298 insertions(+), 298 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_vi_VN.ts b/ScreenPlay/translations/ScreenPlay_vi_VN.ts index 7bd6bd37..1f387b32 100644 --- a/ScreenPlay/translations/ScreenPlay_vi_VN.ts +++ b/ScreenPlay/translations/ScreenPlay_vi_VN.ts @@ -6,67 +6,67 @@ Red - Red + Đỏ Green - Green + Xanh lá Blue - Blue + Xanh dương RGB - RGB + RGB HSV - HSV + HSV R: - R: + Đỏ: G: - G: + Xanh lá: B: - B: + Xanh dương: H: - H: + Màu: S: - S: + Độ bão hòa: V: - V: + Giá trị: Alpha: - Alpha: + Độ trong suốt: # - # + # @@ -74,32 +74,32 @@ News - News + Tin tức Wiki - Wiki + Wiki Forum - Forum + Diễn đàn Issue List - Issue List + D.sách lỗi Contribute - Contribute + Đóng góp Steam Workshop - Steam Workshop + Steam Workshop @@ -107,7 +107,7 @@ Open in browser - Open in browser + Mở trong trình duyệt @@ -115,36 +115,36 @@ Import any video type - 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: *.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: + 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: - Set your preffered video codec: + Chọn loại video mà bạn muốn: Quality slider. Lower value means better quality. - 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 - Open Documentation + Mở tài liệu tham khảo Select file - Select file + Chọn tệp @@ -152,17 +152,17 @@ An error occurred! - An error occurred! + Đã có lỗi xảy ra! Copy text to clipboard - Copy text to clipboard + Sao chép vào khay nhớ tạm Back to create and send an error report! - 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! @@ -175,82 +175,82 @@ Generating preview image... - Generating preview image... + Đang tạo ra ảnh xem trước... Generating preview thumbnail image... - Generating preview thumbnail image... + Đang tạo ra hình thu nhỏ xem trước... Generating 5 second preview video... - Generating 5 second preview video... + Đang tao ra video 5 giây xem trước... Generating preview gif... - Generating preview gif... + Đang tạo ra gif xem trước... Converting Audio... - Converting Audio... + Đang chuyển đổi dạng âm thanh... Converting Video... This can take some time! - 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! - Converting Video ERROR! + Đã có lỗi xảy ra khi chuyển đổi dạng video! Analyse Video ERROR! - Analyse Video ERROR! + Đã có lỗi xảy ra khi đang xử lý video! Convert a video to a wallpaper - Convert a video to a wallpaper + Chuyển đổi một video sang ảnh động Generating preview video... - Generating preview video... + Đang tạo ra video xem trước... Name (required!) - Name (required!) + Tên (bắt buộc!) Description - Description + Mô tả Youtube URL - Youtube URL + Link YouTube Abort - Abort + Hủy bỏ Save - Save + Lưu Save Wallpaper... - Save Wallpaper... + Lưu hình nền... @@ -258,47 +258,47 @@ Volume - Volume + Âm lượng Playback rate - Playback rate + Tốc độ phát lại Current Video Time - Current Video Time + Thời gian video hiện tại Fill Mode - Fill Mode + Cách lấp đầy Stretch - Stretch + Kéo dài Fill - Fill + Lấp đầy Contain - Contain + Chứa đựng Cover - Cover + Bao phủ Scale_Down - Scale_Down + Giảm tỉ lệ @@ -306,17 +306,17 @@ Clear - Clear + Xóa Select File - Select File + Chọn một tệp Please choose a file - Please choose a file + Xin hãy chọn một tệp @@ -324,37 +324,37 @@ Import a Gif Wallpaper - Import a Gif Wallpaper + Nhập một ảnh động gif Drop a *.gif file here or use 'Select file' below. - 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 - Select your gif + Chọn gif của bạn General - General + Chung Wallpaper name - Wallpaper name + Tên ảnh động Created By - Created By + Đươc tạo bởi Tags - Tags + Thẻ @@ -362,37 +362,37 @@ Create a HTML Wallpaper - Create a HTML Wallpaper + Tạo một ảnh động HTML General - General + Chung Wallpaper name - Wallpaper name + Tên ảnh động Created By - Created By + Được tạo bởi Description - Description + Mô tả License & Tags - License & Tags + Bản quyền & Thẻ Preview Image - Preview Image + Ảnh xem trước @@ -400,27 +400,27 @@ Create a HTML widget - Create a HTML widget + Tạo một widget HTML General - General + Chung Widget name - Widget name + Tên widget Created by - Created by + Đươc tạo bởi Tags - Tags + Thẻ @@ -428,7 +428,7 @@ Headline - Headline + Tiêu đề @@ -436,7 +436,7 @@ Headline Section - Headline Section + Phần tiêu đề @@ -444,17 +444,17 @@ Set your own preview image - Set your own preview image + Đặt ảnh xem trước của bạn Clear - Clear + Xóa Select Preview Image - Select Preview Image + Chọn ảnh xem trước @@ -467,87 +467,87 @@ AnalyseVideo... - AnalyseVideo... + Đang xử lý video... Generating preview image... - Generating preview image... + Đang tạo ra ảnh xem trước... Generating preview thumbnail image... - Generating preview thumbnail image... + Đang tạo ra hình thu nhỏ xem trước... Generating 5 second preview video... - Generating 5 second preview video... + Đang tao ra video 5 giây xem trước... Generating preview gif... - Generating preview gif... + Đang tạo ra gif xem trước... Converting Audio... - Converting Audio... + Đang chuyển đổi dạng âm thanh... Converting Video... This can take some time! - 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! - Converting Video ERROR! + Đã có lỗi xảy ra khi chuyển đổi dạng video! Analyse Video ERROR! - Analyse Video ERROR! + Đã có lỗi xảy ra khi đang xử lý video! Import a video to a wallpaper - Import a video to a wallpaper + Nhập một video vào hình nền Generating preview video... - Generating preview video... + Đang tạo ra video xem trước... Name (required!) - Name (required!) + Tên (bắt buộc!) Description - Description + Mô tả Youtube URL - Youtube URL + Link YouTube Abort - Abort + Hủy bỏ Save - Save + Lưu Save Wallpaper... - Save Wallpaper... + Lưu hình nền... @@ -555,32 +555,32 @@ Import a .webm video - 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! - 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)! - 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. - 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 - Open Documentation + Mở tài liệu tham khảo Select file - Select file + Chọn một tệp @@ -593,43 +593,43 @@ Refreshing! - Refreshing! + Đang làm mới! Pull to refresh! - Pull to refresh! + Kéo xuống để làm mới! Get more Wallpaper & Widgets via the 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 - Open containing folder + Mở thư mục chứa hình nền. Remove Item - Remove Item + Xóa hình nền Remove via Workshop - Remove via Workshop + Xóa nhờ Workshop Open Workshop Page - Open Workshop Page + Mở trang workshop Are you sure you want to delete this item? - 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? @@ -637,12 +637,12 @@ Get free Widgets and Wallpaper via the 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 - Browse the Steam Workshop + Duyệt qua Steam Workshop @@ -650,38 +650,38 @@ License - 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. - 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. - 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ọ. 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! + 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. - 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! - 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. - 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. @@ -690,8 +690,8 @@ Your monitor setup changed! Please configure your wallpaper again. - Your monitor setup changed! - Please configure your wallpaper again. + 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. @@ -699,28 +699,28 @@ Wallpaper Configuration - Wallpaper Configuration + Cấu hình ảnh động Remove selected - Remove selected + Xóa mục đã chọn Remove - Remove + Xóa Wallpapers - Wallpapers + Ảnh động Widgets - Widgets + Widgets @@ -728,12 +728,12 @@ Set color - Set color + Đặt màu Please choose a color - Please choose a color + Xin hãy chọn một màu @@ -741,42 +741,42 @@ All - All + Tất cả Scenes - Scenes + Cảnh Videos - Videos + Videos Widgets - Widgets + Widgets Install Date Ascending - Install Date Ascending + Ngày cài đặt tăng dần Install Date Descending - Install Date Descending + Ngày cài đặt giảm dần Subscribed items: - Subscribed items: + Những mục đã đăng ký: Upload to the Steam Workshop - Upload to the Steam Workshop + Tải lên Steam Workshop @@ -784,12 +784,12 @@ Configurate active Wallpaper or Widgets - 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 - No active Wallpaper or Widgets + Không có hình nền hoặc widgets đang hoạt động @@ -802,7 +802,7 @@ Back - Back + Quay lại @@ -810,22 +810,22 @@ You Need to Agree To The Steam Subscriber Agreement First - 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. - 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 - View The Steam Subscriber Agreement + Xem thỏa thuận người đăng ký của Steam Accept Steam Workshop Agreement - Accept Steam Workshop Agreement + Chấp nhận thỏa thuận của Steam Workshop @@ -833,37 +833,37 @@ Create a QML Wallpaper - Create a QML Wallpaper + Tạo một ảnh động QML General - General + Chung Wallpaper name - Wallpaper name + Tên ảnh động Created By - Created By + Đươc tạo bởi Description - Description + Mô tả License & Tags - License & Tags + Bản quyền & Thẻ Preview Image - Preview Image + Ảnh xem trước @@ -871,27 +871,27 @@ Create a QML widget - Create a QML widget + Tạo một widget QML General - General + Chung Widget name - Widget name + Tên widget Created by - Created by + Đươc tạo bởi Tags - Tags + Thẻ @@ -899,7 +899,7 @@ Profile saved successfully! - Profile saved successfully! + Đã lưu cấu hình thành công! @@ -915,7 +915,7 @@ Search for Wallpaper & Widgets - Search for Wallpaper & Widgets + Tìm ảnh động & widgets @@ -923,262 +923,262 @@ General - General + Chung Autostart - Autostart + Tự động mở 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 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 - High priority Autostart + Tự động mở ưu tiên hơn This options grants ScreenPlay a higher autostart priority than other apps. - 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 - 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! - 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 - Set save location + Đặt vị trí lưu Set location - Set location + Đặt vị trí Your storage path is empty! - 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! - 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 - Language + Ngôn ngữ Set the ScreenPlay UI Language - Set the ScreenPlay UI Language + Đặt ngôn ngữ của ScreenPlay English - English + Tiếng Anh German - German + Tiếng Đức Chinese - Simplified - Chinese - Simplified + Tiếng Trung - Giản thể Russian - Russian + Tiếng Nga French - French + Tiếng Pháp Spanish - Spanish + Tiếng Tây Ban Nha Korean - Korean + Tiếng Hàn Quốc Vietnamese - Vietnamese + Tiếng Việt Portuguese (Brazil) - Portuguese (Brazil) + Tiếng Bồ Đào Nha (Brazil) Theme - Theme + Chủ đề Switch dark/light theme - Switch dark/light theme + Chuyển chủ để sáng/tôí System Default - System Default + Mặc định theo hệ thống Dark - Dark + Tối Light - Light + Sáng Performance - Performance + Hiệu suất Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + Tạm dừng ảnh nền video khi có một ứng dụng khác đang mở phía trước We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + Chúng tôi tắt hiển thị video (không phải âm thanh!) Để có hiệu suất tốt nhất. Nếu bạn gặp sự cố, bạn có thể vô hiệu hóa hành vi này tại đây. Yêu cầu khởi động lại hình nền! Default Fill Mode - Default Fill Mode + Cách lấp đầy mặc định Set this property to define how the video is scaled to fit the target area. - Set this property to define how the video is scaled to fit the target area. + Đặt thuộc tính này để xác định cách chia tỷ lệ video để phù hợp với khu vực mục tiêu. Stretch - Stretch + Kéo dài Fill - Fill + Lấp đầy Contain - Contain + Chứa đựng Cover - Cover + Bao phủ Scale-Down - Scale-Down + Giảm tỉ lệ About - About + Về ứng dụng Thank you for using ScreenPlay - Thank you for using ScreenPlay + Cảm ơn bạn vì đã sử dụng ScreenPlay Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Chào, tôi là Elias Steurer hay được biết đến là Kelteseth và tôi là người phát triển của ScreenPlay. Cảm ơn bạn đã sử dụng phần mềm của tôi. Bạn có thể theo dõi tôi để nhận được những cập nhật về ScreenPlay tại: Version - Version + Phiên bản ScreenPlay Build Version - ScreenPlay Build Version + Bản dựng của ScreenPlay Open Changelog - Open Changelog + Mở nhật kí thay đổi Third Party Software - 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 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 - Licenses + Bản quyền Logs - 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. - 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 - Show Logs + Hiện nhật kí Data Protection - 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! - 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 - Privacy + Quyền riêng tư @@ -1186,7 +1186,7 @@ Copy text to clipboard - Copy text to clipboard + Sao chép vào khay nhớ tạm @@ -1194,147 +1194,147 @@ Tools Overview - Tools Overview + Tổng quan về công cụ Video import and convert (all types) - Video import and convert (all types) + Nhập video và chuyển đổi (tất cả các loại) Video Import (.webm) - Video Import (.webm) + Nhập video (.webm) GIF Wallpaper - GIF Wallpaper + Hình nền GIF QML Wallpaper - QML Wallpaper + Hình nền QML HTML5 Wallpaper - HTML5 Wallpaper + Hình nền HTML5 Website Wallpaper - Website Wallpaper + Trang chủ của hình nền QML Widget - QML Widget + Widget QML HTML Widget - HTML Widget + Widget HTML Set Wallpaper - Set Wallpaper + Đặt hình nền Set Widget - Set Widget + Đặt widget Headline - Headline + Tiêu đề Select a Monitor to display the content - Select a Monitor to display the content + Chọn một màn hình để hiển thị nội dung Set Volume - Set Volume + Chỉnh âm lượng Fill Mode - Fill Mode + Cách lấp đầy Stretch - Stretch + Kéo dài Fill - Fill + Lấp đầy Contain - Contain + Chứa đựng Cover - Cover + Bao phủ Scale-Down - Scale-Down + Giảm tỉ lệ Size: - Size: + Kích cỡ: MB - MB + MB No description... - No description... + Không có mô tả... Click here if you like the content - 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 - 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: - Subscribtions: + Đăng ký: Open In Steam - Open In Steam + Mở trong Steam Subscribed! - Subscribed! + Đã đăng kí! Subscribe - Subscribe + Đăng kí @@ -1342,12 +1342,12 @@ Free Tools to create wallpaper - 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! - 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! @@ -1355,7 +1355,7 @@ Could not load steam integration! - Could not load steam integration! + Không thể tải tích hợp Steam! @@ -1364,12 +1364,12 @@ Back - Back + Quay lại Forward - Forward + Tiếp tục @@ -1377,32 +1377,32 @@ Loading - Loading + Đang tải Download now! - Download now! + Tải về ngay! Downloading... - Downloading... + Đang tải xuống... Details - Details + Chi tiết Open In Steam - Open In Steam + Mở trong Steam Profile - Profile + Hồ sơ @@ -1412,72 +1412,72 @@ Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + Tìm hình nền & widgets... Open Workshop in Steam - Open Workshop in Steam + Mở workshop trong Steam Ranked By Vote - Ranked By Vote + Xếp hạng theo bình chọn Publication Date - Publication Date + Ngày xuất bản Ranked By Trend - Ranked By Trend + Xếp hạng theo xu hướng Favorited By Friends - Favorited By Friends + Được yêu thích bởỉ bạn bè Created By Friends - Created By Friends + Được tạo bởi bạn bè Created By Followed Users - Created By Followed Users + Được tạo bởi những người đã theo dõi Not Yet Rated - Not Yet Rated + Chưa được đánh giá Total VotesAsc - Total VotesAsc + Tổng lượt bình chọn Votes Up - Votes Up + Bình chọn Total Unique Subscriptions - Total Unique Subscriptions + Tổng số đăng ký Back - Back + Quay lại Forward - Forward + Tiếp tục @@ -1485,22 +1485,22 @@ Save - Save + Lưu Add tag - Add tag + Thêm thẻ Cancel - Cancel + Hủy Add Tag - Add Tag + Thêm thẻ @@ -1508,12 +1508,12 @@ Label - Label + Nhãn mác *Required - *Required + *Bắt buộc @@ -1521,39 +1521,39 @@ ScreenPlay - Double click to change you settings. - ScreenPlay - Double click to change you settings. + ScreenPlay - Bấm đúp để thay đổi cài đặt Open ScreenPlay - Open ScreenPlay + Mở ScreenPlay Mute all - Mute all + Tắt tiếng tất cả hình nền Unmute all - Unmute all + Bật tiếng tất cả hình nền Pause all - Pause all + Tạm dừng tất cả hình nền Play all - Play all + Phát tất cả hình nền Quit - Quit + Thoát @@ -1561,22 +1561,22 @@ Upload Wallpaper/Widgets to Steam - Upload Wallpaper/Widgets to Steam + Tải hình nền/widgets lên Steam Abort - Abort + Hủy bỏ Upload Selected Projects - Upload Selected Projects + Tải lên dự án đã chọn Finish - Finish + Xong @@ -1584,17 +1584,17 @@ Type: - Type: + Loại: Open Folder - Open Folder + Mở thư mục Invalid Project! - Invalid Project! + Dự án không hợp lệ! @@ -2185,37 +2185,37 @@ Create a Website Wallpaper - Create a Website Wallpaper + Tạo một hình nền của trang web General - General + Chung Wallpaper name - Wallpaper name + Tên ảnh động Created By - Created By + Đươc tạo bởi Description - Description + Mô tả Tags - Tags + Thẻ Preview Image - Preview Image + Ảnh xem trước @@ -2223,12 +2223,12 @@ Save - Save + Lưu Saving... - Saving... + Đang lưu... @@ -2236,12 +2236,12 @@ Successfully subscribed to Workshop Item! - Successfully subscribed to Workshop Item! + Đăng ký thành công! Download complete! - Download complete! + Tải xuống thành công! @@ -2249,7 +2249,7 @@ News & Patchnotes - News & Patchnotes + Tin tức & Ghi chú bản vá From de941da72c83d85fd908fb8e7300677c51a9d8c4 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 13:47:03 +0000 Subject: [PATCH 29/76] New translations ScreenPlay_.ts (German) --- ScreenPlay/translations/ScreenPlay_de_DE.ts | 78 ++++++++++----------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_de_DE.ts b/ScreenPlay/translations/ScreenPlay_de_DE.ts index 8c2a8114..48db9958 100644 --- a/ScreenPlay/translations/ScreenPlay_de_DE.ts +++ b/ScreenPlay/translations/ScreenPlay_de_DE.ts @@ -292,7 +292,7 @@ Cover - Cover + Cover @@ -613,17 +613,17 @@ Remove Item - Remove Item + Item entfernen Remove via Workshop - Remove via Workshop + Über den Workshop entfernen Open Workshop Page - Open Workshop Page + Workshop öffnen @@ -660,27 +660,27 @@ 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. + Sie gestatten anderen, Ihr Werk neu zu mixen und die Lizenz auf deren Ermessen zu ändern. Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - 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. - 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! - 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. - 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. @@ -796,7 +796,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut You need to run Steam for this. 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 @@ -906,7 +906,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut NEW - NEW + NEU @@ -927,7 +927,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Autostart - Autostart + Autostart @@ -952,7 +952,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut 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! + 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! @@ -967,7 +967,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Your storage path is empty! - Your storage path is empty! + Dein Speicherpfad ist leer! @@ -987,7 +987,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut English - English + English @@ -997,37 +997,37 @@ Bitte Konfiguriere deine Wallpaper noch erneut Chinese - Simplified - Chinese - Simplified + Chinese - Simplified Russian - Russian + Russian French - French + French Spanish - Spanish + Spanish Korean - Korean + Korean Vietnamese - Vietnamese + Vietnamese Portuguese (Brazil) - Portuguese (Brazil) + Portuguese (Brazil) @@ -1097,7 +1097,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Cover - Cover + Cover @@ -1152,7 +1152,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Logs - Logs + Protokolle @@ -1198,7 +1198,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Video import and convert (all types) - Video import and convert (all types) + Video importieren und konvertieren (alle Typen) @@ -1208,32 +1208,32 @@ Bitte Konfiguriere deine Wallpaper noch erneut GIF Wallpaper - GIF Wallpaper + GIF Wallpaper QML Wallpaper - QML Wallpaper + QML Wallpaper HTML5 Wallpaper - HTML5 Wallpaper + HTML5 Wallpaper Website Wallpaper - Website Wallpaper + Website Wallpaper QML Widget - QML Widget + QML Widget HTML Widget - HTML Widget + HTML Widget @@ -1243,7 +1243,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Set Widget - Set Widget + Widget wählen @@ -1283,7 +1283,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Cover - Cover + Cover @@ -1391,7 +1391,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Details - Details + Details @@ -1406,7 +1406,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Upload - Upload + Upload @@ -1886,7 +1886,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Remote File Conflict - Remote File Conflict + Entfernter Dateikonflikt @@ -1966,7 +1966,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Bad Response - Bad Response + Ungültige Antwort @@ -2021,7 +2021,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Account Login Denied Throttle - Account Login Denied Throttle + Account Anmeldung abgelehnt @@ -2171,7 +2171,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut Status: - Status: + Status: From edc74cbc02b09ed30d2d70e7525381c6d49f93ef Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 13:47:06 +0000 Subject: [PATCH 30/76] New translations ScreenPlay_.ts (Vietnamese) --- ScreenPlay/translations/ScreenPlay_vi_VN.ts | 150 ++++++++++---------- 1 file changed, 75 insertions(+), 75 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_vi_VN.ts b/ScreenPlay/translations/ScreenPlay_vi_VN.ts index 1f387b32..68246f31 100644 --- a/ScreenPlay/translations/ScreenPlay_vi_VN.ts +++ b/ScreenPlay/translations/ScreenPlay_vi_VN.ts @@ -797,7 +797,7 @@ You need to run Steam for this. 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 @@ -907,7 +907,7 @@ NEW - NEW + MỚI @@ -1407,7 +1407,7 @@ Upload - Upload + Tải lên @@ -1602,262 +1602,262 @@ Fail - Fail + Thất bại No Connection - No Connection + Không có kết nối Invalid Password - Invalid Password + Sai mật khẩu Logged In Elsewhere - Logged In Elsewhere + Đã được đăng nhập từ nơi khác Invalid Protocol Version - Invalid Protocol Version + Phiên bản giao thức không hợp lệ Invalid Param - Invalid Param + Tham số không hợp lệ File Not Found - File Not Found + Không tìm thấy tập tin Busy - Busy + Đang bận Invalid State - Invalid State + Trạng thái không hợp lệ Invalid Name - Invalid Name + Tên không hợp lệ Invalid Email - Invalid Email + Email không hợp lệ Duplicate Name - Duplicate Name + Tên bị trùng Access Denied - Access Denied + Không có quyền truy cập Timeout - Timeout + Hết hạn Banned - Banned + Đã bị cấm Account Not Found - Account Not Found + Không tìm thấy tài khoản Invalid SteamID - Invalid SteamID + ID Steam không hợp lệ Service Unavailable - Service Unavailable + Dịch vụ không khả dụng Not Logged On - Not Logged On + Chưa đăng nhập Pending - Pending + Đang chờ xử lý Encryption Failure - Encryption Failure + Lỗi mã hóa Insufficient Privilege - Insufficient Privilege + Không đủ quyền truy cập Limit Exceeded - Limit Exceeded + Quá giới hạn Revoked - Revoked + Đã thu hồi Expired - Expired + Đã hết hạn Already Redeemed - Already Redeemed + Đã quy đổi rồi Duplicate Request - Duplicate Request + Yêu cầu bị trùng Already Owned - Already Owned + Đã sở hữu IP Not Found - IP Not Found + Không tìm thấy IP Persist Failed - Persist Failed + Chờ đợi thất bại Locking Failed - Locking Failed + Khóa thất bại Logon Session Replaced - Logon Session Replaced + Phiên đăng nhập đã được thay thế Connect Failed - Connect Failed + Kết nối thất bại Handshake Failed - Handshake Failed + Handshake thất bại IO Failure - IO Failure + Lỗi I/O Remote Disconnect - Remote Disconnect + Ngắt kết nối từ xa Shopping Cart Not Found - Shopping Cart Not Found + Không tìm thấy giỏ hàng Blocked - Blocked + Đã bị chặn Ignored - Ignored + Đã bỏ qua No Match - No Match + Không có kết quả nào phù hợp Account Disabled - Account Disabled + Tài khoản bị vô hiệu hóa Service ReadOnly - Service ReadOnly + Dịch vụ chỉ đọc Account Not Featured - Account Not Featured + Tài khoản không nổi bật Administrator OK - Administrator OK + Quyền quản trị viên OK Content Version - Content Version + Phiên bản nội dung Try Another CM - Try Another CM + Hãy thử một cách khác Password Required T oKick Session - Password Required T oKick Session + Cần mật khẩu để thoát phiên khác Already Logged In Elsewhere - Already Logged In Elsewhere + Đã được đăng nhập từ nơi khác Suspended - Suspended + Đã tạm ngưng Cancelled - Cancelled + Đã hủy Data Corruption - Data Corruption + Dữ liệu bị hỏng Disk Full - Disk Full + Ổ đĩa đầy @@ -1987,102 +1987,102 @@ Disabled - Disabled + Đã vô hiệu Invalid CEG Submission - Invalid CEG Submission + Hồ sơ CEG không hợp lệ Restricted Device - Restricted Device + Thiết bị bị giới hạn Region Locked - Region Locked + Vùng bị khóa Rate Limit Exceeded - Rate Limit Exceeded + Vượt quá giới hạn truy cập Account Login Denied Need Two Factor - Account Login Denied Need Two Factor + Đăng nhập thất bại, cần 2FA Item Deleted - Item Deleted + Mặt hàng đã xóa Account Login Denied Throttle - Account Login Denied Throttle + Đăng nhập thất bại Two Factor Code Mismatch - Two Factor Code Mismatch + Mã 2FA không đúng Two Factor Activation Code Mismatch - Two Factor Activation Code Mismatch + Mã 2FA không đúng Account Associated To Multiple Partners - Account Associated To Multiple Partners + Tài khoản được liên kết với nhiều đối tác Not Modified - Not Modified + Chưa chỉnh sửa No Mobile Device - No Mobile Device + Không có điện thoại Time Not Synced - Time Not Synced + Chưa đồng bộ thời gian Sms Code Failed - Sms Code Failed + Gửi mã code SMS thất bại Account Limit Exceeded - Account Limit Exceeded + Đã vượt quá giới hạn tài khoản Account Activity Limit Exceeded - Account Activity Limit Exceeded + Đã vượt quá giới hạn hoạt động của tài khoản Phone Activity Limit Exceeded - Phone Activity Limit Exceeded + Đã vượt quá giới hạn hoạt động của điện thoại Refund To Wallet - Refund To Wallet + Hoàn tiền vào ví Email Send Failure - Email Send Failure + Gửi Thư Thất bại From d4324d364e74bab7eb4a7406b2c0f1d4db8beeed Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 14:57:17 +0000 Subject: [PATCH 31/76] New translations ScreenPlay_.ts (French) --- ScreenPlay/translations/ScreenPlay_fr_FR.ts | 70 ++++++++++----------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_fr_FR.ts b/ScreenPlay/translations/ScreenPlay_fr_FR.ts index 96c18570..2bbe1880 100644 --- a/ScreenPlay/translations/ScreenPlay_fr_FR.ts +++ b/ScreenPlay/translations/ScreenPlay_fr_FR.ts @@ -6,22 +6,22 @@ Red - Red + Rouge Green - Green + Vert Blue - Blue + Bleu RGB - RGB + RGB @@ -31,42 +31,42 @@ R: - R: + R : G: - G: + G : B: - B: + B : H: - H: + H : S: - S: + S : V: - V: + V : Alpha: - Alpha: + Alpha : # - # + # @@ -74,32 +74,32 @@ News - News + Actualités Wiki - Wiki + Wiki Forum - Forum + Forum Issue List - Issue List + Liste des problèmes Contribute - Contribute + Contribuer Steam Workshop - Steam Workshop + Steam Workshop @@ -107,7 +107,7 @@ Open in browser - Open in browser + Ouvrir dans le navigateur @@ -115,36 +115,36 @@ Import any video type - 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: *.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: + 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 +*.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv Set your preffered video codec: - Set your preffered video codec: + Définissez votre codec vidéo préféré : Quality slider. Lower value means better quality. - Quality slider. Lower value means better quality. + Curseur de qualité. Une valeur plus faible signifie une meilleure qualité. Open Documentation - Open Documentation + Ouvrir la documentation Select file - Select file + Sélectionner un fichier @@ -152,17 +152,17 @@ An error occurred! - An error occurred! + Une erreur est survenue ! Copy text to clipboard - Copy text to clipboard + Copier le texte dans le presse-papiers Back to create and send an error report! - Back to create and send an error report! + Retour à la création et envoyer un rapport d’erreur ! @@ -175,32 +175,32 @@ Generating preview image... - Generating preview image... + Génération de l'image d'aperçu... Generating preview thumbnail image... - Generating preview thumbnail image... + Génération de la miniature de l’aperçu... Generating 5 second preview video... - Generating 5 second preview video... + Génération d’une vidéo d’aperçu de 5 secondes... Generating preview gif... - Generating preview gif... + Génération de l’aperçu gif... Converting Audio... - Converting Audio... + Conversion de l’audio... Converting Video... This can take some time! - Converting Video... This can take some time! + Conversion de la vidéo... Cela peut prendre un certain temps ! From 6ed781f4475ddecf40d0020eca79874971764994 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 14:57:19 +0000 Subject: [PATCH 32/76] New translations ScreenPlay_.ts (Korean) --- ScreenPlay/translations/ScreenPlay_ko_KR.ts | 70 ++++++++++----------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_ko_KR.ts b/ScreenPlay/translations/ScreenPlay_ko_KR.ts index 35e28ef5..90330534 100644 --- a/ScreenPlay/translations/ScreenPlay_ko_KR.ts +++ b/ScreenPlay/translations/ScreenPlay_ko_KR.ts @@ -6,27 +6,27 @@ Red - Red + 빨강 Green - Green + 초록 Blue - Blue + 파랑 RGB - RGB + RGB HSV - HSV + HSV @@ -61,7 +61,7 @@ Alpha: - Alpha: + 알파: @@ -74,22 +74,22 @@ News - News + 새소식 Wiki - Wiki + 위키 Forum - Forum + 게시판 Issue List - Issue List + 이슈 목록 @@ -99,7 +99,7 @@ Steam Workshop - Steam Workshop + 스팀 창작마당 @@ -107,7 +107,7 @@ Open in browser - Open in browser + 브라우저에서 열기 @@ -139,12 +139,12 @@ Open Documentation - Open Documentation + 문서 열기 Select file - Select file + 파일 선택 @@ -152,17 +152,17 @@ 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! + 에러 보고서를 전송하고 만들기 로 돌아가기 @@ -175,32 +175,32 @@ Generating preview image... - Generating preview image... + 미리보기 이미지 생성중... Generating preview thumbnail image... - Generating preview thumbnail image... + 미리보기 썸네일 이미지 생성중... Generating 5 second preview video... - Generating 5 second preview video... + 5초 미리보기 비디오 생성중... Generating preview gif... - Generating preview gif... + 미리보기 GIF 생성중... Converting Audio... - Converting Audio... + 오디오 변환중... Converting Video... This can take some time! - Converting Video... This can take some time! + 비디오 변환중... 시간이 좀 걸릴 수 있습니다! @@ -278,7 +278,7 @@ Stretch - Stretch + 늘리기 @@ -415,12 +415,12 @@ Created by - Created by + 만든이 Tags - Tags + 태그 @@ -454,7 +454,7 @@ Select Preview Image - Select Preview Image + 미리보기 이미지 선택 @@ -532,17 +532,17 @@ Youtube URL - Youtube URL + 유튜브 URL Abort - Abort + 중단 Save - Save + 저장 @@ -575,12 +575,12 @@ Open Documentation - Open Documentation + 문서 열기 Select file - Select file + 파일 선택 @@ -593,7 +593,7 @@ Refreshing! - Refreshing! + 새로고침 중 @@ -624,7 +624,7 @@ Open Workshop Page - Open Workshop Page + 창작마당 페이지 열기 @@ -650,7 +650,7 @@ License - License + 라이센스 From 055a63df4c5d50619835854873aef621b9f15353 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 14:57:20 +0000 Subject: [PATCH 33/76] New translations ScreenPlay_.ts (Russian) --- ScreenPlay/translations/ScreenPlay_ru_RU.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_ru_RU.ts b/ScreenPlay/translations/ScreenPlay_ru_RU.ts index 0f0b599b..6f879226 100644 --- a/ScreenPlay/translations/ScreenPlay_ru_RU.ts +++ b/ScreenPlay/translations/ScreenPlay_ru_RU.ts @@ -74,12 +74,12 @@ News - News + Новости Wiki - Wiki + Википедия From 631f06bba13bce6e8f5f51b18399a4a0c30f98d5 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 14:57:21 +0000 Subject: [PATCH 34/76] New translations ScreenPlay_.ts (Vietnamese) --- ScreenPlay/translations/ScreenPlay_vi_VN.ts | 88 ++++++++++----------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_vi_VN.ts b/ScreenPlay/translations/ScreenPlay_vi_VN.ts index 68246f31..742f6950 100644 --- a/ScreenPlay/translations/ScreenPlay_vi_VN.ts +++ b/ScreenPlay/translations/ScreenPlay_vi_VN.ts @@ -1862,127 +1862,127 @@ Remote Call Failed - Remote Call Failed + Gọi từ xa không thành công Password Unset - Password Unset + Mật khẩu chưa được đặt External Account Unlinked - External Account Unlinked + Tài khoản bên ngoài chưa được liên kết PSN Ticket Invalid - PSN Ticket Invalid + Phiếu PSN không hợp lệ External Account Already Linked - External Account Already Linked + Tài khoản bên ngoài dã được liên kết rồi Remote File Conflict - Remote File Conflict + Tệp ở máy chủ bị xung đột Illegal Password - Illegal Password + Mật khẩu không hợp lệ Same As Previous Value - Same As Previous Value + Đặt giống như giá trị trước Account Logon Denied - Account Logon Denied + Đăng nhập bị từ chối Cannot Use Old Password - Cannot Use Old Password + Không thể sử dụng mật khẩu cũ Invalid Login AuthCode - Invalid Login AuthCode + Mã xác minh đăng nhập không hợp lệ Account Logon Denied No Mail - Account Logon Denied No Mail + Đăng nhập thất bại, không có thư Hardware Not Capable Of IPT - Hardware Not Capable Of IPT + Phần cứng không hỗ trợ IPT IPT Init Error - IPT Init Error + Lỗi bắt đầu IPT Parental Control Restricted - Parental Control Restricted + Kiểm soát của phụ huynh bị hạn chế Facebook Query Error - Facebook Query Error + Kết nối Facebook lỗi Expired Login Auth Code - Expired Login Auth Code + Mã đăng nhập đã hết hạn IP Login Restriction Failed - IP Login Restriction Failed + Hạn chế đăng nhập IP không thành công Account Locked Down - Account Locked Down + Tài khoản đã bị khóa Account Logon Denied Verified Email Required - Account Logon Denied Verified Email Required + Đăng nhập thất bại, yêu cầu xác thực mail No MatchingURL - No MatchingURL + Không có địa chỉ nào phù hợp Bad Response - Bad Response + Phản hồi xấu Require Password ReEntry - Require Password ReEntry + Yêu cầu nhập lại mật khâu Value Out Of Range - Value Out Of Range + Giá trị quá vùng Unexpecte Error - Unexpecte Error + Lỗi Bất Thường @@ -2087,97 +2087,97 @@ Not Settled - Not Settled + Chưa được giải quyết Need Captcha - Need Captcha + Cần captcha GSLT Denied - GSLT Denied + Mã đăng nhập máy chủ bị từ chối GS Owner Denied - GS Owner Denied + Máy chủ bị từ chối Invalid Item Type - Invalid Item Type + Kiểu mặt hàng không hợp lệ IP Banned - IP Banned + IP đã bị cấm GSLT Expired - GSLT Expired + Mã đăng nhập máy chủ đã hết hạn Insufficient Funds - Insufficient Funds + Không đủ tiền Too Many Pending - Too Many Pending + Có quá nhiều mặt hàng đang chờ No Site Licenses Found - No Site Licenses Found + Không tìm thấy giấy phép trang web WG Network Send Exceeded - WG Network Send Exceeded + Đã vượt quá quá trình gửi mạng WG Account Not Friends - Account Not Friends + Tài khoản không phải bạn bè Limited User Account - Limited User Account + Tài khoản bị giới hạn Cant Remove Item - Cant Remove Item + Không thể xóa mặt hàng Account Deleted - Account Deleted + Tài khoản đã bị xóa Existing User Cancelled License - 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 Status: - Status: + Trạng thái: Upload Progress: - Upload Progress: + Quá trình tải lên: From 18f845d0d79b473e281ca9e1b081b8cc2ea75dc3 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sat, 18 Sep 2021 17:13:02 +0000 Subject: [PATCH 35/76] New translations ScreenPlay_.ts (French) --- ScreenPlay/translations/ScreenPlay_fr_FR.ts | 72 ++++++++++----------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_fr_FR.ts b/ScreenPlay/translations/ScreenPlay_fr_FR.ts index 2bbe1880..e4a2f750 100644 --- a/ScreenPlay/translations/ScreenPlay_fr_FR.ts +++ b/ScreenPlay/translations/ScreenPlay_fr_FR.ts @@ -240,12 +240,12 @@ Abort - Abort + Annuler Save - Save + Sauvegarder @@ -258,12 +258,12 @@ Volume - Volume + Volume Playback rate - Playback rate + Vitesse de lecture @@ -273,22 +273,22 @@ Fill Mode - Fill Mode + Mode d'affichage Stretch - Stretch + Étirer Fill - Fill + Remplir Contain - Contain + Contenir @@ -298,7 +298,7 @@ Scale_Down - Scale_Down + Réduire @@ -306,17 +306,17 @@ Clear - Clear + Effacer Select File - Select File + Sélectionner un fichier Please choose a file - Please choose a file + Veuillez choisir un fichier @@ -324,37 +324,37 @@ Import a Gif Wallpaper - Import a Gif Wallpaper + Importer un fond d'écran Gif Drop a *.gif file here or use 'Select file' below. - 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 - Select your gif + Sélectionnez votre gif General - General + Général Wallpaper name - Wallpaper name + Nom du fond d'écran Created By - Created By + Créé par Tags - Tags + Tags @@ -362,37 +362,37 @@ Create a HTML Wallpaper - Create a HTML Wallpaper + Créer un fond d'écran HTML General - General + Général Wallpaper name - Wallpaper name + Nom du fond d'écran Created By - Created By + Créé par Description - Description + Description License & Tags - License & Tags + Licence & Tags Preview Image - Preview Image + Aperçu de l'image @@ -400,27 +400,27 @@ Create a HTML widget - Create a HTML widget + Créer un widget HTML General - General + Général Widget name - Widget name + Nom du Widget Created by - Created by + Créé par Tags - Tags + Tags @@ -444,17 +444,17 @@ Set your own preview image - Set your own preview image + Définissez votre image d'aperçu Clear - Clear + Effacer Select Preview Image - Select Preview Image + Sélectionner l'image d'aperçu @@ -472,12 +472,12 @@ Generating preview image... - Generating preview image... + Génération de l'image d'aperçu... Generating preview thumbnail image... - Generating preview thumbnail image... + Génération de la miniature de l’aperçu... From 799e1db62ffb24890b66e111bc187463fe37b49e Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 08:56:20 +0000 Subject: [PATCH 36/76] New translations ScreenPlay_.ts (Turkish) --- ScreenPlay/translations/ScreenPlay_tr_TR.ts | 2255 +++++++++++++++++++ 1 file changed, 2255 insertions(+) create mode 100644 ScreenPlay/translations/ScreenPlay_tr_TR.ts diff --git a/ScreenPlay/translations/ScreenPlay_tr_TR.ts b/ScreenPlay/translations/ScreenPlay_tr_TR.ts new file mode 100644 index 00000000..035f1135 --- /dev/null +++ b/ScreenPlay/translations/ScreenPlay_tr_TR.ts @@ -0,0 +1,2255 @@ + + + + + ColorPicker + + + Red + Red + + + + Green + Green + + + + Blue + Blue + + + + RGB + RGB + + + + HSV + HSV + + + + R: + R: + + + + G: + G: + + + + B: + B: + + + + H: + H: + + + + S: + S: + + + + V: + V: + + + + Alpha: + Alpha: + + + + # + # + + + + Community + + + News + News + + + + Wiki + Wiki + + + + Forum + Forum + + + + Issue List + Issue List + + + + Contribute + Contribute + + + + Steam Workshop + Steam Workshop + + + + 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: + +*.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: + +*.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... + Generating 5 second preview video... + + + + Generating preview gif... + Generating preview 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 + + + + 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 + + + + GifWallpaper + + + 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. + + + + Select your gif + Select your gif + + + + General + General + + + + Wallpaper name + Wallpaper name + + + + Created By + Created By + + + + Tags + Tags + + + + HTMLWallpaper + + + Create a HTML Wallpaper + Create a HTML Wallpaper + + + + 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 + Create a HTML widget + + + + General + General + + + + Widget name + Widget name + + + + Created by + Created by + + + + Tags + Tags + + + + Headline + + + 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... + Generating 5 second preview video... + + + + Generating preview gif... + Generating preview 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 URL + + + + Abort + Abort + + + + Save + Save + + + + Save Wallpaper... + Save Wallpaper... + + + + ImportWebmInit + + + 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! + + + + 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. + + + + 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 linking. + + + + 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! + 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. + + + + MonitorConfiguration + + + Your monitor setup changed! + Please configure your wallpaper again. + 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 + + + + 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 + + + + Back + Back + + + + PopupSteamWorkshopAgreement + + + 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. + + + + View The Steam Subscriber Agreement + View The Steam Subscriber Agreement + + + + Accept Steam Workshop Agreement + Accept Steam Workshop Agreement + + + + QMLWallpaper + + + Create a QML Wallpaper + Create a QML Wallpaper + + + + 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 + Create a QML widget + + + + General + General + + + + Widget name + Widget name + + + + Created by + Created by + + + + Tags + Tags + + + + SaveNotification + + + Profile saved successfully! + Profile saved successfully! + + + + ScreenPlayItem + + + NEW + NEW + + + + Search + + + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets + + + + Settings + + + General + General + + + + Autostart + Autostart + + + + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + + + + 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. + + + + 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! + + + + 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! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + + + + Language + Language + + + + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language + + + + English + English + + + + German + German + + + + Chinese - Simplified + Chinese - Simplified + + + + Russian + Russian + + + + French + French + + + + Spanish + Spanish + + + + Korean + Korean + + + + Vietnamese + Vietnamese + + + + Portuguese (Brazil) + Portuguese (Brazil) + + + + Theme + Theme + + + + Switch dark/light theme + Switch dark/light theme + + + + System Default + System Default + + + + Dark + Dark + + + + Light + Light + + + + Performance + Performance + + + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground + + + + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + + + + Default Fill Mode + Default Fill Mode + + + + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. + + + + Stretch + Stretch + + + + Fill + Fill + + + + Contain + Contain + + + + Cover + Cover + + + + Scale-Down + Scale-Down + + + + About + About + + + + Thank you for using ScreenPlay + Thank you for using ScreenPlay + + + + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + + + + Version + Version + + + + ScreenPlay Build Version + ScreenPlay Build Version + + + + Open Changelog + Open Changelog + + + + Third Party Software + Third Party Software + + + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay 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 + + + + Sidebar + + + Tools Overview + Tools Overview + + + + Video import and convert (all types) + Video import and convert (all types) + + + + Video Import (.webm) + Video Import (.webm) + + + + GIF Wallpaper + GIF Wallpaper + + + + QML Wallpaper + QML Wallpaper + + + + HTML5 Wallpaper + HTML5 Wallpaper + + + + Website Wallpaper + Website Wallpaper + + + + QML Widget + QML Widget + + + + HTML Widget + HTML Widget + + + + 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 + Open In 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! + 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! + + + + SteamProfile + + + + Back + Back + + + + Forward + Forward + + + + SteamWorkshop + + + Loading + Loading + + + + Download now! + Download now! + + + + Downloading... + Downloading... + + + + Details + Details + + + + Open In Steam + Open In Steam + + + + Profile + Profile + + + + Upload + Upload + + + + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + + + + Open Workshop in Steam + Open Workshop in 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 - Double click to change you settings. + + + + Open ScreenPlay + Open 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 + Upload Wallpaper/Widgets to 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 + Invalid 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 Not Found + + + + 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 Ticket Invalid + + + + 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 Query Error + + + + Expired Login Auth Code + Expired Login Auth Code + + + + IP Login Restriction Failed + IP Login Restriction Failed + + + + 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 + Invalid CEG Submission + + + + 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 Banned + + + + 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 + + + From 4366f53927706a3c1d9e127e5fd76f58f4e49899 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 11:01:40 +0200 Subject: [PATCH 37/76] Add turkish language --- ScreenPlay/CMakeLists.txt | 1 + ScreenPlay/ScreenPlayAssets.qrc | 2 + ScreenPlay/qml/Settings/Settings.qml | 3 + ScreenPlay/src/settings.h | 1 + ScreenPlay/translations/ScreenPlay_tr_TR.qm | Bin 0 -> 189 bytes ScreenPlay/translations/ScreenPlay_tr_TR.ts | 2207 +++++++++++++++++++ 6 files changed, 2214 insertions(+) create mode 100644 ScreenPlay/translations/ScreenPlay_tr_TR.qm create mode 100644 ScreenPlay/translations/ScreenPlay_tr_TR.ts diff --git a/ScreenPlay/CMakeLists.txt b/ScreenPlay/CMakeLists.txt index 021a5aca..cc81a301 100644 --- a/ScreenPlay/CMakeLists.txt +++ b/ScreenPlay/CMakeLists.txt @@ -56,6 +56,7 @@ list( L10N_LIST # cmake-format: sortable ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_.ts + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_tr_TR.ts ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_de_DE.ts ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_zh_CN.ts ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_pt_BR.ts diff --git a/ScreenPlay/ScreenPlayAssets.qrc b/ScreenPlay/ScreenPlayAssets.qrc index c482f31a..40f8f47e 100644 --- a/ScreenPlay/ScreenPlayAssets.qrc +++ b/ScreenPlay/ScreenPlayAssets.qrc @@ -142,5 +142,7 @@ translations/ScreenPlay_ru_RU.ts translations/ScreenPlay_vi_VN.ts translations/ScreenPlay_zh_CN.ts + translations/ScreenPlay_tr_TR.qm + translations/ScreenPlay_tr_TR.ts diff --git a/ScreenPlay/qml/Settings/Settings.qml b/ScreenPlay/qml/Settings/Settings.qml index 5febdd9f..71f191f6 100644 --- a/ScreenPlay/qml/Settings/Settings.qml +++ b/ScreenPlay/qml/Settings/Settings.qml @@ -192,6 +192,9 @@ Item { }, { "value": Settings.Pt_BR, "text": "Portuguese (Brazil)" + }, { + "value": Settings.Tr_TR, + "text": "Turkish" }] onActivated: { ScreenPlay.settings.setLanguage(settingsLanguage.comboBox.currentValue); diff --git a/ScreenPlay/src/settings.h b/ScreenPlay/src/settings.h index 1d71b0f8..b0a23d2f 100644 --- a/ScreenPlay/src/settings.h +++ b/ScreenPlay/src/settings.h @@ -124,6 +124,7 @@ public: Vi_VN, Pt_BR, Zh_CN, + Tr_TR, }; Q_ENUM(Language) diff --git a/ScreenPlay/translations/ScreenPlay_tr_TR.qm b/ScreenPlay/translations/ScreenPlay_tr_TR.qm new file mode 100644 index 0000000000000000000000000000000000000000..fe101c8104e4a244e020647ad61ecc2ce4bbc339 GIT binary patch literal 189 zcmcE7ks@*G{hX<16=n7(EZlo{IRgU&YieG6Xs{EIB>}{YKnwyP+6+p^WC9sg%>RLa z1IS`v0}<>%tms^nnplz=o|uzUkXVpf6qcEin(vugkY7~doS#>gT2#V_MVBB%MR;mb YE*@2!o_WP3K!a0L7(0MgF)=a%0Ot5H^8f$< literal 0 HcmV?d00001 diff --git a/ScreenPlay/translations/ScreenPlay_tr_TR.ts b/ScreenPlay/translations/ScreenPlay_tr_TR.ts new file mode 100644 index 00000000..57e60bfd --- /dev/null +++ b/ScreenPlay/translations/ScreenPlay_tr_TR.ts @@ -0,0 +1,2207 @@ + + + + + ColorPicker + + + Red + + + + + Green + + + + + Blue + + + + + RGB + + + + + HSV + + + + + R: + + + + + G: + + + + + B: + + + + + H: + + + + + S: + + + + + V: + + + + + Alpha: + + + + + # + + + + + Community + + + News + + + + + Wiki + + + + + Forum + + + + + Issue List + + + + + Contribute + + + + + Steam Workshop + + + + + CommunityNavItem + + + Open in browser + + + + + CreateWallpaperInit + + + 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: + +*.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv + + + + + Set your preffered video codec: + + + + + Quality slider. Lower value means better quality. + + + + + Open Documentation + + + + + Select file + + + + + CreateWallpaperResult + + + An error occurred! + + + + + Copy text to clipboard + + + + + Back to create and send an error report! + + + + + CreateWallpaperVideoImportConvert + + + + + + + + Generating preview image... + + + + + Generating preview thumbnail image... + + + + + Generating 5 second preview video... + + + + + Generating preview gif... + + + + + Converting Audio... + + + + + Converting Video... This can take some time! + + + + + Converting Video ERROR! + + + + + Analyse Video ERROR! + + + + + Convert a video to a wallpaper + + + + + Generating preview video... + + + + + Name (required!) + + + + + Description + + + + + Youtube URL + + + + + Abort + + + + + Save + + + + + Save Wallpaper... + + + + + DefaultVideoControls + + + Volume + + + + + Playback rate + + + + + Current Video Time + + + + + Fill Mode + + + + + Stretch + + + + + Fill + + + + + Contain + + + + + Cover + + + + + Scale_Down + + + + + FileSelector + + + Clear + + + + + Select File + + + + + Please choose a file + + + + + GifWallpaper + + + Import a Gif Wallpaper + + + + + Drop a *.gif file here or use 'Select file' below. + + + + + Select your gif + + + + + General + + + + + Wallpaper name + + + + + Created By + + + + + Tags + + + + + HTMLWallpaper + + + Create a HTML Wallpaper + + + + + General + + + + + Wallpaper name + + + + + Created By + + + + + Description + + + + + License & Tags + + + + + Preview Image + + + + + HTMLWidget + + + Create a HTML widget + + + + + General + + + + + Widget name + + + + + Created by + + + + + Tags + + + + + Headline + + + Headline + + + + + HeadlineSection + + + Headline Section + + + + + ImageSelector + + + Set your own preview image + + + + + Clear + + + + + Select Preview Image + + + + + ImportWebmConvert + + + + + + + + AnalyseVideo... + + + + + Generating preview image... + + + + + Generating preview thumbnail image... + + + + + Generating 5 second preview video... + + + + + Generating preview gif... + + + + + Converting Audio... + + + + + Converting Video... This can take some time! + + + + + Converting Video ERROR! + + + + + Analyse Video ERROR! + + + + + Import a video to a wallpaper + + + + + Generating preview video... + + + + + Name (required!) + + + + + Description + + + + + Youtube URL + + + + + Abort + + + + + Save + + + + + Save Wallpaper... + + + + + ImportWebmInit + + + 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! + + + + + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + + + + + Drop a *.webm file here or use 'Select file' below. + + + + + Open Documentation + + + + + Select file + + + + + Installed + + + + + + + + Refreshing! + + + + + + Pull to refresh! + + + + + Get more Wallpaper & Widgets via the Steam workshop! + + + + + Open containing folder + + + + + Remove Item + + + + + Remove via Workshop + + + + + Open Workshop Page + + + + + Are you sure you want to delete this item? + + + + + InstalledWelcomeScreen + + + Get free Widgets and Wallpaper via the Steam Workshop + + + + + Browse the Steam Workshop + + + + + LicenseSelector + + + 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. + + + + + + You grant other to remix your work and change the license to their linking. + + + + + 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 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. + + + + + MonitorConfiguration + + + Your monitor setup changed! + Please configure your wallpaper again. + + + + + Monitors + + + Wallpaper Configuration + + + + + Remove selected + + + + + + Remove + + + + + Wallpapers + + + + + Widgets + + + + + MonitorsProjectSettingItem + + + Set color + + + + + Please choose a color + + + + + Navigation + + + All + + + + + Scenes + + + + + Videos + + + + + Widgets + + + + + Install Date Ascending + + + + + Install Date Descending + + + + + Subscribed items: + + + + + Upload to the Steam Workshop + + + + + NavigationWallpaperConfiguration + + + Configurate active Wallpaper or Widgets + + + + + No active Wallpaper or Widgets + + + + + PopupOffline + + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + + + + + Back + + + + + PopupSteamWorkshopAgreement + + + 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. + + + + + View The Steam Subscriber Agreement + + + + + Accept Steam Workshop Agreement + + + + + QMLWallpaper + + + Create a QML Wallpaper + + + + + General + + + + + Wallpaper name + + + + + Created By + + + + + Description + + + + + License & Tags + + + + + Preview Image + + + + + QMLWidget + + + Create a QML widget + + + + + General + + + + + Widget name + + + + + Created by + + + + + Tags + + + + + SaveNotification + + + Profile saved successfully! + + + + + ScreenPlayItem + + + NEW + + + + + Search + + + Search for Wallpaper & Widgets + + + + + 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 + + + + + SettingsExpander + + + Copy text to clipboard + + + + + Sidebar + + + Tools Overview + + + + + Video import and convert (all types) + + + + + Video Import (.webm) + + + + + GIF Wallpaper + + + + + QML Wallpaper + + + + + HTML5 Wallpaper + + + + + Website Wallpaper + + + + + QML Widget + + + + + HTML Widget + + + + + Set Wallpaper + + + + + Set Widget + + + + + Headline + + + + + Select a Monitor to display the content + + + + + Set Volume + + + + + Fill Mode + + + + + Stretch + + + + + Fill + + + + + Contain + + + + + Cover + + + + + Scale-Down + + + + + Size: + + + + + MB + + + + + No description... + + + + + Click here if you like the content + + + + + Click here if you do not like the content + + + + + Subscribtions: + + + + + Open In Steam + + + + + Subscribed! + + + + + Subscribe + + + + + StartInfo + + + Free Tools to create wallpaper + + + + + Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you! + + + + + SteamNotAvailable + + + Could not load steam integration! + + + + + SteamProfile + + + + Back + + + + + Forward + + + + + SteamWorkshop + + + 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 + + + + + TagSelector + + + Save + + + + + Add tag + + + + + Cancel + + + + + Add Tag + + + + + TextField + + + Label + + + + + *Required + + + + + TrayIcon + + + ScreenPlay - Double click to change you settings. + + + + + Open ScreenPlay + + + + + + Mute all + + + + + Unmute all + + + + + + Pause all + + + + + Play all + + + + + Quit + + + + + UploadProject + + + Upload Wallpaper/Widgets to Steam + + + + + Abort + + + + + Upload Selected Projects + + + + + Finish + + + + + UploadProjectBigItem + + + Type: + + + + + Open Folder + + + + + Invalid Project! + + + + + 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: + + + + + WebsiteWallpaper + + + Create a Website Wallpaper + + + + + General + + + + + Wallpaper name + + + + + Created By + + + + + Description + + + + + Tags + + + + + Preview Image + + + + + WizardPage + + + Save + + + + + Saving... + + + + + WorkshopItem + + + Successfully subscribed to Workshop Item! + + + + + Download complete! + + + + + XMLNewsfeed + + + News & Patchnotes + + + + From bfeef5d8cf3b402323834bd481655ff7a3214b61 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 09:09:05 +0000 Subject: [PATCH 38/76] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b663aa52..1153494a 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Everyone can contribute with code, design, documentation or translation. Visit o Here are some ways you can contribute: * by using prerelease versions / master branch or the Steam nightly builds -* by [adding/fixing translation](https://kelteseth.gitlab.io/ScreenPlayDocs/contribute/translations/) +* by [adding/fixing translation](https://crowdin.com/project/screenplay) * by [designing UI/UX](https://kelteseth.gitlab.io/ScreenPlayDocs/contribute/contribute/#design) * by [creating example HTML/QML/Javascript content](https://kelteseth.gitlab.io/ScreenPlayDocs/) * by [reporting bugs](https://gitlab.com/kelteseth/ScreenPlay/-/issues) From 53cc5c5ad1e171be36a2133bbf52ef08a9c94592 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 11:10:01 +0200 Subject: [PATCH 39/76] Remove dummy from translations --- ScreenPlay/qml/Common/Headline.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScreenPlay/qml/Common/Headline.qml b/ScreenPlay/qml/Common/Headline.qml index fc43da7b..37fbe53e 100644 --- a/ScreenPlay/qml/Common/Headline.qml +++ b/ScreenPlay/qml/Common/Headline.qml @@ -14,7 +14,7 @@ Item { font.pointSize: 18 color: Material.primaryTextColor - text: qsTr("Headline") + text: "Headline" font.capitalization: Font.Capitalize font.family: ScreenPlay.settings.font } From f68a4dcf3fb1ed3e9f11ae45adff78a38283a4ad Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 11:20:39 +0200 Subject: [PATCH 40/76] Fix system language detection --- ScreenPlay/src/settings.cpp | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/ScreenPlay/src/settings.cpp b/ScreenPlay/src/settings.cpp index 6ba3344a..f2f36464 100644 --- a/ScreenPlay/src/settings.cpp +++ b/ScreenPlay/src/settings.cpp @@ -245,17 +245,9 @@ void Settings::setupLanguage() { QString langCode; if (m_qSettings.value("Language").isNull()) { - auto localeList = QLocale::system().uiLanguages(); - - // Like En-us, De-de - QStringList localeSplits = localeList.at(0).split("-"); - langCode = localeSplits.at(0); - - // Ether De, En, Ru, Fr... - if (langCode.length() != 2) { - qWarning() << "Could not parse locale of value " << langCode; - return; - } + langCode = QLocale::system().name(); + // QML enum begin with uppercase: de_DE -> De_DE + langCode = langCode.replace(0, 1, langCode.at(0).toUpper()); } else { langCode = m_qSettings.value("Language").toString(); } From 73426b4d8a96da2aeaad0a4292fc8fc5edb0c944 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 10:20:57 +0000 Subject: [PATCH 41/76] New translations ScreenPlay_.ts (Turkish) --- ScreenPlay/translations/ScreenPlay_tr_TR.ts | 298 ++++++++++---------- 1 file changed, 149 insertions(+), 149 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_tr_TR.ts b/ScreenPlay/translations/ScreenPlay_tr_TR.ts index 035f1135..5e0a4a48 100644 --- a/ScreenPlay/translations/ScreenPlay_tr_TR.ts +++ b/ScreenPlay/translations/ScreenPlay_tr_TR.ts @@ -6,67 +6,67 @@ Red - Red + Kırmızı Green - Green + Yeşil Blue - Blue + Mavi RGB - RGB + RGB HSV - HSV + HSV R: - R: + R: G: - G: + G: B: - B: + B: H: - H: + H: S: - S: + S: V: - V: + V: Alpha: - Alpha: + Şeffaflık: # - # + # @@ -74,32 +74,32 @@ News - News + Yenilikler Wiki - Wiki + Wiki Forum - Forum + Forum Issue List - Issue List + Sorun Listesi Contribute - Contribute + Bağış yap Steam Workshop - Steam Workshop + Steam Atölyesi @@ -107,7 +107,7 @@ Open in browser - Open in browser + Tarayıcıda aç @@ -115,36 +115,36 @@ Import any video type - 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: *.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: + 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: - Set your preffered video codec: + Tercih ettiğiniz video codec bileşenini ayarlayın: Quality slider. Lower value means better quality. - 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 - Open Documentation + Belgeyi Aç Select file - Select file + Dosya seç @@ -152,17 +152,17 @@ An error occurred! - An error occurred! + Bir hata oluştu! Copy text to clipboard - Copy text to clipboard + Metni panoya kopyala Back to create and send an error report! - Back to create and send an error report! + Bir hata raporu oluşturmak ve göndermek için geri dönün! @@ -175,82 +175,82 @@ Generating preview image... - Generating preview image... + Önizleme oluşturuluyor... Generating preview thumbnail image... - Generating preview thumbnail image... + Önizleme küçük resmi oluşturuluyor... Generating 5 second preview video... - Generating 5 second preview video... + 5 saniyelik önizleme videosu oluşturuluyor... Generating preview gif... - Generating preview gif... + Özizleme gifi oluşturuluyor... Converting Audio... - Converting Audio... + Ses Dönüştürülüyor... Converting Video... This can take some time! - Converting Video... This can take some time! + Video dönüştürülüyor... Biraz zaman alabilir! Converting Video ERROR! - Converting Video ERROR! + Video Dönüştürülürken Hata Oluştu! Analyse Video ERROR! - Analyse Video ERROR! + Video Hatasını Analiz Edin! Convert a video to a wallpaper - Convert a video to a wallpaper + Bir videoyu duvar kağıdına dönüştürün Generating preview video... - Generating preview video... + Önizleme videosu oluşturuluyor... Name (required!) - Name (required!) + İsim (gerekli) Description - Description + Açıklama Youtube URL - Youtube URL + YouTube URL Abort - Abort + İptal Save - Save + Kaydet Save Wallpaper... - Save Wallpaper... + Duvar kağıdını kaydet... @@ -258,47 +258,47 @@ Volume - Volume + Ses Düzeyi Playback rate - Playback rate + Oynatma oranını ayarla Current Video Time - Current Video Time + Geçerli Video Zamanı Fill Mode - Fill Mode + Doldurma Kipi Stretch - Stretch + Esnet Fill - Fill + Doldur Contain - Contain + İçeren Cover - Cover + Kapak Scale_Down - Scale_Down + Ölçek_Düşür @@ -306,17 +306,17 @@ Clear - Clear + Temizle Select File - Select File + Dosya Seç Please choose a file - Please choose a file + Lütfen bir dosya seçiniz @@ -324,37 +324,37 @@ Import a Gif Wallpaper - Import a Gif Wallpaper + Bir Gif Duvar Kağıdını İçe Aktarın Drop a *.gif file here or use 'Select file' below. - 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 - Select your gif + Gif seç General - General + Genel Wallpaper name - Wallpaper name + Duvar Kağıdı adı Created By - Created By + Oluşturan Tags - Tags + Etiketler @@ -362,37 +362,37 @@ Create a HTML Wallpaper - Create a HTML Wallpaper + HTML Duvar Kağıdı Oluşturun General - General + Genel Wallpaper name - Wallpaper name + Duvar Kağıdı adı Created By - Created By + Oluşturan Description - Description + Açıklama License & Tags - License & Tags + Lisans & Etiketler Preview Image - Preview Image + Resim Önizleme @@ -400,27 +400,27 @@ Create a HTML widget - Create a HTML widget + Bir HTML widget'ı oluşturun General - General + Genel Widget name - Widget name + Widget adı Created by - Created by + Oluşturan Tags - Tags + Etiketler @@ -428,7 +428,7 @@ Headline - Headline + Başlık @@ -436,7 +436,7 @@ Headline Section - Headline Section + Başlık Bölümü @@ -444,17 +444,17 @@ Set your own preview image - Set your own preview image + Kendi önizleme resminizi ayarlayın Clear - Clear + Temizle Select Preview Image - Select Preview Image + Önizleme Resminizi Seçin @@ -467,87 +467,87 @@ AnalyseVideo... - AnalyseVideo... + VideoAnaliz... Generating preview image... - Generating preview image... + Önizleme oluşturuluyor... Generating preview thumbnail image... - Generating preview thumbnail image... + Önizleme küçük resmi oluşturuluyor... Generating 5 second preview video... - Generating 5 second preview video... + 5 saniyelik önizleme videosu oluşturuluyor... Generating preview gif... - Generating preview gif... + Özizleme gifi oluşturuluyor... Converting Audio... - Converting Audio... + Ses Dönüştürülüyor... Converting Video... This can take some time! - Converting Video... This can take some time! + Video dönüştürülüyor... Biraz zaman alabilir! Converting Video ERROR! - Converting Video ERROR! + Video Dönüştürülürken Hata Oluştu! Analyse Video ERROR! - Analyse Video ERROR! + Video Hatasını Analiz Edin! Import a video to a wallpaper - Import a video to a wallpaper + Bir videoyu duvar kağıdına aktarın Generating preview video... - Generating preview video... + Önizleme videosu oluşturuluyor... Name (required!) - Name (required!) + İsim (gerekli) Description - Description + Açıklama Youtube URL - Youtube URL + YouTube URL Abort - Abort + İptal Save - Save + Kaydet Save Wallpaper... - Save Wallpaper... + Duvar kağıdını kaydet... @@ -555,32 +555,32 @@ Import a .webm video - 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! - 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)! - 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. - Drop a *.webm file here or use 'Select file' below. + Bir *.webm dosyasını sürükleyin ' Ya da Dosyayı seçin ' Open Documentation - Open Documentation + Belgeyi Aç Select file - Select file + Dosya seç @@ -593,43 +593,43 @@ Refreshing! - Refreshing! + Yenileniyor! Pull to refresh! - Pull to refresh! + Yenilemek için çek! Get more Wallpaper & Widgets via the Steam workshop! - 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 - Open containing folder + İçeren klasörü aç Remove Item - Remove Item + Öğeyi Kaldır Remove via Workshop - Remove via Workshop + Atölye ile Kaldır Open Workshop Page - Open Workshop Page + Atölyeyi Aç Are you sure you want to delete this item? - Are you sure you want to delete this item? + Bu öğeyi silmek istediğinizden emin misiniz? @@ -637,12 +637,12 @@ Get free Widgets and Wallpaper via the Steam Workshop - 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 - Browse the Steam Workshop + Steam Atölyesine Göz Atın @@ -650,33 +650,33 @@ License - 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. - 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. - 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. 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! + 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. - 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! - 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! @@ -973,147 +973,147 @@ 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! + Ö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 - Language + Dil Set the ScreenPlay UI Language - Set the ScreenPlay UI Language + ScreenPlay Arayüz Dilini Ayarlayın English - English + İngilizce German - German + Almanca Chinese - Simplified - Chinese - Simplified + Basitleştirilmiş Çince Russian - Russian + Rusça French - French + Fransızca Spanish - Spanish + İspanyolca Korean - Korean + Korece Vietnamese - Vietnamese + Vietnamca Portuguese (Brazil) - Portuguese (Brazil) + Portekizce (Brezilya) Theme - Theme + Tema Switch dark/light theme - Switch dark/light theme + Koyu/Açık temayı değiştir System Default - System Default + Sistem Varsayılanı Dark - Dark + Karanlık Light - Light + Aydınlık Performance - Performance + Performans Pause wallpaper video rendering while another app is in the foreground - Pause wallpaper video rendering while another app is in the foreground + Başka bir uygulama ön plandayken duvar kağıdı video oluşturmayı duraklatın We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + En iyi performans için video oluşturmayı (sesi değil!) devre dışı bırakıyoruz. Sorun yaşıyorsanız, bu davranışı buradan devre dışı bırakabilirsiniz. Duvar kağıdının yeniden başlatılması gerekiyor! Default Fill Mode - Default Fill Mode + Varsayılan Doldurma Modu 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. + Videonun hedef alana sığacak şekilde nasıl ölçeklendirileceğini tanımlamak için bu özelliği ayarlayın. Stretch - Stretch + Esnet Fill - Fill + Doldur Contain - Contain + İçeren Cover - Cover + Kapak Scale-Down - Scale-Down + Ölçek-Düşür About - About + Hakkında Thank you for using ScreenPlay - Thank you for using ScreenPlay + ScreePlay'i kullandığınız için teşekkür ederiz! From 3e451e33a07a3598bc9ba2da5068f5c0e03bafab Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 14:34:04 +0200 Subject: [PATCH 42/76] Add Steam version compile flag to cpp --- CMakeLists.txt | 1 + ScreenPlay/CMakeLists.txt | 4 ---- ScreenPlay/src/settings.cpp | 2 ++ 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b2c99d3e..eb81e5af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,6 +61,7 @@ execute_process( add_compile_definitions(COMPILE_INFO="${BUILD_DATE} + ${GIT_COMMIT_HASH}") add_compile_definitions(SOURCE_DIR="${CMAKE_CURRENT_SOURCE_DIR}") +add_compile_definitions(SCREENPLAY_STEAM="${SCREENPLAY_STEAM}") if(UNIX AND NOT APPLE) # Fixes QWebEngine linker errors on Ubuntu 20.04 diff --git a/ScreenPlay/CMakeLists.txt b/ScreenPlay/CMakeLists.txt index cc81a301..a50b8d5a 100644 --- a/ScreenPlay/CMakeLists.txt +++ b/ScreenPlay/CMakeLists.txt @@ -120,12 +120,8 @@ add_executable(${PROJECT_NAME} main.cpp) target_link_libraries(${PROJECT_NAME} PRIVATE ScreenPlayLib) qt5_add_translation(qmFiles ${l10n}) - - qt_add_big_resources(fonts fonts.qrc) -target_compile_definitions(${PROJECT_NAME} PRIVATE "GIT_VERSION=${GIT_VERSION}") - if(WIN32) # Icon target_sources(${PROJECT_NAME} PRIVATE ScreenPlay.rc) diff --git a/ScreenPlay/src/settings.cpp b/ScreenPlay/src/settings.cpp index f2f36464..39b56df6 100644 --- a/ScreenPlay/src/settings.cpp +++ b/ScreenPlay/src/settings.cpp @@ -51,6 +51,7 @@ Settings::Settings(const std::shared_ptr& globalVariables, setDesktopEnvironment(DesktopEnvironment::KDE); #endif + qRegisterMetaType("Settings::Language"); qRegisterMetaType("Settings::Theme"); qRegisterMetaType("Settings::DesktopEnvironment"); @@ -102,6 +103,7 @@ Settings::Settings(const std::shared_ptr& globalVariables, setupWidgetAndWindowPaths(); setGitBuildHash(COMPILE_INFO); + setSteamVersion((QString(SCREENPLAY_STEAM) == "OFF" ? false : true)); } /*! From fe7d0bff9d91f87c7a7cadd4acdb97e8c6e34c56 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 13:39:19 +0000 Subject: [PATCH 43/76] New translations ScreenPlay_.ts (French) --- ScreenPlay/translations/ScreenPlay_fr_FR.ts | 48 ++++++++++----------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_fr_FR.ts b/ScreenPlay/translations/ScreenPlay_fr_FR.ts index e4a2f750..0fcac7d2 100644 --- a/ScreenPlay/translations/ScreenPlay_fr_FR.ts +++ b/ScreenPlay/translations/ScreenPlay_fr_FR.ts @@ -205,37 +205,37 @@ Converting Video ERROR! - Converting Video ERROR! + Erreur de conversion de la vidéo ! Analyse Video ERROR! - Analyse Video ERROR! + Erreur d'Analyse Vidéo ! Convert a video to a wallpaper - Convert a video to a wallpaper + Convertir une vidéo en fond d'écran Generating preview video... - Generating preview video... + Génération de la vidéo d'aperçu... Name (required!) - Name (required!) + Nom (requis!) Description - Description + Description Youtube URL - Youtube URL + URL Youtube  @@ -250,7 +250,7 @@ Save Wallpaper... - Save Wallpaper... + Enregistrer le fond d'écran @@ -268,7 +268,7 @@ Current Video Time - Current Video Time + Progression de la vidéo en cours @@ -293,7 +293,7 @@ Cover - Cover + Couvrir @@ -467,7 +467,7 @@ AnalyseVideo... - AnalyseVideo... + AnalyseVidéo... @@ -482,32 +482,32 @@ Generating 5 second preview video... - Generating 5 second preview video... + Génération d’une vidéo d’aperçu de 5 secondes... Generating preview gif... - Generating preview gif... + Génération du Gif d’aperçu... Converting Audio... - Converting Audio... + Conversion de l’audio... Converting Video... This can take some time! - Converting Video... This can take some time! + Conversion de vidéo... Cela peut prendre du temps! Converting Video ERROR! - Converting Video ERROR! + Erreur de conversion vidéo ! Analyse Video ERROR! - Analyse Video ERROR! + Erreur d'Analyse Vidéo ! @@ -522,32 +522,32 @@ Name (required!) - Name (required!) + Nom (requis!) Description - Description + Description Youtube URL - Youtube URL + URL Youtube  Abort - Abort + Annuler Save - Save + Enregistrer Save Wallpaper... - Save Wallpaper... + Enregistrer le fond d'écran @@ -555,7 +555,7 @@ Import a .webm video - Import a .webm video + Importer une vidéo .webm From 47ca1aabaecb8d31edcdf5de7bcd43d6223885fa Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 14:48:00 +0000 Subject: [PATCH 44/76] New translations ScreenPlay_.ts (Russian) --- ScreenPlay/translations/ScreenPlay_ru_RU.ts | 92 ++++++++++----------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_ru_RU.ts b/ScreenPlay/translations/ScreenPlay_ru_RU.ts index 6f879226..0219579a 100644 --- a/ScreenPlay/translations/ScreenPlay_ru_RU.ts +++ b/ScreenPlay/translations/ScreenPlay_ru_RU.ts @@ -6,67 +6,67 @@ Red - Red + Красный Green - Green + Зеленый Blue - Blue + Синий RGB - RGB + RGB HSV - HSV + HSV R: - R: + R: G: - G: + G: B: - B: + B: H: - H: + H: S: - S: + S: V: - V: + В: Alpha: - Alpha: + Прозрачность: # - # + # @@ -84,22 +84,22 @@ Forum - Forum + Форум Issue List - Issue List + Список проблем Contribute - Contribute + Внести вклад Steam Workshop - Steam Workshop + Мастерская Steam @@ -107,7 +107,7 @@ Open in browser - Open in browser + Открыть в браузере @@ -115,7 +115,7 @@ Import any video type - Import any video type + Импортируй любых типов видео @@ -129,22 +129,22 @@ 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 + Выберите файл @@ -152,17 +152,17 @@ 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! + Вернуться к созданию и отправить отчет об ошибке! @@ -175,82 +175,82 @@ Generating preview image... - Generating preview image... + Создание изображения предпросмотра... Generating preview thumbnail image... - Generating preview thumbnail image... + Создание миниатюр изображений... Generating 5 second preview video... - Generating 5 second preview video... + Создание 5 секундного видео предпросмотра... Generating preview 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-адрес Abort - Abort + Прервать Save - Save + Сохранить Save Wallpaper... - Save Wallpaper... + Сохранить обои... @@ -258,22 +258,22 @@ Volume - Volume + Громкость Playback rate - Playback rate + Частота воспроизведения Current Video Time - Current Video Time + Текущее время видео Fill Mode - Fill Mode + Режим заливки From f0a0237c80d97df3c20383319aa709ec57c6b954 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 19:02:25 +0000 Subject: [PATCH 45/76] New translations ScreenPlay_.ts (French) --- ScreenPlay/translations/ScreenPlay_fr_FR.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScreenPlay/translations/ScreenPlay_fr_FR.ts b/ScreenPlay/translations/ScreenPlay_fr_FR.ts index 0fcac7d2..2d437799 100644 --- a/ScreenPlay/translations/ScreenPlay_fr_FR.ts +++ b/ScreenPlay/translations/ScreenPlay_fr_FR.ts @@ -517,7 +517,7 @@ Generating preview video... - Generating preview video... + Génération de la vidéo d'aperçu... From 066ae161363fd766abbdda4fefbda05f7642ae99 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 20:00:31 +0000 Subject: [PATCH 46/76] New translations ScreenPlay_.ts (French) --- ScreenPlay/translations/ScreenPlay_fr_FR.ts | 32 ++++++++++----------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_fr_FR.ts b/ScreenPlay/translations/ScreenPlay_fr_FR.ts index 2d437799..9a6d527b 100644 --- a/ScreenPlay/translations/ScreenPlay_fr_FR.ts +++ b/ScreenPlay/translations/ScreenPlay_fr_FR.ts @@ -575,12 +575,12 @@ Open Documentation - Open Documentation + Ouvrir la documentation Select file - Select file + Sélectionner un fichier @@ -593,7 +593,7 @@ Refreshing! - Refreshing! + Actualisation! @@ -604,32 +604,32 @@ Get more Wallpaper & Widgets via the 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 - Open containing folder + Ouvrir le dossier source Remove Item - Remove Item + Supprimer l'élément Remove via Workshop - Remove via Workshop + Retirer via le Workshop Open Workshop Page - Open Workshop Page + Ouvrir la page du Workshop Are you sure you want to delete this item? - Are you sure you want to delete this item? + Êtes-vous sûr de vouloir supprimer cet élément? @@ -637,12 +637,12 @@ Get free Widgets and Wallpaper via the 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 - Browse the Steam Workshop + Parcourir le Steam Workshop @@ -650,28 +650,28 @@ License - 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. - 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. - 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. 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! + 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. - You allow everyone to do anything with your work. + Vous autorisez tout le monde à faire quoi que ce soit avec votre travail. From de7a245a5d1f649a80ced26336f95ca5d782d2ec Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 19 Sep 2021 22:26:28 +0000 Subject: [PATCH 47/76] New translations ScreenPlay_.ts (Turkish) --- ScreenPlay/translations/ScreenPlay_tr_TR.ts | 92 ++++++++++----------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_tr_TR.ts b/ScreenPlay/translations/ScreenPlay_tr_TR.ts index 5e0a4a48..8c8721fe 100644 --- a/ScreenPlay/translations/ScreenPlay_tr_TR.ts +++ b/ScreenPlay/translations/ScreenPlay_tr_TR.ts @@ -681,7 +681,7 @@ 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. + 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. @@ -690,8 +690,8 @@ Your monitor setup changed! Please configure your wallpaper again. - Your monitor setup changed! - Please configure your wallpaper again. + Monitör kurulumunuz değişti! + Lütfen duvar kağıdınızı yeniden yapılandırın. @@ -699,28 +699,28 @@ Wallpaper Configuration - Wallpaper Configuration + Duvar Kağıdı Yapılandırması Remove selected - Remove selected + Seçilenleri kaldır Remove - Remove + Kaldır Wallpapers - Wallpapers + Duvar kağıtları Widgets - Widgets + Widget’lar @@ -728,12 +728,12 @@ Set color - Set color + Renk seç Please choose a color - Please choose a color + Lütfen renk seçin @@ -741,42 +741,42 @@ All - All + Hepsi Scenes - Scenes + Sahneler Videos - Videos + Videolar Widgets - Widgets + Widget’lar Install Date Ascending - Install Date Ascending + Artan Kurulum Tarihi Install Date Descending - Install Date Descending + Azalan Kurulum Tarihi Subscribed items: - Subscribed items: + Abone olunan öğeler: Upload to the Steam Workshop - Upload to the Steam Workshop + Steam Atölyesine yükleyin @@ -784,12 +784,12 @@ Configurate active Wallpaper or Widgets - Configurate active Wallpaper or Widgets + Aktif Duvar Kağıdını veya Widget'ları yapılandırın No active Wallpaper or Widgets - No active Wallpaper or Widgets + Aktif Duvar Kağıdı veya Widget yok @@ -797,12 +797,12 @@ You need to run Steam for this. 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 - Back + Geri @@ -810,22 +810,22 @@ You Need to Agree To The Steam Subscriber Agreement First - 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. - 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 - View The Steam Subscriber Agreement + Steam Abonelik Sözleşmesini Görüntüle Accept Steam Workshop Agreement - Accept Steam Workshop Agreement + Steam Atölye Sözleşmesini Kabul Edin @@ -833,37 +833,37 @@ Create a QML Wallpaper - Create a QML Wallpaper + Bir QML Duvar Kağıdı Oluşturun General - General + Genel Wallpaper name - Wallpaper name + Duvar Kağıdı adı Created By - Created By + Oluşturan Description - Description + Açıklama License & Tags - License & Tags + Lisans & Etiketler Preview Image - Preview Image + Resim Önizleme @@ -871,27 +871,27 @@ Create a QML widget - Create a QML widget + Bir QML widget'ı oluşturun General - General + Genel Widget name - Widget name + Widget adı Created by - Created by + Oluşturan Tags - Tags + Etiketler @@ -899,7 +899,7 @@ Profile saved successfully! - Profile saved successfully! + Profil başarıyla kaydedildi! @@ -907,7 +907,7 @@ NEW - NEW + YENİ @@ -915,7 +915,7 @@ Search for Wallpaper & Widgets - Search for Wallpaper & Widgets + Duvar Kağıdı ve Widget'ları Ara @@ -923,27 +923,27 @@ General - General + Genel Autostart - Autostart + Otomatik başlatma 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, Windows ile başlayacak ve her seferinde sizin için Masaüstünüzü kuracaktır. High priority Autostart - High priority Autostart + Yüksek öncelikli Otomatik başlatma This options grants ScreenPlay a higher autostart priority than other apps. - 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. From ffc660cf77e7f08f649da11ed63dbdf9f49926c6 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Tue, 21 Sep 2021 15:00:55 +0000 Subject: [PATCH 48/76] New translations ScreenPlay_.ts (Dutch) --- ScreenPlay/translations/ScreenPlay_nl_NL.ts | 2255 +++++++++++++++++++ 1 file changed, 2255 insertions(+) create mode 100644 ScreenPlay/translations/ScreenPlay_nl_NL.ts diff --git a/ScreenPlay/translations/ScreenPlay_nl_NL.ts b/ScreenPlay/translations/ScreenPlay_nl_NL.ts new file mode 100644 index 00000000..ff63839f --- /dev/null +++ b/ScreenPlay/translations/ScreenPlay_nl_NL.ts @@ -0,0 +1,2255 @@ + + + + + ColorPicker + + + Red + Red + + + + Green + Green + + + + Blue + Blue + + + + RGB + RGB + + + + HSV + HSV + + + + R: + R: + + + + G: + G: + + + + B: + B: + + + + H: + H: + + + + S: + S: + + + + V: + V: + + + + Alpha: + Alpha: + + + + # + # + + + + Community + + + News + News + + + + Wiki + Wiki + + + + Forum + Forum + + + + Issue List + Issue List + + + + Contribute + Contribute + + + + Steam Workshop + Steam Workshop + + + + 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: + +*.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: + +*.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... + Generating 5 second preview video... + + + + Generating preview gif... + Generating preview 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 + + + + 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 + + + + GifWallpaper + + + 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. + + + + Select your gif + Select your gif + + + + General + General + + + + Wallpaper name + Wallpaper name + + + + Created By + Created By + + + + Tags + Tags + + + + HTMLWallpaper + + + Create a HTML Wallpaper + Create a HTML Wallpaper + + + + 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 + Create a HTML widget + + + + General + General + + + + Widget name + Widget name + + + + Created by + Created by + + + + Tags + Tags + + + + Headline + + + 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... + Generating 5 second preview video... + + + + Generating preview gif... + Generating preview 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 URL + + + + Abort + Abort + + + + Save + Save + + + + Save Wallpaper... + Save Wallpaper... + + + + ImportWebmInit + + + 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! + + + + 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. + + + + 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 linking. + + + + 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! + 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. + + + + MonitorConfiguration + + + Your monitor setup changed! + Please configure your wallpaper again. + 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 + + + + 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 + + + + Back + Back + + + + PopupSteamWorkshopAgreement + + + 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. + + + + View The Steam Subscriber Agreement + View The Steam Subscriber Agreement + + + + Accept Steam Workshop Agreement + Accept Steam Workshop Agreement + + + + QMLWallpaper + + + Create a QML Wallpaper + Create a QML Wallpaper + + + + 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 + Create a QML widget + + + + General + General + + + + Widget name + Widget name + + + + Created by + Created by + + + + Tags + Tags + + + + SaveNotification + + + Profile saved successfully! + Profile saved successfully! + + + + ScreenPlayItem + + + NEW + NEW + + + + Search + + + Search for Wallpaper & Widgets + Search for Wallpaper & Widgets + + + + Settings + + + General + General + + + + Autostart + Autostart + + + + ScreenPlay will start with Windows and will setup your Desktop every time for you. + ScreenPlay will start with Windows and will setup your Desktop every time for you. + + + + 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. + + + + 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! + + + + 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! + Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder! + + + + Language + Language + + + + Set the ScreenPlay UI Language + Set the ScreenPlay UI Language + + + + English + English + + + + German + German + + + + Chinese - Simplified + Chinese - Simplified + + + + Russian + Russian + + + + French + French + + + + Spanish + Spanish + + + + Korean + Korean + + + + Vietnamese + Vietnamese + + + + Portuguese (Brazil) + Portuguese (Brazil) + + + + Theme + Theme + + + + Switch dark/light theme + Switch dark/light theme + + + + System Default + System Default + + + + Dark + Dark + + + + Light + Light + + + + Performance + Performance + + + + Pause wallpaper video rendering while another app is in the foreground + Pause wallpaper video rendering while another app is in the foreground + + + + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! + + + + Default Fill Mode + Default Fill Mode + + + + Set this property to define how the video is scaled to fit the target area. + Set this property to define how the video is scaled to fit the target area. + + + + Stretch + Stretch + + + + Fill + Fill + + + + Contain + Contain + + + + Cover + Cover + + + + Scale-Down + Scale-Down + + + + About + About + + + + Thank you for using ScreenPlay + Thank you for using ScreenPlay + + + + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: + + + + Version + Version + + + + ScreenPlay Build Version + ScreenPlay Build Version + + + + Open Changelog + Open Changelog + + + + Third Party Software + Third Party Software + + + + ScreenPlay would not be possible without the work of others. A big thank you to: + ScreenPlay 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 + + + + Sidebar + + + Tools Overview + Tools Overview + + + + Video import and convert (all types) + Video import and convert (all types) + + + + Video Import (.webm) + Video Import (.webm) + + + + GIF Wallpaper + GIF Wallpaper + + + + QML Wallpaper + QML Wallpaper + + + + HTML5 Wallpaper + HTML5 Wallpaper + + + + Website Wallpaper + Website Wallpaper + + + + QML Widget + QML Widget + + + + HTML Widget + HTML Widget + + + + 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 + Open In 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! + 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! + + + + SteamProfile + + + + Back + Back + + + + Forward + Forward + + + + SteamWorkshop + + + Loading + Loading + + + + Download now! + Download now! + + + + Downloading... + Downloading... + + + + Details + Details + + + + Open In Steam + Open In Steam + + + + Profile + Profile + + + + Upload + Upload + + + + Search for Wallpaper and Widgets... + Search for Wallpaper and Widgets... + + + + Open Workshop in Steam + Open Workshop in 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 - Double click to change you settings. + + + + Open ScreenPlay + Open 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 + Upload Wallpaper/Widgets to 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 + Invalid 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 Not Found + + + + 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 Ticket Invalid + + + + 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 Query Error + + + + Expired Login Auth Code + Expired Login Auth Code + + + + IP Login Restriction Failed + IP Login Restriction Failed + + + + 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 + Invalid CEG Submission + + + + 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 Banned + + + + 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 + + + From 811259df27975d486ec8de1fbdac54eaf7bf0534 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Tue, 21 Sep 2021 17:26:16 +0200 Subject: [PATCH 49/76] Add dutch language --- ScreenPlay/CMakeLists.txt | 1 + ScreenPlay/ScreenPlayAssets.qrc | 2 + ScreenPlay/qml/Settings/Settings.qml | 3 + ScreenPlay/src/settings.h | 1 + ScreenPlay/translations/ScreenPlay_nl_NL.qm | Bin 0 -> 189 bytes ScreenPlay/translations/ScreenPlay_nl_NL.ts | 2224 +++++++++++++++++++ 6 files changed, 2231 insertions(+) create mode 100644 ScreenPlay/translations/ScreenPlay_nl_NL.qm create mode 100644 ScreenPlay/translations/ScreenPlay_nl_NL.ts diff --git a/ScreenPlay/CMakeLists.txt b/ScreenPlay/CMakeLists.txt index a50b8d5a..8fd91997 100644 --- a/ScreenPlay/CMakeLists.txt +++ b/ScreenPlay/CMakeLists.txt @@ -57,6 +57,7 @@ list( # cmake-format: sortable ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_.ts ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_tr_TR.ts + ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_nl_NL.ts ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_de_DE.ts ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_zh_CN.ts ${CMAKE_CURRENT_SOURCE_DIR}/translations/ScreenPlay_pt_BR.ts diff --git a/ScreenPlay/ScreenPlayAssets.qrc b/ScreenPlay/ScreenPlayAssets.qrc index 40f8f47e..5903224f 100644 --- a/ScreenPlay/ScreenPlayAssets.qrc +++ b/ScreenPlay/ScreenPlayAssets.qrc @@ -144,5 +144,7 @@ translations/ScreenPlay_zh_CN.ts translations/ScreenPlay_tr_TR.qm translations/ScreenPlay_tr_TR.ts + translations/ScreenPlay_nl_NL.qm + translations/ScreenPlay_nl_NL.ts diff --git a/ScreenPlay/qml/Settings/Settings.qml b/ScreenPlay/qml/Settings/Settings.qml index 71f191f6..00c1eac9 100644 --- a/ScreenPlay/qml/Settings/Settings.qml +++ b/ScreenPlay/qml/Settings/Settings.qml @@ -195,6 +195,9 @@ Item { }, { "value": Settings.Tr_TR, "text": "Turkish" + }, { + "value": Settings.Nl_NL, + "text": "Dutch" }] onActivated: { ScreenPlay.settings.setLanguage(settingsLanguage.comboBox.currentValue); diff --git a/ScreenPlay/src/settings.h b/ScreenPlay/src/settings.h index b0a23d2f..586b9c24 100644 --- a/ScreenPlay/src/settings.h +++ b/ScreenPlay/src/settings.h @@ -125,6 +125,7 @@ public: Pt_BR, Zh_CN, Tr_TR, + Nl_NL, }; Q_ENUM(Language) diff --git a/ScreenPlay/translations/ScreenPlay_nl_NL.qm b/ScreenPlay/translations/ScreenPlay_nl_NL.qm new file mode 100644 index 0000000000000000000000000000000000000000..fe101c8104e4a244e020647ad61ecc2ce4bbc339 GIT binary patch literal 189 zcmcE7ks@*G{hX<16=n7(EZlo{IRgU&YieG6Xs{EIB>}{YKnwyP+6+p^WC9sg%>RLa z1IS`v0}<>%tms^nnplz=o|uzUkXVpf6qcEin(vugkY7~doS#>gT2#V_MVBB%MR;mb YE*@2!o_WP3K!a0L7(0MgF)=a%0Ot5H^8f$< literal 0 HcmV?d00001 diff --git a/ScreenPlay/translations/ScreenPlay_nl_NL.ts b/ScreenPlay/translations/ScreenPlay_nl_NL.ts new file mode 100644 index 00000000..9d2861ff --- /dev/null +++ b/ScreenPlay/translations/ScreenPlay_nl_NL.ts @@ -0,0 +1,2224 @@ + + + + + ColorPicker + + + Red + + + + + Green + + + + + Blue + + + + + RGB + + + + + HSV + + + + + R: + + + + + G: + + + + + B: + + + + + H: + + + + + S: + + + + + V: + + + + + Alpha: + + + + + # + + + + + Community + + + News + + + + + Wiki + + + + + Forum + + + + + Issue List + + + + + Contribute + + + + + Steam Workshop + + + + + CommunityNavItem + + + Open in browser + + + + + CreateWallpaperInit + + + 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: + +*.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv + + + + + Set your preffered video codec: + + + + + Quality slider. Lower value means better quality. + + + + + Open Documentation + + + + + Select file + + + + + CreateWallpaperResult + + + An error occurred! + + + + + Copy text to clipboard + + + + + Back to create and send an error report! + + + + + CreateWallpaperVideoImportConvert + + + + + + + + Generating preview image... + + + + + Generating preview thumbnail image... + + + + + Generating 5 second preview video... + + + + + Generating preview gif... + + + + + Converting Audio... + + + + + Converting Video... This can take some time! + + + + + Converting Video ERROR! + + + + + Analyse Video ERROR! + + + + + Convert a video to a wallpaper + + + + + Generating preview video... + + + + + Name (required!) + + + + + Description + + + + + Youtube URL + + + + + Abort + + + + + Save + + + + + Save Wallpaper... + + + + + DefaultVideoControls + + + Volume + + + + + Playback rate + + + + + Current Video Time + + + + + Fill Mode + + + + + Stretch + + + + + Fill + + + + + Contain + + + + + Cover + + + + + Scale_Down + + + + + FileSelector + + + Clear + + + + + Select File + + + + + Please choose a file + + + + + GifWallpaper + + + Import a Gif Wallpaper + + + + + Drop a *.gif file here or use 'Select file' below. + + + + + Select your gif + + + + + General + + + + + Wallpaper name + + + + + Created By + + + + + Tags + + + + + HTMLWallpaper + + + Create a HTML Wallpaper + + + + + General + + + + + Wallpaper name + + + + + Created By + + + + + Description + + + + + License & Tags + + + + + Preview Image + + + + + HTMLWidget + + + Create a HTML widget + + + + + General + + + + + Widget name + + + + + Created by + + + + + Tags + + + + + HeadlineSection + + + Headline Section + + + + + ImageSelector + + + Set your own preview image + + + + + Clear + + + + + Select Preview Image + + + + + ImportWebmConvert + + + + + + + + AnalyseVideo... + + + + + Generating preview image... + + + + + Generating preview thumbnail image... + + + + + Generating 5 second preview video... + + + + + Generating preview gif... + + + + + Converting Audio... + + + + + Converting Video... This can take some time! + + + + + Converting Video ERROR! + + + + + Analyse Video ERROR! + + + + + Import a video to a wallpaper + + + + + Generating preview video... + + + + + Name (required!) + + + + + Description + + + + + Youtube URL + + + + + Abort + + + + + Save + + + + + Save Wallpaper... + + + + + ImportWebmInit + + + 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! + + + + + Invalid file type. Must be valid VP8 or VP9 (*.webm)! + + + + + Drop a *.webm file here or use 'Select file' below. + + + + + Open Documentation + + + + + Select file + + + + + Installed + + + + + + + + Refreshing! + + + + + + Pull to refresh! + + + + + Get more Wallpaper & Widgets via the Steam workshop! + + + + + Open containing folder + + + + + Remove Item + + + + + Remove via Workshop + + + + + Open Workshop Page + + + + + Are you sure you want to delete this item? + + + + + InstalledWelcomeScreen + + + Get free Widgets and Wallpaper via the Steam Workshop + + + + + Browse the Steam Workshop + + + + + LicenseSelector + + + 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. + + + + + + You grant other to remix your work and change the license to their linking. + + + + + 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 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. + + + + + MonitorConfiguration + + + Your monitor setup changed! + Please configure your wallpaper again. + + + + + Monitors + + + Wallpaper Configuration + + + + + Remove selected + + + + + + Remove + + + + + Wallpapers + + + + + Widgets + + + + + MonitorsProjectSettingItem + + + Set color + + + + + Please choose a color + + + + + Navigation + + + All + + + + + Scenes + + + + + Videos + + + + + Widgets + + + + + Install Date Ascending + + + + + Install Date Descending + + + + + Subscribed items: + + + + + Upload to the Steam Workshop + + + + + Create + + + + + Workshop + + + + + Installed + + + + + Community + + + + + Settings + + + + + NavigationWallpaperConfiguration + + + Configurate active Wallpaper or Widgets + + + + + No active Wallpaper or Widgets + + + + + PopupOffline + + + You need to run Steam for this. steamErrorRestart: %1 - steamErrorAPIInit: %2 + + + + + Back + + + + + PopupSteamWorkshopAgreement + + + 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. + + + + + View The Steam Subscriber Agreement + + + + + Accept Steam Workshop Agreement + + + + + QMLWallpaper + + + Create a QML Wallpaper + + + + + General + + + + + Wallpaper name + + + + + Created By + + + + + Description + + + + + License & Tags + + + + + Preview Image + + + + + QMLWidget + + + Create a QML widget + + + + + General + + + + + Widget name + + + + + Created by + + + + + Tags + + + + + SaveNotification + + + Profile saved successfully! + + + + + ScreenPlayItem + + + NEW + + + + + Search + + + Search for Wallpaper & Widgets + + + + + 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 + + + + + SettingsExpander + + + Copy text to clipboard + + + + + Sidebar + + + Tools Overview + + + + + Video import and convert (all types) + + + + + Video Import (.webm) + + + + + GIF Wallpaper + + + + + QML Wallpaper + + + + + HTML5 Wallpaper + + + + + Website Wallpaper + + + + + QML Widget + + + + + HTML Widget + + + + + Set Wallpaper + + + + + Set Widget + + + + + Headline + + + + + Select a Monitor to display the content + + + + + Set Volume + + + + + Fill Mode + + + + + Stretch + + + + + Fill + + + + + Contain + + + + + Cover + + + + + Scale-Down + + + + + Size: + + + + + MB + + + + + No description... + + + + + Click here if you like the content + + + + + Click here if you do not like the content + + + + + Subscribtions: + + + + + Open In Steam + + + + + Subscribed! + + + + + Subscribe + + + + + StartInfo + + + Free Tools to create wallpaper + + + + + Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you! + + + + + SteamNotAvailable + + + Could not load steam integration! + + + + + SteamProfile + + + + Back + + + + + Forward + + + + + SteamWorkshop + + + 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 + + + + + TagSelector + + + Save + + + + + Add tag + + + + + Cancel + + + + + Add Tag + + + + + TextField + + + Label + + + + + *Required + + + + + TrayIcon + + + ScreenPlay - Double click to change you settings. + + + + + Open ScreenPlay + + + + + + Mute all + + + + + Unmute all + + + + + + Pause all + + + + + Play all + + + + + Quit + + + + + UploadProject + + + Upload Wallpaper/Widgets to Steam + + + + + Abort + + + + + Upload Selected Projects + + + + + Finish + + + + + UploadProjectBigItem + + + Type: + + + + + Open Folder + + + + + Invalid Project! + + + + + 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: + + + + + WebsiteWallpaper + + + Create a Website Wallpaper + + + + + General + + + + + Wallpaper name + + + + + Created By + + + + + Description + + + + + Tags + + + + + Preview Image + + + + + WizardPage + + + Save + + + + + Saving... + + + + + WorkshopItem + + + Successfully subscribed to Workshop Item! + + + + + Download complete! + + + + + XMLNewsfeed + + + News & Patchnotes + + + + From cddf821f894b59c610b26c7e498d371736db5750 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Tue, 21 Sep 2021 17:26:41 +0200 Subject: [PATCH 50/76] Add translation support to main menu --- ScreenPlay/qml/Navigation/Navigation.qml | 5 +++++ ScreenPlay/qml/Navigation/NavigationItem.qml | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ScreenPlay/qml/Navigation/Navigation.qml b/ScreenPlay/qml/Navigation/Navigation.qml index 26c6be1e..a8965a6f 100644 --- a/ScreenPlay/qml/Navigation/Navigation.qml +++ b/ScreenPlay/qml/Navigation/Navigation.qml @@ -78,6 +78,7 @@ Rectangle { state: "inactive" name: "Create" + text: qsTr("Create") iconSource: "qrc:/assets/icons/icon_plus.svg" onPageClicked: root.onPageChanged(name) objectName: "createTab" @@ -88,6 +89,7 @@ Rectangle { state: "inactive" name: "Workshop" + text: qsTr("Workshop") iconSource: "qrc:/assets/icons/icon_steam.svg" onPageClicked: root.onPageChanged(name) objectName: "workshopTab" @@ -98,6 +100,7 @@ Rectangle { state: "active" name: "Installed" + text: qsTr("Installed") amount: ScreenPlay.installedListModel.count iconSource: "qrc:/assets/icons/icon_installed.svg" onPageClicked: root.onPageChanged(name) @@ -109,6 +112,7 @@ Rectangle { state: "inactive" name: "Community" + text: qsTr("Community") iconSource: "qrc:/assets/icons/icon_community.svg" onPageClicked: root.onPageChanged(name) objectName: "communityTab" @@ -119,6 +123,7 @@ Rectangle { state: "inactive" name: "Settings" + text: qsTr("Settings") iconSource: "qrc:/assets/icons/icon_settings.svg" onPageClicked: root.onPageChanged(name) objectName: "settingsTab" diff --git a/ScreenPlay/qml/Navigation/NavigationItem.qml b/ScreenPlay/qml/Navigation/NavigationItem.qml index 69aa3ace..e30d72c2 100644 --- a/ScreenPlay/qml/Navigation/NavigationItem.qml +++ b/ScreenPlay/qml/Navigation/NavigationItem.qml @@ -7,7 +7,8 @@ Item { id: navigationItem property string iconSource: "qrc:/assets/icons/icon_installed.svg" - property alias name: txt.text + property string name + property alias text: txt.text property alias amount: txtAmount.text property bool enabled: true From 1179a6624cedb51012dede356124ed105f4e2233 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Wed, 22 Sep 2021 17:16:09 +0000 Subject: [PATCH 51/76] New translations ScreenPlay_.ts (Dutch) --- ScreenPlay/translations/ScreenPlay_nl_NL.ts | 40 ++++++++++----------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_nl_NL.ts b/ScreenPlay/translations/ScreenPlay_nl_NL.ts index ff63839f..0c1b996a 100644 --- a/ScreenPlay/translations/ScreenPlay_nl_NL.ts +++ b/ScreenPlay/translations/ScreenPlay_nl_NL.ts @@ -6,67 +6,67 @@ Red - Red + Rood Green - Green + Groen Blue - Blue + Blauw RGB - RGB + RGB HSV - HSV + HSV R: - R: + R: G: - G: + G: B: - B: + B: H: - H: + H: S: - S: + S: V: - V: + V: Alpha: - Alpha: + Alpha: # - # + # @@ -74,32 +74,32 @@ News - News + Nieuws Wiki - Wiki + Wiki Forum - Forum + Forum Issue List - Issue List + Probleem lijst Contribute - Contribute + Bijdragen Steam Workshop - Steam Workshop + Steam Workshop @@ -107,7 +107,7 @@ Open in browser - Open in browser + Open in browser From 366dd39c449df4727c7743f7633b6220b69e10ab Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Wed, 22 Sep 2021 18:16:49 +0000 Subject: [PATCH 52/76] New translations ScreenPlay_.ts (Dutch) --- ScreenPlay/translations/ScreenPlay_nl_NL.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScreenPlay/translations/ScreenPlay_nl_NL.ts b/ScreenPlay/translations/ScreenPlay_nl_NL.ts index 0c1b996a..ae3f9b9d 100644 --- a/ScreenPlay/translations/ScreenPlay_nl_NL.ts +++ b/ScreenPlay/translations/ScreenPlay_nl_NL.ts @@ -115,7 +115,7 @@ Import any video type - Import any video type + Importeer elk video type From 72c0fce5deae138dde2ce594c7ea30434064d66c Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 10:46:22 +0200 Subject: [PATCH 53/76] Fixed typo --- ScreenPlay/qml/Common/LicenseSelector.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ScreenPlay/qml/Common/LicenseSelector.qml b/ScreenPlay/qml/Common/LicenseSelector.qml index 762928f8..277016e7 100644 --- a/ScreenPlay/qml/Common/LicenseSelector.qml +++ b/ScreenPlay/qml/Common/LicenseSelector.qml @@ -40,7 +40,7 @@ ColumnLayout { ListElement { name: "Creative Commons - Attribution 4.0" - description: qsTr("You grant other to remix your work and change the license to their linking.") + description: qsTr("You grant other to remix your work and change the license to their liking.") tldrlegal: "https://tldrlegal.com/license/creative-commons-attribution-4.0-international-(cc-by-4)" licenseFile: "License_CC_Attribution_4.0.txt" } @@ -61,7 +61,7 @@ ColumnLayout { ListElement { name: "Open Source - Apache License 2.0" - description: qsTr("You grant other to remix your work and change the license to their linking.") + description: qsTr("You grant other to remix your work and change the license to their liking.") tldrlegal: "https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)" licenseFile: "License_Apache_2.0.txt" } From 7e029bcdf82b40295dd1cb05f43c774ebaf9d330 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 15:55:40 +0200 Subject: [PATCH 54/76] 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 zcmd^odzf5RmG4e>^{cx2k)#PBgm4l<=s?nhkU)q{L%-9c)7^A;67YdmcU5;6sTcJ~ z(<1UR0)l|bTXaNTimw?4)Xz~yorpRp>K&MwE9!U^#_=1kSH%}PI`{Y6>zsW~Rh_Et zF!z4e}UKI&or)&ya$xp_fC9&j#A?ocIa=FI`9PEA5rR(Cvp9x3f%a9r8=LLYwBYA`lJfH z?Ws8a9vkqUg|7Nz!XP=T-hhf=qERRzADRO$^075FyBX**7?dta98%>Aln z=Z`VgZdEgkYt{Eu&8-2Yu6$Y5-1`-!R&0{%DR;_separJzN%^-!~Lt{ay{`0x$gO) zTpwLfH9tH-sp?BqW7~I>n);|}ymzHi`QNI+BhM>!ZdMK64cax1$@QeW<+|`Hu1A%+ z=q>7^Gp<+axG&0e?G@^x_?MMh`8K&;^jo>kq}0CH7l8L6HFC?-pu_jo_?4emYW^E) z{7=8eyqeYPf3{Pp%l@RUeP*Ll@BNj!{R6mf?_PD!-I(W%bL#oKK;Ij_rM`O{?!V_H z^=}d2`MUS2pT8JU>gv1IFW(0G-gBFJ^>KWE?|sWIz83KAxO&;d?O(&^YS|mAUr_2j zuPmFXZd2;6@nu*4&+ST`@y2EE`Yz^u)xKr7RlP&04_&wH_RmaVJ)+A#8GO4^cmMUW zXGR}Z>eiuUFC76Bc$K1Q|i!9t8SToBi8vZt8Q!gC(voS>V0p_DfP}w)!hN$xAvr}PhGH4 zsoQ>A^=Ure_J^vMZ+ZmRi{v`<<*J{)0rOt_;i^}^0zTI!M5*PQ<+|ab>dp6K z{cgXox?}4nf$zJk&pv|rzU_?a9dF0H-hD%L*9(B3xubfp=Q^bt{;m4pUmlP5W7U^D z^9iLsyrVktmBI=TAF3y%WMv(?w$@I&DJ`s&-Vc>ad#tM7R46-p()R((%zol+0} zp!%r;>#!~_S08;d=KrSeSASz_gHrLYSAYAF3zgcszxr4A{58h^WA!V2!1KoA0{P=X z@5i1B96sX+=zE`B*W54H!Eed+(Z>UCpZGMsUl+I`c@g;Ql)z1E?gU-B0yj-Q33*Ee zZoXhrsSk7p?j0iE?F>9{)efbOv;`g>0KZ=KXyD(^>7`7rd(8K1AYDiKlY zy7$-I_?ss{ms@M@cr)Nv-&*tD&W(WAS#u}pTz8#ZH}%%scl7U++I@4){a^gGQg6SY z=E3?eDs}mdHIJ{fl)Ch9Yn~Vc+{Z4f`QjWtzv>q?U)`Bg>hRv0Z+(0k{J*v4J0IDv zRP5U||JVtBKkk~E@1FHAp5IsV-EUyLxo2yB_74w2e%~+Glb)@udIsY>@Wa~L(`%G^ z-=}Nq{sz|@e^MI^ejjr8NNv-*@qP5v+LoE8!Dp*#S3LJ~=(=laS3d;s_RhA-8=7{PcC zj@7>WjeeyL-dFpRn=s!S8f*W2BIbLNsyp$cpwlINbtirg_uX`E-PZSp!Kd%4yXuh+ z(D}!8N1ofP)L(?_Zq9y6sm)K+-SO2|0q39U?)r9KsqBMwkG}p~jQeceqi@A^Ue$ek z_Xyy9yzZH&W01R!x_@o~{ZGBF?q~mSn^Nnx*1huaCqbXj*Pr|ZY{jV?>Ni|?9Qf<8O6`BR{<0?A|NiCm(V0Ihwd%S0xi?|nA6ixasc!(U zRkzFaguQYdI3m|aF0cO-@jkIzu6wSi|H7`zpx1`$kH#_IbGz%m8GcEr4?bQ0%f0KM zN3O5`{iQEpKL4Yk>aIU3b^TKfXMY)d+}YW%^FiSAj>j4zfS|9|!&4bALnh9ZB%TmmA_eRe=BdhWOA8uoqW1 zWYnpk^Jf~adZJC%CZuY(U<4Y=3b8+>p_8`e7<{K)5bW1XK5KK=pl^Pz`= zpZ$B-q2s#c`lgS`_422JU%&JS_%sy!`)jkX3ttYtu>F^~|D@pe_w2;_z8d_=jy&9k zJ;9&9c)e0HuLl2P<8Oe+*2d}&V4VKJ#_DG<{(}!Swp@A{?8`lJU3YEc3IFg@(C?j% z)}KM=cU{qVY76LjWPjtpH_le-BNsP@2k`u!HI0}5a1wU>*2c{40POR-b8Wwa-a57M`3nH&wrd){_v(Jo z^U21aobx^SBQMHz7x?!Jq4iHZhtDTNn=bo0^nZ8g z^uGX}YyLH~^*QLFEkmKsr(XvDe_yUc!BE%4pTW0J%GG*ZsQbqsgdX`*s6X{X=+{ta z-^qachEImx@*Md7`U9c(%LDlQrBGt$dZi}*97;Ui2fK1*DEC4Hc70jsZQuV2?Asqg zH(h#Eso(>0jocTy^|T$(1Mdsnv;E_c|0_cuekhK4KOK5(8rS((L!bE8v{I>m4;>9$ ztW;uk=$T8G1K(ii>mO=X>MhrXzHu`6^zK;bg;(%?doJ{|+rftqtqlEw_Tutj=y&zM z#(F;66!`9K(CZtUR;4df>YUN06TY(@c5Y*E%65N920Kb8udVM_pmOzUN6_zUDka5v+u+D zf3*3+&w~GQoz3a1kH9bcaPu|qe;ed_zWKfvFwebrH9zs$FDZ5UNb}L(W4>!Hmh0e+ za(#4b^NTO`!5)36`6qvjz)qdi{HxDxg#CDD^Y5_?YWL@w|1%A^ZFjdcKL9;&O>N7{ zbG`!l{j6pES3&pI+vK|bsg~1kI}Y}{zU6|OuY*1sYU%wB*6G0GEpIyX4)Dp=mRJ+k z`z=qj96IAD@cU)UT}kNs(N|g?cq8Vu|G&39a$XGf>~}4H^_x@R->h%>Oh5SNp01Xs z&)5n1t8MvO9`Now(DL8bKM8w%LCX&=$NIOtBG>g@EicdE``hmTkdHiE4b-dDDfPIh zTKvE46!=c6u{RY@WyWIDhoYHfyk$+`JF9y9?+OOi2X+DWuE2Q)YM>{ckCuTs=!H4x53@ONd|+qbb@>1Mz+MmB zn!!vonk)l&j~DPBf55eBkD5>i45HP0CJvMVH|_;DUJl&28dNUi)3j3TzMT25q+mb{M>ay{Tj_ z6PwEC^r|)VrV@#KGL~D=d=w091m|2B=nZt5Cu#;#nS6q%7u~!T>~H~?p&O6v#$Xp{ z7CcKYru%qsD4Wekt>IWU=L4fTa1x&0ZnNtyGiYEWI-m8q-wLe7bjaE}FrlUzKmb9iasrhU)Lx8P@;v?b1L%C>zgs(!t z0sPbWKdB-rhQG6zRSH*2E#R708N3=(z4$w=KcB%}v-)?zMfVc_+|+A zaP$;Ln8T|%K;(%0ER1I?8~zOL$fyK9OX5j>FW3-EerDls93yjt9PV7upIGW*wNDM> zbt%T{@#zF;lEy#6CQooYFRt#WIZdT7?u#n$uL|Pd>6k$RPw&8c%e>=SINxBs&FiRM zC4Q5_tHbs;oNdg0Jr8Kk=LtY{UZ0Ko)Al_xnB`%IXO^kHD3~S^OU_!Uq_vRBXRNVa zYdV#jiOuFS;am)##&T9HYfVLSxoF19rTFdPXeK9j&xhmjbT}>Fgsp5kIvtydObt zfY)0S`E)v!$webJRQ+f!YlSn>-BvJodPgF?!?Jjp)ql6^zfrzP%^t?z@ZlK#&L{Xf zv4ello=xNLO#Co~WMywA8qP%zI#U^fhSCaZS73FZ6Y@$W)dPv8syYu6_`1Ldq;PMb zAFug2@4!kyv+ROo?+kP~^i{_VC5XBePA=HU=N8gh7nU8gy+r7D0Q_!hNq{~d18xfp zV4x8*$OcfFk^xU^; zif|zXAk7TbHJ5l$f4Yq`#=v9*v*38W8+UN=cY7@7$rDjqPSTm^%uF<6cvwq@HmhYB zVT0{v?E=}mKwOws48vEuFl&%mtvB;r(VeuSnM^8UrKYFz8H}@@v^%bdv&W;^d|Y^Y z3e+Rz&Ic2~b;IOg*)%KA!k&w%kQ87ud`jcqg}X?MZF#&FD+{%Q7dF@-Ga*@CmpP-|6hD!pLkqF3fLQt?=NDizLXhp8OJ{uBS1=M`zYzKFI5sPRPH;q_2M zY8}$5SCN#q@ikCtx~DMbV*qtJG=oE4vH}-q8`y#j!uKvWx{T4*oeakpvQbN;XZ4Sd zkB)0HFA@D6Hu_y4Di@!u=n~!?Q3%hwx&p3awa%slbh;P>n2)fl+K*xG+w{_(kFiNg zQO1IaqlxGe(XE2U;Xgy>l{OBvaozbyEY;DW^~w?nu)T=r6mu61QN`l?+PdGv_s4sN zevS0cl%c;fYj*|otic6aL7gsKJAo*)wiXKT2aq1M#f3gQr-A#lAW?B{$1Cc!Q4jiC ziqQwGkLxCF6* zS7%{Dij(Tr6Qz;cf&aS#XKTW^B$FsY)H^jwwZP6gy!y0oK8~AYahYOke1P@*gIWClfLfmqY7TY$mav%l3K!CkURq@y8@)DYj};50+QH9fLF6g=w2w9?sm(?)wvL1$ zyzQCj75Nw)hRw$yaVzxX`za}UEntTY+`t6f{9}N%p%fMv%{C=PtGJx7E#s*lBXQKF z2%Yk368|$?wbXt!j^J)9Cb2{7ziu;$#!FNATz)EQ?H?aLhPgB&W@a3nLo|uF+JLKr zD$RvsTB)`5MQ6fr!?Z=<=b2PID+v+(w2qg}lQq35_!2~+{BxTE8*EKCglnNX_qYWH z=89grh{>Go6ih;YS012V4PZJ5*bRulKr9}w{Lq?!1#HfNq%uGtAJSD}lE`%s8VJVP zhcK}+tPTVtl8K?&5@(0{ngR!h1JLOh(EZkm%Anaa77s5>(ffq*USy0mMDxrA#K9VG zMusGXnBQH&;KXz|9({9PYJQPLY}V-^hWR;wn=`1?P2@7s-1J=KiLMB&)Kluz7FuUj z4TRbQsW?Ks$^e4kAJ|Z#){-JQM=GqY@LPB$?ZeJdfO;)gl3uG4m9%6%-I= zW0-@%9R^z47@)zUoSsXia0#2>sucJt&?2hAPlFnk%|$LKCp;rooK`7>HcW@KWZFs6 zD?Mt#pb``xJYw}M=*I_RGe$RPiHcwyGnh@MG~7c4636}X9#?aFUnZ3XK~C?04c26_<`DB)2+Q)I)M=hz^fV+?;;DJV)pGc_OSX*{UsVMM3+c?)GO>f#7A3Cjjl znbh#q?uESBx+fZr#AC^*HG%w_9nQ5lAKIT8r>DHZYSJ80WU&g3%Hr(RW^1ETE-Qt; zLr;jt%GGV!6Tm0wB1VptF!CCc@PnUV0z@5MXs#|AuQaQ)T(t4Q=v2avzHK6P>lz2D z42C1!{85>Q+EusKk8w;zr1*edeJP{#!}lFmqxgRb*`hKdtScJ9goU1iqSt z2O?E8rxwNd;gA+DR-|Cya2G|4uiWK2<^)X{Opn#jlmWA+z-uA8Qdnd`NJ_^{`30s%;Q7IhHa{Y;c|c9wq*4(L(#@ zRLTHeW#>?Gn3gApVh}6No0I`F;}e(7Lq$x18UJrYW@nqoY#x?%>7iM(YmQA-xZQ`r zI>1a0_J-LEQQ8bUb?D(WQ_&yr1AjTd)BG`BqgM2iBL_>)b_q5~w+; zjAfsOJTTs8#|KrP6D~W(${`Qc1Ff!Ok+ZPJ48o{D_`HSXp(DX=4KZxuv1D-#X9 zniFBJ%bazHif z;7xppwL2>FGO`kcz^)_d%-Lh()q_vO4|08;7Z1*{%SpFYuo|NUY984rl%%qUVreTk z7q#Lke1jSdGN)O@9vzl`h@B<~+N^vsi%L#*W`WOVbV)pG&BxH7!e=L@*$c?Lp*;#( z6lOB1gms#3X_1k230nrpS?y>Xu_!dz&8HQ%vp9Dgj)gVs8GzQ0rr4^LMY|0eVD_LK z-jhK!&0nBOV}ypGWHyH}qY)h&Ou`8#Wu1tH&K7Cu{e-5D;>XoshZCJG23<_5$qI@8 zNnVSBXD%?h>-26Uut>RV-hMG3M&=k6F@n~L9IAgT2*%J_b^$e75pHwZG2yrgj4L>m z+9OLbz2FT^$@#_nW4i9}-Mof&2s352GVM`iI|i}Bi4<@($rx*sC2?&Qr8-#%Y1f;# z+x0Zzi!k>pv4cgUu{W+TfgwuFY5%jv>?}qR%q}USa>{v(uT#ZM4!2A(xbbNJKRvT76#l(8yr{ISqC4m+tGVW zwKxyfaaf;MFLRX};)EXESSebfq~CLuk;;S7_%!O`qDZueUT(y|Rf5Ir?xpZ?eh3>UvNp33Ow z$bKA;iBYkEq(=h(I6L;fiUnTq)E6F{m_yH_^`mR=gmFU$6BiVfTQoaMkG1B^1PWc5 zSQs^J^i-nlFo7HL2|91mH`!rzN5bixhLVXUVpncK*Cl%I`0W-Aaw;E-N347ry`MCQ z1|aUx5Yzcg8kL_dR`f8e7+5_K%}is&_<}BH_%8p*|A)&@X1f%Nn#a{?l7^6T;ovo5o?GUr^}88~zGQn8d} z7+2H$I22Cc9SxH>RWw9mdKk))#$-3gJ`chX8-`*(+YSTCyrt_R_sgm?*7w%iT*D#m z99NX1a7~0mOeNRj)?LZd={^t4mJfdzwJzkr-67?SQhv z0GWxhAU-Q@OyJWD`DG&tY2jV9VyckKXYEyTIkp!R${;>Ki$7Q}8_ng@Xk-W{XVCx^ zw4BZcd;fzDe4quuyRye2JPUGZ#%tRrAbP!9CA6>CT_S4e#v##(7 zO&11dtg3+;211JsA**}ZWrJ5Cqz<2CpJkUJT*{T^V2*d)!h#8v;@ajjf?K{18aTR$ zUx-|DVT5OT(n%QL1A< zr?V?ct$>R{h7`kF2(^KAy(L3pG|QbqQ&>tV-ZNE7B}?X~x0&T0AVYzb*y1w9#@8t* zJBHHP-P%|Nv1uzdt2cCL)~bc?3Uy$ftL~N_tm6CF2tp5*(WR)5KD-i7x?AH!kCT2f z1kONn+U0h#Q90ls#BI-bJzB=`e56I2r86%QFg zZq-Sxd2rNaPG20CA_K*PjQ9#L)n8bvh?pH<`vs1oXbVD3GuzW#QAbh=MS5>%CF2E; zTv{$C8WDFNM~Y4JXQy^T{;PPc8-XwOe*&F)#QG%BAv5IwH=>ZCLu09QK0P`!!xjaN z`~Ajgpsy*?Djbx7Bs0qMa*$)5#s7p$gzqVDY>r5vfSkcU(taGDh#Yc%Aou;9s<2N+ zZ7p+uH#FXm7A|TExqrJse;>_zGAbTXCZDt!wQ$4qO%(-CsPtc&CZbLfVNrDH>#MuB&`6He})o{l2SEZi7t zbK{Y1SA`VJ@mV7}*~RR0zP?8g?&{U8ZnO<>3&FxeztkK@{pSF~@Vc+Gdc zct51y5w#IiAJ}uqC;RbgLO<7y$_c;i)z9t6U4$`-r{q&YIDqdt2A5U*YVppvAZ$0G zFP7KBN566g|LFe-(=hour7p)i>3I|;ay=DtB=s7}OOJ=I1&ZrGdReX1kkEH3Av`{7 z#|$U%jrjVP0y9RQuHWja3&$8Z>?^G;-dPoAoM=$U-WgoQNTRC=&^c>X&xQFJwK-x$rTOo!*MV5ag7GO*$2_Nxpi7#g% zTb6|*n2Pttj_$bh^r-~6so5EaeGAN|lHO8gVxpWJ=-wkdz|@j6f+WeA7$&7TD|+2r zNqI^l5csf~3QrL7g6CLJoJ?V+3m>rfI2xg`9@DTKz+S!C;wpVMi43~TF044=v) zYGceSsPGQ$giLgIIB`i9)uXvwE}h+d=9yWnWPY4mitQbN!GZ;RA~z14(zl+oXNZ-rkjaqYCCne7!v{-MmmLHQ&NeG83-tM zI$$D}<3{{_VH z^Z*FJtc+`V&m&`w*lvP0sMcg^kx5wtv5cIVu_(>Az;IFlI7Wmj-Z>?q#0NE$U1j=b zxx3#uk=hBtC*}j~j2%8pJ1kT-JA=CIf=;)!aw{Co8;;xX zrU>Wg}YAB*s?YUZ!AERBswl_nC(7d@iM99F9=< z+){So6+XdTQ&OmQGfD2wyTW_x5mu0Bp0KhnoY7%r;f?F`jYQmu8t6fn_R6;);S#2Y zl5<<-3n6U)B$ndCnopRbqSlwx&ORWH%&;Nma(jCrG&=IM&epm@cop{Z72dcM0V{Z- zDx$XtaHEmzqmr7f^fLQ*E^%61UvVUzfPl$jY8#2G!{8aZnslFa4h&bx{dp3l_>69+ z5L}#EalhH?!eE84nM7WIqe~8?^X!br&*d(+B;p7J6YmsU<^cI}PbC);DS)FNo=V~)U4No#i=bK< zPo4740qAzwucvApQm%Y z)eanp4KTDir@E$M^!~%iLs>onw>{B$=2Vx~vDz2cCpH03?LF%z5A6O=u+E>A!;W11%ZNK6 zI6k@4yvV1iML7#;9&uQoPcSp%Bv;9>B0!uQXJs2Py!OM_-BjwHw)d$$u`SlnX$h-8 z9t&p~VSw$xqdfTPP?8&l@af)YJQqb>YEJV9?`F_ub06+T{N=JakK+K7=s=82n$I$9 zOyGp2)J$$3b$JO=*&B(bG1k0!TnD?prlU;v=F{N0DA=9$*8^8?Th*r%6>th@NKRoL z+neiPmV)ZFysv9qVJ4%2@D2) z1BjXPz*v|b!My1ikR3!gZUa3QT;cgS26b>Xz$Q@s=`l zGnyQSvDG;aqwvw~Wt4UgXytTI9?+9<(%5b-`~=s!Sv|TD@qje(>xy{cI1iT@hd!t% zXcISL^<2;NAigIra7u;B+kH-wDvbqVXK1?iv$$&QaKa&=SY2=1!^K{L=qxgXf?JN@ zTxVl&*EMbEnK&Ai-jCh=1wYw1$=d(PrKD-1kVOuF9wPXTh!=)`Y|o&nqDMm&L29s6 z>tzdJA}%mrQHQ#^^Na}yHl^7P9Hukj>>T_n9%m@aiB-mC6I3C5G~sHE9cfHYf?g@% z!!Q{+3$gJeo{|htsaSKLpOoXAsCn6M?1mwaJ@Dvbmr8=jI$w#zPrPttc^J;-|^c>S8_HzK=J(eymyk4 zTyi#NNxTsD^f~U82{BT{2`@O>QTtz!=nM}yfV-s`R1`fOFrE|?p@%kuMmzE@O7Yxy z1cyBABeQHga^_KNLK`Ls-rtTc<)ooPY3RU6BHfblV?@J7m@`2i@#|fxpcZJj@c0P? zn#l1*kmouxPV>)c$?+i}B9AX3~GA?fPE2zT_*qA`YKUfG0hXr$MI;?s+DH%|Ya!2|Ge7 zMdEH7FjWxkjI9#1N^%=o`K`~~@u_5-WI3IXJ+B$xYYi!0QmS^sH;NFQ3XUq`#PCb} zASie-oa<}~cqRCqqp!&}He&8X-RYuht0 zqt@AOKncB;b=o;MW}>JC9W&;q68yZtcFb7}qVoj3NE0o1w_0A#v?*|zgdVPb3&GBCN}m$v78y{pdm1v}CW zeLsj)7Iu;_OXksLuG`v9+e}>+<{7H%H)|h+@2Ajdal#=yn-_VzUn9vrQX$W@+ zC`ujP##nymFcQ&x=y64k0B=Lm^;JK%6rYms5A^ERH3R zEx^)MK_ACYq=dNqwy;-&frq%6^ck46&a_TGG`Zs~R!^`r1Tkt~vieVtlpHxA5Z zgd&JSu;&NWe(_Dk;qnPX&++tjlgUU09gbpl48tf+P5?z_rz$I`aG_2OG!R51V6_+@ zGZcy@(mAPc6)Fanov9AR6NqBFme?u=chlN_r6E=+y#j8}bcLgyTVd4M0G#c=GL3w% z{o^LJ0JqQk(;L>l9x`9u1h)T9h2_w^ao{4|D$E|yJC;@F0j;h`7jg^lmokW>W(rae zMi4jmqW$5J92|!O+4M5Y4vTmUIc|!aoggSdt8YnYEftXsrHCww!BQ%31(d8@cq_QI zLeZ+=z7-XUV}<8U7Cg2Fdo+jesE;BwYtuA1G~jBf68f(~del8duCyZF$fLsSw%U@1 z*O`ZTUQUTJH#oEq$j%B_v;q*zy5^8B^Ju+u{#ME08+4naB;~UZC;A4i=TUel&vNwV zM%;6n?UQMWXz6BnhO|pD0cj;t?oXyP>HN-+-Nagg(V8Xnlr*uiz!;4Z5N#e1rHc{N z51X!p0{o9D_fha9_c_ukINhJLL#)tx_q|9AB8Hv~>vDiYWv$?x9T`SNSN5(z&%>Ce zc}_tkoxrI`gm?gG#Nju1o!cM-8~0ezf~l-APnKuKCO%(j1)RZ|aw%>Q(Su7TNXgo< z`#+{jnBI&*?L_RYXyz-qdnu7n!Q2>f6}5dDDQPfGUnS%40Ft7|Fe_7zRE_3Q`Td20 zF?n`o;lqy6FWe2%;sBuuws(RQ09p$r!^#Ega29f@;^)|1sb(6@lPR1lY>mP_VDDea zT-rT*7vxMvC-=clV)sBB_rT~jy|2NNl(^L{r@)lJ-BSS9d&G)lU>GflEP|)Y zpqKUV)LG+=BY(j>1^EQ(1R)%oSed%kzvwd+#qL;q&jg0tGZ!wX64J|rSCn<~k=jRW zn4srA1TRwe`*gyja{gQZFWXk4jmhB~7FajHlT(DF3o+Fj^SJm$&UNy>^uK#FwL>8&04jtNSn-T^UGe z0#w?CqMsO(J}-T9GpI#3np}d!f|-BaKq`YGo-PZ7N}j4P#43HWv%5ks4G$;LgKY;cR96B?^>AX4WKYwjWZYgK~q=3DVBVlb5XlU0O!QYd?NYysB}6c zSL^0iS9r(C#E@)Vbbw}^bYe=6*?bpNU7zkiUiA4jPO(FiK)6L39bArRV&Oyc0_yg9 z^(#$zZ3#qj+$@wV{uz=sJ1`NG*iKa?pzT;E*1gFtqT#$N=ts-8f$-r}25L@LZK>2; zoFglt$pb?~=JcG+Z0m-x(+)GG=vI1ujlBVf%^Tv!jAPoAR#!TjAavHH@I=O;zqE{0 zhWJ{X(@GG%=lYcHk>b3mxov%8C?MzhIHJiCpqACe2qKj{W*EudZjKg}Jl!w4*z?R) z(hZULm88@a2cXy|gf$4_kf15VqLKt+DAjH78q zxNwpgro~WR>kF6uENE(=HoH&{pp|klpaWPE8i1vAzj9KXkjIOKMl2NHQ+)ei*+^#Z zqg;Ya@6aZas*6Y4?8m4vovx$tEOZ{-;LKHUYbH}T7R=h8j9q~rRI|NENz*Py3~?!) zfo;lSirx5s+NH1zKV2{PKX$ z&8>)2StcN_X>Z(&QNItr-^v3#_*DI5CcH3&43u^u)_Gbve0);_LVlanEfSPMTA@oQ zPB%v(0u9nr;fp~lo^wLz!l&x>8GgPG)gv>&Rs^@5JaBP7COs_$^P4K;ac>2Y*b*U% zlq8cBBsLr4wd32;Yp0#(_fEt>M~WT5;sJQ;DrdRm!Is^=6qGMgeL5LPmzUi~_DOtp z-cm}51^BjUrNJ$qehV4gpG=fpN~bX&RV=e??h)fnBDJtF>>|}`AA$qISuoA*{>(}3 z01m0k>R&nWd1jkeC4eea!A`P7Y{nQAa>{I;ilz(&$^sBpvMQXidhXU8E zTW?!Ir8gN9*KB#gq|9a%XWuzxiqRO`NoA`9<63C|7{)6$e)8LX6ac7h$u-^qx$j(W zrR?Sr0_-*&jwMir@4s>yJK`#$Fk;Wgivl}i*qOm@Xo?iQ0EV%0{w{l+nJ6U-yER~T zCZK?6r06t*QZ}2yL1}crCsR0JH=c{7A>%9vMGQ`>A3tqZk3m6^CK7v(n7=zuc44~O$M=Rh;bp%atkv|>an-SOgjcB1(u@Bi8`Wt2DcF8e}EUgKw@@XvxT>7Dq zB++1%_0hKYVupSOY~2GZ_Tvn$xaD=@%3xZ$3L|=v$#9ZjlwBIGr;;`1c8Jh^>g1M(P?2T|L_9c3+msP|cT zI?KvT-@B8SljiYG+!1Ey&J6d-PTt;BCX+Y6VO$1eE8<6gcdNc{aW`v){WPP^0ic3( zy+NV@&mXb|&PwNa|6bFDwyJwl{aECG}QV5R>$gG8K zLNid8yHIKM(CSqI(TxQrmhqyb;v62)CeMIgA;wfUWs^~0?-qg0qz#+I%wlSa3jYe@bP-5Kh0Jbh&-NTMqm%ouWcN5Wj{!D!wA6rK{XCe3{Nf&X0-%qjOTijMMbdgZ~j?ik$A2puIqBU{Gi$T;3#%<9D=4PpjTWpj3y>&mE+ zD~uyQhSl3Y$nqL@Xro1|!s4ybwDOK)@&yKJlLJ+|E){@nC;?`B^g!Fr;ToXJ9iYsw zT1@6v09;B9uk<;_zSz_oYPhC;5lc@YE6j!$`jUkyP&@l@}A60hS;p+e#)YsedLVrtv@B9RIjvwL=7y0&*#w7GfIySjJ3t8 z0QhO@B_{pbwcjo9pkINX)9h5_hMH-&Y1r_Ta|MArR3S zgvu(rRXe{d?@)SxkU^(j=aPX-1yt4+KMlfh&G#c0Gi)F=JCLy6`^SeXz!O(oTF7}) z6OFk@5Dg)gz`$%J%+wUU^S9l%<>8~=7$lZ34 z#KX&tgu~52mGev+;pt8Q6s<4Ug3dpkpaLUjkXtb}F=9<(XAj!cY`s|lMIIg~TgjNg z66cKunC}=E(s~rT#a?kd5k?OV7d$#9xiYXJjyqgYCVTX-o=l`YjHmNNPnTOn_u7+| zBEHcPX2ROdxQ%BXLgzL7TlTNNwj%dQV{<$x=GaTz z{8c?EWQ)u%W=B`DqjKpLbYV*FvXms9RLY&!3-8jk;>QCK46qK)u8N9_w??x%lTTuk z9CPYr_@;53tPI0LD_W7oH)>$aii_r>>5;7mepYz})8n8(FK}FZX*U$XmJBbwJ!6&( z=PkD(BUw8wcBz6mv=;$(Gc}?VW-tY+Ah&a;%?7X2HP8Y0p@Zp40L*6 z0EXK5@twn|%8aoE%G@~too$b#07Gu#LsQ644rpdUp3VSXHNnHKyR&FVg4N~Gfd|6z zd?n*6`ZD9p6HuwhSz#OnZEB>n`8tBI57I3&9cf;2 z+9$Xroow!B8C$X02CWnLIk%;l$VsXM!0N`ls9B{H&L!MuSgv^zdF$?^oO{)~uL8FX zV1gx`G#a|3|H#yK=?$M!1)>IlSNp)5Sujtr=YERYVIwwETH2Yeu=d5W*z8`>soz!x zoy7-U?HPEfqpj1D%l+--Inj-NDa4lj$>^17R79hT<`6dkB!f0*?~`OAv}ZCS z$M!0o;>iRk%bnD7;$4($0bG4>5RFwi9>E7!6HdkwdjEESji~J%=ZO1ud6e(c_7AR+ zT}n8g(RU+ZtNp3zAJzS{$8^ZOKZs*J=-wa7QVx0cfAY1RQtuC|!olqR54`51?ft=3 z=*SNqjJ*{l6|-@UMuDbPEMeg`kOmyf4tr;B_9%XGBeGw*SHdHW^bdJB24j0VLT*#= z3THp1hniU;0CIOhb~xMXFf6qH$;NN)!?vBsNcY zPM*i{!sdtS(EIElqJP9&w=9?9#-jz;9Yu@23I8*&l}wMA3gnlJiC8`o#UXf`;7URx 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); From a51124ef970b8571098a65c5a6db157cd6564030 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 13:57:04 +0000 Subject: [PATCH 55/76] New translations ScreenPlay_.ts (French) --- ScreenPlay/translations/ScreenPlay_fr_FR.ts | 450 ++++++++++---------- 1 file changed, 220 insertions(+), 230 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_fr_FR.ts b/ScreenPlay/translations/ScreenPlay_fr_FR.ts index 9a6d527b..72522554 100644 --- a/ScreenPlay/translations/ScreenPlay_fr_FR.ts +++ b/ScreenPlay/translations/ScreenPlay_fr_FR.ts @@ -319,6 +319,24 @@ 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. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + + + + Install Steam Version + Install Steam Version + + + + Open In Browser + Open In Browser + + GifWallpaper @@ -423,14 +441,6 @@ Tags - - Headline - - - Headline - Headline - - HeadlineSection @@ -660,8 +670,8 @@ - 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. + You grant other to remix your work and change the license to their liking. @@ -778,6 +788,31 @@ Upload to the Steam Workshop Upload to the Steam Workshop + + + Create + Create + + + + Workshop + Workshop + + + + Installed + Installed + + + + Community + Community + + + + Settings + Settings + NavigationWallpaperConfiguration @@ -986,197 +1021,152 @@ Set the ScreenPlay UI Language - - English - English - - - - German - German - - - - Chinese - Simplified - Chinese - Simplified - - - - Russian - Russian - - - - French - French - - - - Spanish - Spanish - - - - Korean - Korean - - - - Vietnamese - Vietnamese - - - - Portuguese (Brazil) - Portuguese (Brazil) - - - + Theme Theme - + Switch dark/light theme Switch dark/light theme - + System Default System Default - + Dark Dark - + Light Light - + Performance Performance - + Pause wallpaper video rendering while another app is in the foreground Pause wallpaper video rendering while another app is in the foreground - + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - + Default Fill Mode Default Fill Mode - + Set this property to define how the video is scaled to fit the target area. Set this property to define how the video is scaled to fit the target area. - + Stretch Stretch - + Fill Fill - + Contain Contain - + Cover Cover - + Scale-Down Scale-Down - + About About - + Thank you for using ScreenPlay Thank you for using ScreenPlay - + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + Version Version - + ScreenPlay Build Version ScreenPlay Build Version - + Open Changelog Open Changelog - + Third Party Software Third Party Software - + ScreenPlay would not be possible without the work of others. A big thank you to: ScreenPlay 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 @@ -1361,121 +1351,121 @@ SteamProfile - - + + Back Back - + Forward Forward - SteamWorkshop + SteamWorkshopStartPage - + Loading Loading - + Download now! Download now! - + Downloading... Downloading... - + Details Details - + Open In Steam Open In Steam - + Profile Profile - + Upload Upload - + Search for Wallpaper and Widgets... Search for Wallpaper and Widgets... - + Open Workshop in Steam Open Workshop in 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 @@ -1559,22 +1549,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam Upload Wallpaper/Widgets to Steam - + Abort Abort - + Upload Selected Projects Upload Selected Projects - + Finish Finish @@ -1600,582 +1590,582 @@ 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 Invalid 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 Not Found - + 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 Ticket Invalid - + 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 Query Error - + Expired Login Auth Code Expired Login Auth Code - + IP Login Restriction Failed IP Login Restriction Failed - + 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 Invalid CEG Submission - + 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 Banned - + 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: From e3bda69a578323f3076809ba7646283bee04af0c Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 13:57:05 +0000 Subject: [PATCH 56/76] New translations ScreenPlay_.ts (Spanish) --- ScreenPlay/translations/ScreenPlay_es_ES.ts | 450 ++++++++++---------- 1 file changed, 220 insertions(+), 230 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_es_ES.ts b/ScreenPlay/translations/ScreenPlay_es_ES.ts index da904e3c..49337fbe 100644 --- a/ScreenPlay/translations/ScreenPlay_es_ES.ts +++ b/ScreenPlay/translations/ScreenPlay_es_ES.ts @@ -319,6 +319,24 @@ Please choose a file + + Forum + + + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + + + + Install Steam Version + Install Steam Version + + + + Open In Browser + Open In Browser + + GifWallpaper @@ -423,14 +441,6 @@ Tags - - Headline - - - Headline - Headline - - HeadlineSection @@ -660,8 +670,8 @@ - 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. + You grant other to remix your work and change the license to their liking. @@ -778,6 +788,31 @@ Upload to the Steam Workshop Upload to the Steam Workshop + + + Create + Create + + + + Workshop + Workshop + + + + Installed + Installed + + + + Community + Community + + + + Settings + Settings + NavigationWallpaperConfiguration @@ -986,197 +1021,152 @@ Set the ScreenPlay UI Language - - English - English - - - - German - German - - - - Chinese - Simplified - Chinese - Simplified - - - - Russian - Russian - - - - French - French - - - - Spanish - Spanish - - - - Korean - Korean - - - - Vietnamese - Vietnamese - - - - Portuguese (Brazil) - Portuguese (Brazil) - - - + Theme Theme - + Switch dark/light theme Switch dark/light theme - + System Default System Default - + Dark Dark - + Light Light - + Performance Performance - + Pause wallpaper video rendering while another app is in the foreground Pause wallpaper video rendering while another app is in the foreground - + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - + Default Fill Mode Default Fill Mode - + Set this property to define how the video is scaled to fit the target area. Set this property to define how the video is scaled to fit the target area. - + Stretch Stretch - + Fill Fill - + Contain Contain - + Cover Cover - + Scale-Down Scale-Down - + About About - + Thank you for using ScreenPlay Thank you for using ScreenPlay - + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + Version Version - + ScreenPlay Build Version ScreenPlay Build Version - + Open Changelog Open Changelog - + Third Party Software Third Party Software - + ScreenPlay would not be possible without the work of others. A big thank you to: ScreenPlay 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 @@ -1361,121 +1351,121 @@ SteamProfile - - + + Back Back - + Forward Forward - SteamWorkshop + SteamWorkshopStartPage - + Loading Loading - + Download now! Download now! - + Downloading... Downloading... - + Details Details - + Open In Steam Open In Steam - + Profile Profile - + Upload Upload - + Search for Wallpaper and Widgets... Search for Wallpaper and Widgets... - + Open Workshop in Steam Open Workshop in 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 @@ -1559,22 +1549,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam Upload Wallpaper/Widgets to Steam - + Abort Abort - + Upload Selected Projects Upload Selected Projects - + Finish Finish @@ -1600,582 +1590,582 @@ 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 Invalid 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 Not Found - + 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 Ticket Invalid - + 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 Query Error - + Expired Login Auth Code Expired Login Auth Code - + IP Login Restriction Failed IP Login Restriction Failed - + 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 Invalid CEG Submission - + 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 Banned - + 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: From 2cd7b2690cde7747df3b93b496f1c3ea8ffffc92 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 13:57:07 +0000 Subject: [PATCH 57/76] New translations ScreenPlay_.ts (German) --- ScreenPlay/translations/ScreenPlay_de_DE.ts | 492 ++++++++++---------- 1 file changed, 241 insertions(+), 251 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_de_DE.ts b/ScreenPlay/translations/ScreenPlay_de_DE.ts index 48db9958..612ef972 100644 --- a/ScreenPlay/translations/ScreenPlay_de_DE.ts +++ b/ScreenPlay/translations/ScreenPlay_de_DE.ts @@ -318,6 +318,24 @@ 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. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + + + + Install Steam Version + Install Steam Version + + + + Open In Browser + Open In Browser + + GifWallpaper @@ -422,14 +440,6 @@ Schlagwörter - - Headline - - - Headline - Überschrift - - HeadlineSection @@ -659,8 +669,8 @@ - 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. + You grant other to remix your work and change the license to their liking. @@ -777,6 +787,31 @@ Bitte Konfiguriere deine Wallpaper noch erneut Upload to the Steam Workshop Zum Steam Workshop Hochladen + + + Create + Create + + + + Workshop + Workshop + + + + Installed + Installed + + + + Community + Community + + + + Settings + Settings + NavigationWallpaperConfiguration @@ -985,197 +1020,152 @@ Bitte Konfiguriere deine Wallpaper noch erneut Wähle die Sprache des Programms aus - - English - English - - - - German - Deutsch - - - - Chinese - Simplified - Chinese - Simplified - - - - Russian - Russian - - - - French - French - - - - Spanish - Spanish - - - - Korean - Korean - - - - Vietnamese - Vietnamese - - - - Portuguese (Brazil) - Portuguese (Brazil) - - - + Theme Thema - + Switch dark/light theme Wechsle Dunkles/Helles Design - + System Default System Standard - + Dark Dunkel - + Light Hell - + Performance Leistung - + Pause wallpaper video rendering while another app is in the foreground Pausiere Wallpaper Video Rendering wenn eine andere App im Vordergrund ist - + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! Wir deaktivieren das Video Rendering (Aber nicht die Sounds) für die beste Leistung. Wenn du damit probleme haben solltest kannst dieses Verhalten hier ausschalten. Ein Neustart wird aber von Nöten sein! - + Default Fill Mode Standard-Füllmodus - + Set this property to define how the video is scaled to fit the target area. Lege diese Eigenschaft fest, um zu definieren, wie das Video skaliert wird, damit es in den Zielbereich passt. - + Stretch Strecken - + Fill Ausfüllen - + Contain Enthält - + Cover Cover - + Scale-Down Runter Skallieren - + About Über - + Thank you for using ScreenPlay Danke, dass du ScreenPlay verwendest - + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Moin, ich bin Elias Steurer, auch bekannt als Kelteseth und ich bin der Entwickler von ScreenPlay. Danke, dass du meine Software nutzt. Du kannst mir hier folgen, um Updates über ScreenPlay zu erhalten: - + Version Version - + ScreenPlay Build Version ScreenPlay-Build-Version - + Open Changelog Changelog öffnen - + 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 @@ -1360,123 +1350,123 @@ Bitte Konfiguriere deine Wallpaper noch erneut SteamProfile - - + + Back Zurück - + Forward Vor - SteamWorkshop + SteamWorkshopStartPage - + Loading - laden + Loading - + Download now! - Jetzt Downloaden! + Download now! - + Downloading... - Am Herunterladen... + Downloading... - + Details - Details + Details - + Open In Steam - Öffne in Steam + Open In Steam - + Profile - Profil + Profile - + Upload - Upload + Upload - + Search for Wallpaper and Widgets... - Suche nach Hintergründen und Widgets... + Search for Wallpaper and Widgets... - + Open Workshop in Steam - Öffne Workshop in Steam + Open Workshop in Steam - + Ranked By Vote - Nach Bewertungen sortieren + Ranked By Vote - + Publication Date - Veröffentlichungs Datum + Publication Date - + Ranked By Trend - Nach Trends sortieren + Ranked By Trend - + Favorited By Friends - Von Freunden Favorisiert + Favorited By Friends - + Created By Friends - Von Freunden erstellt + Created By Friends - + Created By Followed Users - Von Gefolgten Benutzern erstellt + Created By Followed Users - + Not Yet Rated - Noch nicht Bewertet + Not Yet Rated - + Total VotesAsc - Abstimmungs Anzahl Absteigend + Total VotesAsc - + Votes Up - Abstimmungs Anzahl Steigend + Votes Up - + Total Unique Subscriptions - Anzahl Einzigartiger Abonnennts + Total Unique Subscriptions - + Back - Zurück + Back - + Forward - Vor + Forward @@ -1558,22 +1548,22 @@ Bitte Konfiguriere deine Wallpaper noch erneut UploadProject - + Upload Wallpaper/Widgets to Steam Lade Wallpaper/Widget auf Steam hoch - + Abort Abbrechen - + Upload Selected Projects Lade ausgewähltes Projekt hoch - + Finish Beenden @@ -1599,582 +1589,582 @@ Bitte Konfiguriere deine Wallpaper noch erneut UploadProjectItem - + Fail Fehler - + No Connection Keine Verbindung - + Invalid Password Falsches Passwort - + Logged In Elsewhere Woanders Eingelogged - + Invalid Protocol Version Falsche Protokoll Version - + Invalid Param Falsche Parameter - + File Not Found Datei nicht gefunden - + Busy Beschäftigt - + Invalid State ungültiger Status - + Invalid Name ungültiger Name - + Invalid Email ungültige Email - + Duplicate Name Doppelter Name - + Access Denied Zugriff verweigert - + Timeout Auszeit - + Banned Gebannt - + Account Not Found Account nicht gefunden - + Invalid SteamID ungültige Steam ID - + Service Unavailable Service nicht Verfügbar - + Not Logged On Nicht angemeldet - + Pending Ausstehend - + Encryption Failure Verschlüsselungsfehler - + Insufficient Privilege Unzureichende Berechtigung - + Limit Exceeded Limit überschritten - + Revoked Wiederrufen - + Expired Abgelaufen - + Already Redeemed Bereits eingelöst - + Duplicate Request Doppelte anfrage - + Already Owned Bereits vergeben - + IP Not Found IP nicht gefunden - + Persist Failed Anhalten fehlgeschlagen - + Locking Failed Sperren fehlgeschlagen - + Logon Session Replaced Anmeldesitzung ersetzt - + Connect Failed Verbindung gescheitert - + Handshake Failed Handshake fehlgeschlagen - + IO Failure IO Fehler - + Remote Disconnect Remote Disconnect - + Shopping Cart Not Found Warenkorb nicht gefunden - + Blocked Blockiert - + Ignored Ignoriert - + No Match Keine Übereinstimmung - + Account Disabled Account deaktiviert - + Service ReadOnly Schreibgeschützter Dienst - + Account Not Featured Account Not Featured - + Administrator OK Administrator OK - + Content Version Inhaltsversion - + Try Another CM Versuch ein anderen CM - + Password Required T oKick Session Passwort benötigt zum beenden der Sitzung - + Already Logged In Elsewhere Bereits woanders eingeloggt - + Suspended Gesperrt - + Cancelled Abgebrochen - + Data Corruption Datenkorruption - + Disk Full Festplatte voll - + Remote Call Failed Remote Call Failed - + Password Unset Passwort aufheben - + External Account Unlinked Externe Accountverknüpfung aufheben - + PSN Ticket Invalid ungültiges PSN Ticket - + External Account Already Linked Externer Account ist bereits verbunden - + Remote File Conflict Entfernter Dateikonflikt - + Illegal Password Nicht unterstütztes Passwort - + Same As Previous Value Gleicher wert wie vorheriger - + Account Logon Denied Anmeldung verweigert - + Cannot Use Old Password Du kannst dein altes Passwort nicht benutzen - + Invalid Login AuthCode Falscher Login AuthCode - + Account Logon Denied No Mail Account anmeldung abgelehnt, keine Mail - + Hardware Not Capable Of IPT Hardware ist nicht IPT fähig - + IPT Init Error IPT Init Fehler - + Parental Control Restricted Kindersicherung eingeschränkt - + Facebook Query Error Facebook-Abfragefehler - + Expired Login Auth Code Abgelaufener Login Auth Code - + IP Login Restriction Failed IP-Anmeldebeschränkung fehlgeschlagen - + Account Locked Down Account gesperrt - + Account Logon Denied Verified Email Required Account anmeldung abgelehnt, Verifizierte E-Mail erforderlich - + No MatchingURL Keine passende URL - + Bad Response Ungültige Antwort - + Require Password ReEntry Passwort erneurt eintragen - + Value Out Of Range Wert außerhalb des Bereichs - + Unexpecte Error Unerwarteter Fehler - + Disabled Deaktiviert - + Invalid CEG Submission Ungültige CEG-Einreichung - + Restricted Device Eingeschränktes Gerät - + Region Locked Region gesperrt - + Rate Limit Exceeded Frequenzgrenze überschritten - + Account Login Denied Need Two Factor Accountanmeldung verweigert zwei Faktor Auth benötigt - + Item Deleted item gelöscht - + Account Login Denied Throttle Account Anmeldung abgelehnt - + Two Factor 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 - + Not Modified Nicht modifiziert - + No Mobile Device Kein Mobilgerät - + Time Not Synced Zeit nicht synchronisiert - + Sms Code Failed SMS-Code fehlgeschlagen - + Account Limit Exceeded Kontolimit überschritten - + Account Activity Limit Exceeded Kontoaktivitätslimit überschritten - + Phone Activity Limit Exceeded Telefonaktivitätslimit überschritten - + Refund To Wallet Rückerstattung an Wallet - + Email Send Failure E-Mail-Sendefehler - + Not Settled Nicht geklärt - + Need Captcha Captcha benötigt - + GSLT Denied GSLT abgelehnt - + GS Owner Denied GS besitzer abgelehnt - + Invalid Item Type Ungültiger Item Typ - + IP Banned IP Gebannt - + GSLT Expired GSLT Abgelaufen - + Insufficient Funds Unzureichende Mittel - + Too Many Pending Zu viele ausstehend - + No Site Licenses Found Keine Site-Lizenzen gefunden - + WG Network Send Exceeded WG-Netzwerk senden überschritten - + Account Not Friends Account nicht befreundet - + Limited User Account Eingeschränktes Benutzerkonto - + Cant Remove Item Item kann nicht Entfernt werden - + Account Deleted Account gelöscht - + Existing User Cancelled License Benutzer hat Lizenz Annulliert - + Community Cooldown Community-Abklingzeit - + Status: Status: - + Upload Progress: Upload-Fortschritt: From 28096a9188ccf3523b0ef01ce1cb09c46b7a418d Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 13:57:09 +0000 Subject: [PATCH 58/76] New translations ScreenPlay_.ts (Korean) --- ScreenPlay/translations/ScreenPlay_ko_KR.ts | 450 ++++++++++---------- 1 file changed, 220 insertions(+), 230 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_ko_KR.ts b/ScreenPlay/translations/ScreenPlay_ko_KR.ts index 90330534..fec1c05b 100644 --- a/ScreenPlay/translations/ScreenPlay_ko_KR.ts +++ b/ScreenPlay/translations/ScreenPlay_ko_KR.ts @@ -319,6 +319,24 @@ Please choose a file + + Forum + + + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + + + + Install Steam Version + Install Steam Version + + + + Open In Browser + Open In Browser + + GifWallpaper @@ -423,14 +441,6 @@ 태그 - - Headline - - - Headline - Headline - - HeadlineSection @@ -660,8 +670,8 @@ - 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. + You grant other to remix your work and change the license to their liking. @@ -778,6 +788,31 @@ Upload to the Steam Workshop Upload to the Steam Workshop + + + Create + Create + + + + Workshop + Workshop + + + + Installed + Installed + + + + Community + Community + + + + Settings + Settings + NavigationWallpaperConfiguration @@ -986,197 +1021,152 @@ Set the ScreenPlay UI Language - - English - English - - - - German - German - - - - Chinese - Simplified - Chinese - Simplified - - - - Russian - Russian - - - - French - French - - - - Spanish - Spanish - - - - Korean - Korean - - - - Vietnamese - Vietnamese - - - - Portuguese (Brazil) - Portuguese (Brazil) - - - + Theme Theme - + Switch dark/light theme Switch dark/light theme - + System Default System Default - + Dark Dark - + Light Light - + Performance Performance - + Pause wallpaper video rendering while another app is in the foreground Pause wallpaper video rendering while another app is in the foreground - + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - + Default Fill Mode Default Fill Mode - + Set this property to define how the video is scaled to fit the target area. Set this property to define how the video is scaled to fit the target area. - + Stretch Stretch - + Fill Fill - + Contain Contain - + Cover Cover - + Scale-Down Scale-Down - + About About - + Thank you for using ScreenPlay Thank you for using ScreenPlay - + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + Version Version - + ScreenPlay Build Version ScreenPlay Build Version - + Open Changelog Open Changelog - + Third Party Software Third Party Software - + ScreenPlay would not be possible without the work of others. A big thank you to: ScreenPlay 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 @@ -1361,121 +1351,121 @@ SteamProfile - - + + Back Back - + Forward Forward - SteamWorkshop + SteamWorkshopStartPage - + Loading Loading - + Download now! Download now! - + Downloading... Downloading... - + Details Details - + Open In Steam Open In Steam - + Profile Profile - + Upload Upload - + Search for Wallpaper and Widgets... Search for Wallpaper and Widgets... - + Open Workshop in Steam Open Workshop in 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 @@ -1559,22 +1549,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam Upload Wallpaper/Widgets to Steam - + Abort Abort - + Upload Selected Projects Upload Selected Projects - + Finish Finish @@ -1600,582 +1590,582 @@ 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 Invalid 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 Not Found - + 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 Ticket Invalid - + 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 Query Error - + Expired Login Auth Code Expired Login Auth Code - + IP Login Restriction Failed IP Login Restriction Failed - + 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 Invalid CEG Submission - + 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 Banned - + 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: From 78b68aa9699d655adfe5f2823c4629bbcfb97bc5 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 13:57:11 +0000 Subject: [PATCH 59/76] New translations ScreenPlay_.ts (Russian) --- ScreenPlay/translations/ScreenPlay_ru_RU.ts | 450 ++++++++++---------- 1 file changed, 220 insertions(+), 230 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_ru_RU.ts b/ScreenPlay/translations/ScreenPlay_ru_RU.ts index 0219579a..9a6b0e2a 100644 --- a/ScreenPlay/translations/ScreenPlay_ru_RU.ts +++ b/ScreenPlay/translations/ScreenPlay_ru_RU.ts @@ -319,6 +319,24 @@ Please choose a file + + Forum + + + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + + + + Install Steam Version + Install Steam Version + + + + Open In Browser + Open In Browser + + GifWallpaper @@ -423,14 +441,6 @@ Tags - - Headline - - - Headline - Headline - - HeadlineSection @@ -660,8 +670,8 @@ - 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. + You grant other to remix your work and change the license to their liking. @@ -778,6 +788,31 @@ Upload to the Steam Workshop Upload to the Steam Workshop + + + Create + Create + + + + Workshop + Workshop + + + + Installed + Installed + + + + Community + Community + + + + Settings + Settings + NavigationWallpaperConfiguration @@ -986,197 +1021,152 @@ Set the ScreenPlay UI Language - - English - English - - - - German - German - - - - Chinese - Simplified - Chinese - Simplified - - - - Russian - Russian - - - - French - French - - - - Spanish - Spanish - - - - Korean - Korean - - - - Vietnamese - Vietnamese - - - - Portuguese (Brazil) - Portuguese (Brazil) - - - + Theme Theme - + Switch dark/light theme Switch dark/light theme - + System Default System Default - + Dark Dark - + Light Light - + Performance Performance - + Pause wallpaper video rendering while another app is in the foreground Pause wallpaper video rendering while another app is in the foreground - + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - + Default Fill Mode Default Fill Mode - + Set this property to define how the video is scaled to fit the target area. Set this property to define how the video is scaled to fit the target area. - + Stretch Stretch - + Fill Fill - + Contain Contain - + Cover Cover - + Scale-Down Scale-Down - + About About - + Thank you for using ScreenPlay Thank you for using ScreenPlay - + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + Version Version - + ScreenPlay Build Version ScreenPlay Build Version - + Open Changelog Open Changelog - + Third Party Software Third Party Software - + ScreenPlay would not be possible without the work of others. A big thank you to: ScreenPlay 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 @@ -1361,121 +1351,121 @@ SteamProfile - - + + Back Back - + Forward Forward - SteamWorkshop + SteamWorkshopStartPage - + Loading Loading - + Download now! Download now! - + Downloading... Downloading... - + Details Details - + Open In Steam Open In Steam - + Profile Profile - + Upload Upload - + Search for Wallpaper and Widgets... Search for Wallpaper and Widgets... - + Open Workshop in Steam Open Workshop in 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 @@ -1559,22 +1549,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam Upload Wallpaper/Widgets to Steam - + Abort Abort - + Upload Selected Projects Upload Selected Projects - + Finish Finish @@ -1600,582 +1590,582 @@ 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 Invalid 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 Not Found - + 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 Ticket Invalid - + 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 Query Error - + Expired Login Auth Code Expired Login Auth Code - + IP Login Restriction Failed IP Login Restriction Failed - + 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 Invalid CEG Submission - + 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 Banned - + 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: From 3bb56aa8982f341a6c4ea6e37301fcd335795e93 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 13:57:14 +0000 Subject: [PATCH 60/76] New translations ScreenPlay_.ts (Chinese Simplified) --- ScreenPlay/translations/ScreenPlay_zh_CN.ts | 490 ++++++++++---------- 1 file changed, 240 insertions(+), 250 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_zh_CN.ts b/ScreenPlay/translations/ScreenPlay_zh_CN.ts index 6af7701a..8f0c228a 100644 --- a/ScreenPlay/translations/ScreenPlay_zh_CN.ts +++ b/ScreenPlay/translations/ScreenPlay_zh_CN.ts @@ -319,6 +319,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. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + + + + Install Steam Version + Install Steam Version + + + + Open In Browser + Open In Browser + + GifWallpaper @@ -423,14 +441,6 @@ 标签 - - Headline - - - Headline - 标题 - - HeadlineSection @@ -660,8 +670,8 @@ - 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. + You grant other to remix your work and change the license to their liking. @@ -778,6 +788,31 @@ Upload to the Steam Workshop 上传到创意工坊 + + + Create + Create + + + + Workshop + Workshop + + + + Installed + Installed + + + + Community + Community + + + + Settings + Settings + NavigationWallpaperConfiguration @@ -986,197 +1021,152 @@ 设置ScreenPlay界面语言 - - 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: 您好,我是Elias Steurer,也叫Kelteseth,我是ScreenPlay的开发者。感谢您使用我的软件。您可以在这里关注我,接收ScreenPlay的更新。 - + Version 版本 - + ScreenPlay Build Version ScreenPlay编译版本 - + Open Changelog 打开更改日志。 - + 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 隐私 @@ -1361,123 +1351,123 @@ SteamProfile - - + + Back 返回 - + Forward 前进 - SteamWorkshop + SteamWorkshopStartPage - + Loading - 加载中 + Loading - + Download now! - 开始下载! + Download now! - + Downloading... - 下载中... + Downloading... - + Details - 查看详情 + Details - + Open In Steam - 在Steam打开 + Open In Steam - + Profile - 配置 + Profile - + Upload Upload - + Search for Wallpaper and Widgets... - 搜索壁纸和物件... + Search for Wallpaper and Widgets... - + Open Workshop in Steam - 在Steam中打开创意工坊 + Open Workshop in 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 @@ -1559,22 +1549,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam 上传 壁纸/物件 到Steam - + Abort 取消 - + Upload Selected Projects 上传所选项目 - + Finish 结束 @@ -1600,582 +1590,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 SteamID无效 - + Service Unavailable 服务不可用 - + Not Logged On 未登录 - + Pending 待处理 - + Encryption Failure 加密失败 - + Insufficient Privilege 权限不足 - + Limit Exceeded 超出限制 - + Revoked 被撤回 - + Expired 已过期 - + Already Redeemed 已兑换 - + Duplicate Request 重复请求 - + Already Owned 已拥有 - + IP Not Found 未找到IP - + 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 PSN令牌无效 - + 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 Facebook查询错误 - + Expired Login Auth Code 过期的登录授权码 - + IP Login Restriction Failed IP登录限制失败 - + 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 无效的CEG提交 - + 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 IP被禁用 - + 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: 上传进度: From 78287c3c7a99a638471146174ff5b73d8d716b1b Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 13:57:16 +0000 Subject: [PATCH 61/76] New translations ScreenPlay_.ts (Vietnamese) --- ScreenPlay/translations/ScreenPlay_vi_VN.ts | 492 ++++++++++---------- 1 file changed, 241 insertions(+), 251 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_vi_VN.ts b/ScreenPlay/translations/ScreenPlay_vi_VN.ts index 742f6950..a22ae338 100644 --- a/ScreenPlay/translations/ScreenPlay_vi_VN.ts +++ b/ScreenPlay/translations/ScreenPlay_vi_VN.ts @@ -319,6 +319,24 @@ Xin hãy chọn một tệp + + Forum + + + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + + + + Install Steam Version + Install Steam Version + + + + Open In Browser + Open In Browser + + GifWallpaper @@ -423,14 +441,6 @@ Thẻ - - Headline - - - Headline - Tiêu đề - - HeadlineSection @@ -660,8 +670,8 @@ - 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. + You grant other to remix your work and change the license to their liking. @@ -778,6 +788,31 @@ Upload to the Steam Workshop Tải lên Steam Workshop + + + Create + Create + + + + Workshop + Workshop + + + + Installed + Installed + + + + Community + Community + + + + Settings + Settings + NavigationWallpaperConfiguration @@ -986,197 +1021,152 @@ Đặt ngôn ngữ của ScreenPlay - - English - Tiếng Anh - - - - German - Tiếng Đức - - - - Chinese - Simplified - Tiếng Trung - Giản thể - - - - Russian - Tiếng Nga - - - - French - Tiếng Pháp - - - - Spanish - Tiếng Tây Ban Nha - - - - Korean - Tiếng Hàn Quốc - - - - Vietnamese - Tiếng Việt - - - - Portuguese (Brazil) - Tiếng Bồ Đào Nha (Brazil) - - - + Theme Chủ đề - + Switch dark/light theme Chuyển chủ để sáng/tôí - + System Default Mặc định theo hệ thống - + Dark Tối - + Light Sáng - + Performance Hiệu suất - + Pause wallpaper video rendering while another app is in the foreground Tạm dừng ảnh nền video khi có một ứng dụng khác đang mở phía trước - + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! Chúng tôi tắt hiển thị video (không phải âm thanh!) Để có hiệu suất tốt nhất. Nếu bạn gặp sự cố, bạn có thể vô hiệu hóa hành vi này tại đây. Yêu cầu khởi động lại hình nền! - + Default Fill Mode Cách lấp đầy mặc định - + Set this property to define how the video is scaled to fit the target area. Đặt thuộc tính này để xác định cách chia tỷ lệ video để phù hợp với khu vực mục tiêu. - + Stretch Kéo dài - + Fill Lấp đầy - + Contain Chứa đựng - + Cover Bao phủ - + Scale-Down Giảm tỉ lệ - + About Về ứng dụng - + Thank you for using ScreenPlay Cảm ơn bạn vì đã sử dụng ScreenPlay - + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Chào, tôi là Elias Steurer hay được biết đến là Kelteseth và tôi là người phát triển của ScreenPlay. Cảm ơn bạn đã sử dụng phần mềm của tôi. Bạn có thể theo dõi tôi để nhận được những cập nhật về ScreenPlay tại: - + Version Phiên bản - + ScreenPlay Build Version Bản dựng của ScreenPlay - + Open Changelog Mở nhật kí thay đổi - + 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ư @@ -1361,123 +1351,123 @@ SteamProfile - - + + Back Quay lại - + Forward Tiếp tục - SteamWorkshop + SteamWorkshopStartPage - + Loading - Đang tải + Loading - + Download now! - Tải về ngay! + Download now! - + Downloading... - Đang tải xuống... + Downloading... - + Details - Chi tiết + Details - + Open In Steam - Mở trong Steam + Open In Steam - + Profile - Hồ sơ + Profile - + Upload - Tải lên + Upload - + Search for Wallpaper and Widgets... - Tìm hình nền & widgets... + Search for Wallpaper and Widgets... - + Open Workshop in Steam - Mở workshop trong Steam + Open Workshop in Steam - + Ranked By Vote - Xếp hạng theo bình chọn + Ranked By Vote - + Publication Date - Ngày xuất bản + Publication Date - + Ranked By Trend - Xếp hạng theo xu hướng + Ranked By Trend - + Favorited By Friends - Được yêu thích bởỉ bạn bè + Favorited By Friends - + Created By Friends - Được tạo bởi bạn bè + Created By Friends - + Created By Followed Users - Được tạo bởi những người đã theo dõi + Created By Followed Users - + Not Yet Rated - Chưa được đánh giá + Not Yet Rated - + Total VotesAsc - Tổng lượt bình chọn + Total VotesAsc - + Votes Up - Bình chọn + Votes Up - + Total Unique Subscriptions - Tổng số đăng ký + Total Unique Subscriptions - + Back - Quay lại + Back - + Forward - Tiếp tục + Forward @@ -1559,22 +1549,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam Tải hình nền/widgets lên Steam - + Abort Hủy bỏ - + Upload Selected Projects Tải lên dự án đã chọn - + Finish Xong @@ -1600,582 +1590,582 @@ UploadProjectItem - + Fail Thất bại - + No Connection Không có kết nối - + Invalid Password Sai mật khẩu - + 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 Param Tham số không hợp lệ - + File Not Found Không tìm thấy tập tin - + Busy Đang bận - + Invalid State Trạng thái không hợp lệ - + Invalid Name Tên không hợp lệ - + Invalid Email Email không hợp lệ - + Duplicate Name Tên bị trùng - + Access Denied Không có quyền truy cập - + Timeout Hết hạn - + Banned Đã bị cấm - + Account Not Found Không tìm thấy tài khoản - + Invalid SteamID ID Steam không hợp lệ - + Service Unavailable Dịch vụ không khả dụng - + Not Logged On Chưa đăng nhập - + Pending Đang chờ xử lý - + Encryption Failure Lỗi mã hóa - + Insufficient Privilege Không đủ quyền truy cập - + Limit Exceeded Quá giới hạn - + Revoked Đã thu hồi - + Expired Đã hết hạn - + Already Redeemed Đã quy đổi rồi - + Duplicate Request Yêu cầu bị trùng - + Already Owned Đã sở hữu - + IP Not Found Không tìm thấy IP - + Persist Failed Chờ đợi thất bại - + Locking Failed Khóa thất bại - + Logon Session Replaced Phiên đăng nhập đã được thay thế - + Connect Failed Kết nối thất bại - + Handshake Failed Handshake thất bại - + IO Failure Lỗi I/O - + Remote Disconnect Ngắt kết nối từ xa - + Shopping Cart Not Found Không tìm thấy giỏ hàng - + Blocked Đã bị chặn - + Ignored Đã bỏ qua - + 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 - + Service ReadOnly Dịch vụ chỉ đọc - + Account Not Featured Tài khoản không nổi bật - + Administrator OK Quyền quản trị viên OK - + Content Version Phiên bản nội dung - + 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 - + Already Logged In Elsewhere Đã được đăng nhập từ nơi khác - + Suspended Đã tạm ngưng - + Cancelled Đã hủy - + Data Corruption Dữ liệu bị hỏng - + Disk Full Ổ đĩa đầy - + Remote Call Failed Gọi từ xa không thành công - + 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 - + 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 - + Remote File Conflict Tệp ở máy chủ bị xung đột - + Illegal Password Mật khẩu không hợp lệ - + Same As Previous Value Đặt giống như giá trị trước - + 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ũ - + 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ư - + Hardware Not Capable Of IPT Phần cứng không hỗ trợ 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ế - + Facebook Query Error Kết nối Facebook lỗi - + 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 - + 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 - + No MatchingURL Không có địa chỉ nào phù hợp - + Bad Response Phản hồi xấ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 - + Unexpecte Error Lỗi Bất Thường - + Disabled Đã vô hiệu - + Invalid CEG Submission Hồ sơ CEG không hợp lệ - + Restricted Device Thiết bị bị giới hạn - + Region Locked Vùng bị khóa - + 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 - + Item Deleted Mặt hàng đã xóa - + Account Login Denied Throttle Đăng nhập thất bại - + Two Factor 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 - + Not Modified Chưa chỉnh sửa - + No Mobile Device Không có điện thoại - + Time Not Synced Chưa đồng bộ thời gian - + 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 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 - + Refund To Wallet Hoàn tiền vào ví - + Email Send Failure Gửi Thư Thất bại - + Not Settled Chưa được giải quyết - + Need Captcha Cần captcha - + GSLT Denied Mã đăng nhập 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ệ - + IP Banned IP đã bị cấm - + GSLT Expired Mã đăng nhập máy chủ đã hết hạn - + Insufficient Funds Không đủ tiền - + 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 - + 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è - + Limited User Account Tài khoản bị giới hạn - + Cant Remove Item Không thể xóa mặt hàng - + 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 - + Community Cooldown Community Cooldown - + Status: Trạng thái: - + Upload Progress: Quá trình tải lên: From 6aa4ca875c78448ede719ca9cf2b073c73d4e014 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 13:57:19 +0000 Subject: [PATCH 62/76] New translations ScreenPlay_.ts (Portuguese, Brazilian) --- ScreenPlay/translations/ScreenPlay_pt_BR.ts | 450 ++++++++++---------- 1 file changed, 220 insertions(+), 230 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_pt_BR.ts b/ScreenPlay/translations/ScreenPlay_pt_BR.ts index d6c1aa2b..b8e83c03 100644 --- a/ScreenPlay/translations/ScreenPlay_pt_BR.ts +++ b/ScreenPlay/translations/ScreenPlay_pt_BR.ts @@ -319,6 +319,24 @@ Please choose a file + + Forum + + + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + + + + Install Steam Version + Install Steam Version + + + + Open In Browser + Open In Browser + + GifWallpaper @@ -423,14 +441,6 @@ Tags - - Headline - - - Headline - Headline - - HeadlineSection @@ -660,8 +670,8 @@ - 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. + You grant other to remix your work and change the license to their liking. @@ -778,6 +788,31 @@ Upload to the Steam Workshop Upload to the Steam Workshop + + + Create + Create + + + + Workshop + Workshop + + + + Installed + Installed + + + + Community + Community + + + + Settings + Settings + NavigationWallpaperConfiguration @@ -986,197 +1021,152 @@ Set the ScreenPlay UI Language - - English - English - - - - German - German - - - - Chinese - Simplified - Chinese - Simplified - - - - Russian - Russian - - - - French - French - - - - Spanish - Spanish - - - - Korean - Korean - - - - Vietnamese - Vietnamese - - - - Portuguese (Brazil) - Portuguese (Brazil) - - - + Theme Theme - + Switch dark/light theme Switch dark/light theme - + System Default System Default - + Dark Dark - + Light Light - + Performance Performance - + Pause wallpaper video rendering while another app is in the foreground Pause wallpaper video rendering while another app is in the foreground - + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - + Default Fill Mode Default Fill Mode - + Set this property to define how the video is scaled to fit the target area. Set this property to define how the video is scaled to fit the target area. - + Stretch Stretch - + Fill Fill - + Contain Contain - + Cover Cover - + Scale-Down Scale-Down - + About About - + Thank you for using ScreenPlay Thank you for using ScreenPlay - + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + Version Version - + ScreenPlay Build Version ScreenPlay Build Version - + Open Changelog Open Changelog - + Third Party Software Third Party Software - + ScreenPlay would not be possible without the work of others. A big thank you to: ScreenPlay 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 @@ -1361,121 +1351,121 @@ SteamProfile - - + + Back Back - + Forward Forward - SteamWorkshop + SteamWorkshopStartPage - + Loading Loading - + Download now! Download now! - + Downloading... Downloading... - + Details Details - + Open In Steam Open In Steam - + Profile Profile - + Upload Upload - + Search for Wallpaper and Widgets... Search for Wallpaper and Widgets... - + Open Workshop in Steam Open Workshop in 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 @@ -1559,22 +1549,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam Upload Wallpaper/Widgets to Steam - + Abort Abort - + Upload Selected Projects Upload Selected Projects - + Finish Finish @@ -1600,582 +1590,582 @@ 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 Invalid 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 Not Found - + 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 Ticket Invalid - + 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 Query Error - + Expired Login Auth Code Expired Login Auth Code - + IP Login Restriction Failed IP Login Restriction Failed - + 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 Invalid CEG Submission - + 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 Banned - + 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: From 985b6469f4e42fdef0c1f2629a17f8bc437054ac Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 13:57:20 +0000 Subject: [PATCH 63/76] New translations ScreenPlay_.ts (Turkish) --- ScreenPlay/translations/ScreenPlay_tr_TR.ts | 450 ++++++++++---------- 1 file changed, 220 insertions(+), 230 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_tr_TR.ts b/ScreenPlay/translations/ScreenPlay_tr_TR.ts index 8c8721fe..ad1e645d 100644 --- a/ScreenPlay/translations/ScreenPlay_tr_TR.ts +++ b/ScreenPlay/translations/ScreenPlay_tr_TR.ts @@ -319,6 +319,24 @@ Lütfen bir dosya seçiniz + + Forum + + + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + + + + Install Steam Version + Install Steam Version + + + + Open In Browser + Open In Browser + + GifWallpaper @@ -423,14 +441,6 @@ Etiketler - - Headline - - - Headline - Başlık - - HeadlineSection @@ -660,8 +670,8 @@ - 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. + You grant other to remix your work and change the license to their liking. @@ -778,6 +788,31 @@ Upload to the Steam Workshop Steam Atölyesine yükleyin + + + Create + Create + + + + Workshop + Workshop + + + + Installed + Installed + + + + Community + Community + + + + Settings + Settings + NavigationWallpaperConfiguration @@ -986,197 +1021,152 @@ ScreenPlay Arayüz Dilini Ayarlayın - - English - İngilizce - - - - German - Almanca - - - - Chinese - Simplified - Basitleştirilmiş Çince - - - - Russian - Rusça - - - - French - Fransızca - - - - Spanish - İspanyolca - - - - Korean - Korece - - - - Vietnamese - Vietnamca - - - - Portuguese (Brazil) - Portekizce (Brezilya) - - - + Theme Tema - + Switch dark/light theme Koyu/Açık temayı değiştir - + System Default Sistem Varsayılanı - + Dark Karanlık - + Light Aydınlık - + Performance Performans - + Pause wallpaper video rendering while another app is in the foreground Başka bir uygulama ön plandayken duvar kağıdı video oluşturmayı duraklatın - + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! En iyi performans için video oluşturmayı (sesi değil!) devre dışı bırakıyoruz. Sorun yaşıyorsanız, bu davranışı buradan devre dışı bırakabilirsiniz. Duvar kağıdının yeniden başlatılması gerekiyor! - + Default Fill Mode Varsayılan Doldurma Modu - + Set this property to define how the video is scaled to fit the target area. Videonun hedef alana sığacak şekilde nasıl ölçeklendirileceğini tanımlamak için bu özelliği ayarlayın. - + Stretch Esnet - + Fill Doldur - + Contain İçeren - + Cover Kapak - + Scale-Down Ölçek-Düşür - + About Hakkında - + Thank you for using ScreenPlay ScreePlay'i kullandığınız için teşekkür ederiz! - + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + Version Version - + ScreenPlay Build Version ScreenPlay Build Version - + Open Changelog Open Changelog - + Third Party Software Third Party Software - + ScreenPlay would not be possible without the work of others. A big thank you to: ScreenPlay 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 @@ -1361,121 +1351,121 @@ SteamProfile - - + + Back Back - + Forward Forward - SteamWorkshop + SteamWorkshopStartPage - + Loading Loading - + Download now! Download now! - + Downloading... Downloading... - + Details Details - + Open In Steam Open In Steam - + Profile Profile - + Upload Upload - + Search for Wallpaper and Widgets... Search for Wallpaper and Widgets... - + Open Workshop in Steam Open Workshop in 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 @@ -1559,22 +1549,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam Upload Wallpaper/Widgets to Steam - + Abort Abort - + Upload Selected Projects Upload Selected Projects - + Finish Finish @@ -1600,582 +1590,582 @@ 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 Invalid 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 Not Found - + 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 Ticket Invalid - + 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 Query Error - + Expired Login Auth Code Expired Login Auth Code - + IP Login Restriction Failed IP Login Restriction Failed - + 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 Invalid CEG Submission - + 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 Banned - + 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: From 052d3a49f263c8d6d8158228ee3c28642e8c5540 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 13:57:22 +0000 Subject: [PATCH 64/76] New translations ScreenPlay_.ts (Dutch) --- ScreenPlay/translations/ScreenPlay_nl_NL.ts | 450 ++++++++++---------- 1 file changed, 220 insertions(+), 230 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_nl_NL.ts b/ScreenPlay/translations/ScreenPlay_nl_NL.ts index ae3f9b9d..35dce73d 100644 --- a/ScreenPlay/translations/ScreenPlay_nl_NL.ts +++ b/ScreenPlay/translations/ScreenPlay_nl_NL.ts @@ -319,6 +319,24 @@ Please choose a file + + Forum + + + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + + + + Install Steam Version + Install Steam Version + + + + Open In Browser + Open In Browser + + GifWallpaper @@ -423,14 +441,6 @@ Tags - - Headline - - - Headline - Headline - - HeadlineSection @@ -660,8 +670,8 @@ - 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. + You grant other to remix your work and change the license to their liking. @@ -778,6 +788,31 @@ Upload to the Steam Workshop Upload to the Steam Workshop + + + Create + Create + + + + Workshop + Workshop + + + + Installed + Installed + + + + Community + Community + + + + Settings + Settings + NavigationWallpaperConfiguration @@ -986,197 +1021,152 @@ Set the ScreenPlay UI Language - - English - English - - - - German - German - - - - Chinese - Simplified - Chinese - Simplified - - - - Russian - Russian - - - - French - French - - - - Spanish - Spanish - - - - Korean - Korean - - - - Vietnamese - Vietnamese - - - - Portuguese (Brazil) - Portuguese (Brazil) - - - + Theme Theme - + Switch dark/light theme Switch dark/light theme - + System Default System Default - + Dark Dark - + Light Light - + Performance Performance - + Pause wallpaper video rendering while another app is in the foreground Pause wallpaper video rendering while another app is in the foreground - + We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required! - + Default Fill Mode Default Fill Mode - + Set this property to define how the video is scaled to fit the target area. Set this property to define how the video is scaled to fit the target area. - + Stretch Stretch - + Fill Fill - + Contain Contain - + Cover Cover - + Scale-Down Scale-Down - + About About - + Thank you for using ScreenPlay Thank you for using ScreenPlay - + Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: Hi, I'm Elias Steurer also known as Kelteseth and I'm the developer of ScreenPlay. Thank you for using my software. You can follow me to receive updates about ScreenPlay here: - + Version Version - + ScreenPlay Build Version ScreenPlay Build Version - + Open Changelog Open Changelog - + Third Party Software Third Party Software - + ScreenPlay would not be possible without the work of others. A big thank you to: ScreenPlay 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 @@ -1361,121 +1351,121 @@ SteamProfile - - + + Back Back - + Forward Forward - SteamWorkshop + SteamWorkshopStartPage - + Loading Loading - + Download now! Download now! - + Downloading... Downloading... - + Details Details - + Open In Steam Open In Steam - + Profile Profile - + Upload Upload - + Search for Wallpaper and Widgets... Search for Wallpaper and Widgets... - + Open Workshop in Steam Open Workshop in 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 @@ -1559,22 +1549,22 @@ UploadProject - + Upload Wallpaper/Widgets to Steam Upload Wallpaper/Widgets to Steam - + Abort Abort - + Upload Selected Projects Upload Selected Projects - + Finish Finish @@ -1600,582 +1590,582 @@ 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 Invalid 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 Not Found - + 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 Ticket Invalid - + 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 Query Error - + Expired Login Auth Code Expired Login Auth Code - + IP Login Restriction Failed IP Login Restriction Failed - + 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 Invalid CEG Submission - + 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 Banned - + 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: From 9f9c3473ef3aeb445d2ccf65495757fe3288576b Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 14:42:06 +0000 Subject: [PATCH 65/76] New translations ScreenPlay_.ts (German) --- ScreenPlay/translations/ScreenPlay_de_DE.ts | 58 ++++++++++----------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_de_DE.ts b/ScreenPlay/translations/ScreenPlay_de_DE.ts index 612ef972..bfa5b76d 100644 --- a/ScreenPlay/translations/ScreenPlay_de_DE.ts +++ b/ScreenPlay/translations/ScreenPlay_de_DE.ts @@ -323,17 +323,17 @@ Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Du kannst Wallpaper und Widgets aus unserem Forum manuell herunterladen. Wenn du den Steam Workshop-Inhalt herunterladen möchtest, musst du ScreenPlay via Steam installieren. Install Steam Version - Install Steam Version + Steam Version installieren Open In Browser - Open In Browser + Im Browser öffnen @@ -670,7 +670,7 @@ You grant other to remix your work and change the license to their liking. - You grant other to remix your work and change the license to their liking. + Sie gestatten anderen, Ihr Werk neu zu mixen und die Lizenz auf deren Ermessen zu ändern. @@ -790,27 +790,27 @@ Bitte Konfiguriere deine Wallpaper noch erneut Create - Create + Erstellen Workshop - Workshop + Workshop Installed - Installed + Installiert Community - Community + Community Settings - Settings + Einstellungen @@ -1371,102 +1371,102 @@ Bitte Konfiguriere deine Wallpaper noch erneut Download now! - Download now! + Jetzt herunterladen! Downloading... - Downloading... + Herunterladen... Details - Details + Details Open In Steam - Open In Steam + In Steam öffnen Profile - Profile + Profil Upload - Upload + Hochladen Search for Wallpaper and Widgets... - Search for Wallpaper and Widgets... + Suche nach Wallpaper & Widgets... Open Workshop in Steam - Open Workshop in Steam + Im Steam Workshop öffnen Ranked By Vote - Ranked By Vote + Nach Bewertungen sortieren Publication Date - Publication Date + Nach Veröffentlichungs Datum sortieren Ranked By Trend - Ranked By Trend + Nach Trends sortieren Favorited By Friends - Favorited By Friends + Von Freunden Favorisiert Created By Friends - Created By Friends + Von Freunden erstellt Created By Followed Users - Created By Followed Users + Von gefolgten Benutzern erstellt Not Yet Rated - Not Yet Rated + Noch nicht Bewertet Total VotesAsc - Total VotesAsc + Abstimmungs Anzahl Absteigend Votes Up - Votes Up + Abstimmungs Anzahl Steigend Total Unique Subscriptions - Total Unique Subscriptions + Anzahl einzigartiger Abonnenten Back - Back + Zurück Forward - Forward + Vor From cb0ee14e4033b049cd1ad1dd475f14f0b9c1caed Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 14:42:10 +0000 Subject: [PATCH 66/76] New translations ScreenPlay_.ts (Portuguese, Brazilian) --- ScreenPlay/translations/ScreenPlay_pt_BR.ts | 134 ++++++++++---------- 1 file changed, 67 insertions(+), 67 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_pt_BR.ts b/ScreenPlay/translations/ScreenPlay_pt_BR.ts index b8e83c03..359884af 100644 --- a/ScreenPlay/translations/ScreenPlay_pt_BR.ts +++ b/ScreenPlay/translations/ScreenPlay_pt_BR.ts @@ -6,42 +6,42 @@ Red - Red + Vermelho Green - Green + Verde Blue - Blue + Azul RGB - RGB + RGB HSV - HSV + HSV R: - R: + R: G: - G: + G: B: - B: + B: @@ -61,12 +61,12 @@ Alpha: - Alpha: + Alpha: # - # + # @@ -74,32 +74,32 @@ News - News + Novidades Wiki - Wiki + Wiki Forum - Forum + Fórum Issue List - Issue List + Lista de Issues Contribute - Contribute + Contribuir Steam Workshop - Steam Workshop + Oficina Steam @@ -107,7 +107,7 @@ Open in browser - Open in browser + Abrir no navegador @@ -115,36 +115,36 @@ Import any video type - Import any video type + Importar qualquer tipo de vídeo Depending on your PC configuration it is better to convert your wallpaper to a specific video codec. If both have bad performance you can also try a QML wallpaper! Supported video formats are: *.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: + Dependendo da configuração do seu PC, é melhor converter seu papel de parede para um codec de vídeo específico. Se ambos tiverem desempenho ruim, você também pode tentar um papel de parede QML! Formatos de vídeo suportados são: -*.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv +*. p4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv Set your preffered video codec: - Set your preffered video codec: + Defina o codec de vídeo de sua escolha: Quality slider. Lower value means better quality. - Quality slider. Lower value means better quality. + Controle de qualidade. Menor valor significa melhor qualidade. Open Documentation - Open Documentation + Abrir documentação Select file - Select file + Selecionar arquivo @@ -152,17 +152,17 @@ An error occurred! - An error occurred! + Um erro ocorreu! Copy text to clipboard - Copy text to clipboard + Copiar texto para a área de transferência Back to create and send an error report! - Back to create and send an error report! + Voltar para criar e enviar um relatório de erros! @@ -175,82 +175,82 @@ Generating preview image... - Generating preview image... + Gerando pré-visualização... Generating preview thumbnail image... - Generating preview thumbnail image... + Gerando pré-visualização de miniaturas... Generating 5 second preview video... - Generating 5 second preview video... + Gerando pré-visualização de vídeo de 5 segundos... Generating preview gif... - Generating preview gif... + Gerando gif de pré-visualização... Converting Audio... - Converting Audio... + Convertendo áudio... Converting Video... This can take some time! - Converting Video... This can take some time! + Convertendo vídeo... Isso pode levar algum tempo! Converting Video ERROR! - Converting Video ERROR! + Erro de conversão de vídeo! Analyse Video ERROR! - Analyse Video ERROR! + Erro de análise de vídeo! Convert a video to a wallpaper - Convert a video to a wallpaper + Converter um vídeo para um plano de fundo Generating preview video... - Generating preview video... + Gerando vídeo de pré-visualização... Name (required!) - Name (required!) + Nome (obrigatório!) Description - Description + Descrição Youtube URL - Youtube URL + URL do Youtube Abort - Abort + Abortar Save - Save + Salvar Save Wallpaper... - Save Wallpaper... + Salvar o papel de parede... @@ -258,47 +258,47 @@ Volume - Volume + Volume Playback rate - Playback rate + Taxa de reprodução Current Video Time - Current Video Time + Tempo atual do vídeo Fill Mode - Fill Mode + Modo de preenchimento Stretch - Stretch + Esticar Fill - Fill + Preencher Contain - Contain + Contém Cover - Cover + Capa Scale_Down - Scale_Down + Escalonar_Abaixo @@ -306,17 +306,17 @@ Clear - Clear + Limpar Select File - Select File + Selecionar arquivo Please choose a file - Please choose a file + Por favor, escolha um arquivo @@ -324,7 +324,7 @@ Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. - Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam. + Baixe papéis de parede e widgets manualmente através de nossos fóruns. Se você quiser baixar conteúdo da Oficina Steam, você precisa instalar ScreenPlay via Steam. @@ -590,7 +590,7 @@ Select file - Select file + Selecionar arquivo @@ -603,7 +603,7 @@ Refreshing! - Refreshing! + Atualizando! @@ -614,32 +614,32 @@ Get more Wallpaper & Widgets via the Steam workshop! - Get more Wallpaper & Widgets via the Steam workshop! + Obtenha mais papéis de parede e Widgets através da Oficina Steam! Open containing folder - Open containing folder + Abrir a pasta Remove Item - Remove Item + Remover Item Remove via Workshop - Remove via Workshop + Remover da Oficina Open Workshop Page - Open Workshop Page + Abrir Página da Oficina Are you sure you want to delete this item? - Are you sure you want to delete this item? + Tem certeza que deseja remover este item? @@ -647,12 +647,12 @@ Get free Widgets and Wallpaper via the Steam Workshop - Get free Widgets and Wallpaper via the Steam Workshop + Obtenha widgets e papéis de parede gratuitos através da Oficina Steam Browse the Steam Workshop - Browse the Steam Workshop + Navegar na Oficina Steam @@ -660,7 +660,7 @@ License - License + Licença From 34ae1c31230545e80a7f95be90bf471a402a80af Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 16:50:57 +0200 Subject: [PATCH 67/76] Formatting --- ScreenPlay/qml/Settings/Settings.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ScreenPlay/qml/Settings/Settings.qml b/ScreenPlay/qml/Settings/Settings.qml index 00c1eac9..8a2379a3 100644 --- a/ScreenPlay/qml/Settings/Settings.qml +++ b/ScreenPlay/qml/Settings/Settings.qml @@ -193,11 +193,11 @@ Item { "value": Settings.Pt_BR, "text": "Portuguese (Brazil)" }, { - "value": Settings.Tr_TR, - "text": "Turkish" + "value": Settings.Tr_TR, + "text": "Turkish" }, { - "value": Settings.Nl_NL, - "text": "Dutch" + "value": Settings.Nl_NL, + "text": "Dutch" }] onActivated: { ScreenPlay.settings.setLanguage(settingsLanguage.comboBox.currentValue); From 1919621ec403325eecccf25416791318383cbb09 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 15:38:40 +0000 Subject: [PATCH 68/76] New translations ScreenPlay_.ts (Portuguese, Brazilian) --- ScreenPlay/translations/ScreenPlay_pt_BR.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_pt_BR.ts b/ScreenPlay/translations/ScreenPlay_pt_BR.ts index 359884af..4d7b7085 100644 --- a/ScreenPlay/translations/ScreenPlay_pt_BR.ts +++ b/ScreenPlay/translations/ScreenPlay_pt_BR.ts @@ -665,23 +665,23 @@ 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 — copie e redistribua o material por qualquer meio ou formato. Adapte — modifique, transforme e desenvolva o material para qualquer propósito, mesmo comercialmente. You grant other to remix your work and change the license to their liking. - You grant other to remix your work and change the license to their liking. + Você permite que outros modifiquem seu trabalho e alterem a licença livremente. Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! - Share — copy and redistribute the material in any medium or format. Adapt — remix, transform, and build upon the material. You are not allowed to use it commercially! + Share — copie e redistribua o material por qualquer meio ou formato. Adapte — modifique, transforme e desenvolva o material. Você não está permitido a usar isso comercialmente! You allow everyone to do anything with your work. - You allow everyone to do anything with your work. + Você permite que todos façam qualquer coisa com seu trabalho. From c9f966404880088fc75aa830c5ee96453391ea4d Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 20:34:12 +0000 Subject: [PATCH 69/76] New translations ScreenPlay_.ts (Dutch) --- ScreenPlay/translations/ScreenPlay_nl_NL.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ScreenPlay/translations/ScreenPlay_nl_NL.ts b/ScreenPlay/translations/ScreenPlay_nl_NL.ts index 35dce73d..ba619cb0 100644 --- a/ScreenPlay/translations/ScreenPlay_nl_NL.ts +++ b/ScreenPlay/translations/ScreenPlay_nl_NL.ts @@ -122,7 +122,7 @@ 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: + Afhankelijk van je PC configuratie is het beter om je achtergrond te converteren naar een specifieke video codec. Als beide slechte prestaties hebben, kunt u ook een QML wallpaper proberen! Ondersteunde videoformaten zijn: *.mp4 *.mpg *.mp2 *.mpeg *.ogv *.avi *.wmv *.m4v *.3gp *.flv @@ -139,7 +139,7 @@ Open Documentation - Open Documentation + Open Documentatie From e6f1d1ca91c5d51b1e0046b9c718f0db7427fa44 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Thu, 23 Sep 2021 21:33:12 +0000 Subject: [PATCH 70/76] New translations ScreenPlay_.ts (Dutch) --- ScreenPlay/translations/ScreenPlay_nl_NL.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScreenPlay/translations/ScreenPlay_nl_NL.ts b/ScreenPlay/translations/ScreenPlay_nl_NL.ts index ba619cb0..814ab612 100644 --- a/ScreenPlay/translations/ScreenPlay_nl_NL.ts +++ b/ScreenPlay/translations/ScreenPlay_nl_NL.ts @@ -129,7 +129,7 @@ Set your preffered video codec: - Set your preffered video codec: + Stel je gewenst videocodec in: From 00e5bb89ddd977a5900185a610ee89b7bbe6eb2a Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 26 Sep 2021 16:50:49 +0200 Subject: [PATCH 71/76] Fix building tests only if enabled --- ScreenPlay/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ScreenPlay/CMakeLists.txt b/ScreenPlay/CMakeLists.txt index 8fd91997..de57b90e 100644 --- a/ScreenPlay/CMakeLists.txt +++ b/ScreenPlay/CMakeLists.txt @@ -114,8 +114,10 @@ target_link_libraries( Qt${QT_VERSION_MAJOR}::Svg Qt5::WebEngine) -add_executable(tst_ScreenPlay tests/tst_main.cpp) +if(${TESTS_ENABLED}) + add_executable(tst_ScreenPlay tests/tst_main.cpp) target_link_libraries(tst_ScreenPlay PRIVATE ScreenPlayLib Qt5::Test) +endif() add_executable(${PROJECT_NAME} main.cpp) target_link_libraries(${PROJECT_NAME} PRIVATE ScreenPlayLib) From 0b9bd9c02c1e4236f13f1e2bff025415240885f7 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 26 Sep 2021 16:52:14 +0200 Subject: [PATCH 72/76] Remove SCREENPLAY_STEAM_DEPLOY in the end it is the same as SCREENPLAY_STEAM --- CMakeLists.txt | 6 ++---- ScreenPlayWorkshop/CMakeLists.txt | 4 ++-- Tools/build.py | 14 ++++++++------ 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index eb81e5af..03b7f5c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,6 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) -option(SCREENPLAY_STEAM_DEPLOY OFF "Steam build settings. Disables steam_app.txt copy step, that is only needed for development.") option(SCREENPLAY_STEAM ON "For FOSS distribution so we do not bundle proprietary code.") option(TESTS_ENABLED OFF) @@ -88,12 +87,11 @@ endif() message(STATUS "[DEFINE] SOURCE_DIR = ${SOURCE_DIR}") message(STATUS "[DEFINE] BUILD_DATE = ${BUILD_DATE}") message(STATUS "[DEFINE] GIT_COMMIT_HASH = ${GIT_COMMIT_HASH}") +message(STATUS "[OPTION] SCREENPLAY_STEAM = ${SCREENPLAY_STEAM}") +message(STATUS "[OPTION] TESTS_ENABLED = ${TESTS_ENABLED}") message(STATUS "[PROJECT] CMAKE_TOOLCHAIN_FILE = ${CMAKE_TOOLCHAIN_FILE}") message(STATUS "[PROJECT] VCPKG_PATH = ${VCPKG_PATH}") message(STATUS "[PROJECT] VCPKG_ARCH = ${VCPKG_ARCH}") message(STATUS "[PROJECT] CMAKE_PREFIX_PATH = ${CMAKE_PREFIX_PATH}") message(STATUS "[PROJECT] VCPKG_TARGET_TRIPLET = ${VCPKG_TARGET_TRIPLET}") -message(STATUS "[OPTION] SCREENPLAY_STEAM_DEPLOY = ${SCREENPLAY_STEAM_DEPLOY}") -message(STATUS "[OPTION] SCREENPLAY_STEAM = ${SCREENPLAY_STEAM}") -message(STATUS "[OPTION] TESTS_ENABLED = ${TESTS_ENABLED}") diff --git a/ScreenPlayWorkshop/CMakeLists.txt b/ScreenPlayWorkshop/CMakeLists.txt index d0a176c8..6dde07f0 100644 --- a/ScreenPlayWorkshop/CMakeLists.txt +++ b/ScreenPlayWorkshop/CMakeLists.txt @@ -91,7 +91,7 @@ if(APPLE) COMMENT "Copying steam library into ScreenPlay.app bundle" COMMAND ${CMAKE_COMMAND} -E copy ${steam_bin} ${workshop_install_dir}) - if(NOT ${SCREENPLAY_STEAM_DEPLOY}) + if(NOT ${SCREENPLAY_STEAM}) add_custom_command( TARGET workshopplugin POST_BUILD @@ -100,7 +100,7 @@ if(APPLE) endif() else() - if(NOT ${SCREENPLAY_STEAM_DEPLOY}) + if(NOT ${SCREENPLAY_STEAM}) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/steam_appid.txt ${CMAKE_BINARY_DIR}/bin/steam_appid.txt COPYONLY) endif() configure_file(${CMAKE_CURRENT_SOURCE_DIR}/qmldir ${WORKSHOP_PLUGIN_DIR}/qmldir COPYONLY) diff --git a/Tools/build.py b/Tools/build.py index f6c6b9e8..c397b585 100644 --- a/Tools/build.py +++ b/Tools/build.py @@ -35,12 +35,14 @@ def run_io_tasks_in_parallel(tasks): parser = argparse.ArgumentParser(description='Build and Package ScreenPlay') parser.add_argument('-t', action="store", dest="build_type", help="Build type. This is either debug or release.") -parser.add_argument('-s', action="store", dest="sign_build", - help="Enable if you want to sign the apps. This is macos only for now.") +parser.add_argument('-sign', action="store", dest="sign_build", + help="Enable if you want to sign the apps. This is macos only for now.") +parser.add_argument('-steam', action="store", dest="steam_build", + help="Enable if you want to build the Steam workshop plugin.") args = parser.parse_args() if not args.build_type: - print("Build type argument is missing (release,debug). Example: python build.py -t release -s=True") + print("Build type argument is missing (release,debug). Example: python build.py -t release -steam=True") sys.exit(1) qt_version = "5.15.2" @@ -100,15 +102,15 @@ cmake_configure_command = """cmake ../ -DCMAKE_TOOLCHAIN_FILE={toolchain} -DVCPKG_TARGET_TRIPLET={triplet} -DTESTS_ENABLED=OFF - -DSCREENPLAY_STEAM_DEPLOY=ON - -DSCREENPLAY_STEAM=ON + -DSCREENPLAY_STEAM={steam} -G "CodeBlocks - Ninja" -B. """.format( type=args.build_type, prefix_path=cmake_prefix_path, triplet=cmake_target_triplet, - toolchain=cmake_toolchain_file).replace("\n", "") + toolchain=cmake_toolchain_file, + steam=args.steam_build).replace("\n", "") execute(cmake_configure_command) execute("cmake --build . --target all") From 49beaf1ad14a5cb060d472f3f25459bd5a9163a5 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 26 Sep 2021 17:01:20 +0200 Subject: [PATCH 73/76] Fix steam check casings --- ScreenPlay/src/settings.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ScreenPlay/src/settings.cpp b/ScreenPlay/src/settings.cpp index 39b56df6..dd66dc7c 100644 --- a/ScreenPlay/src/settings.cpp +++ b/ScreenPlay/src/settings.cpp @@ -51,7 +51,6 @@ Settings::Settings(const std::shared_ptr& globalVariables, setDesktopEnvironment(DesktopEnvironment::KDE); #endif - qRegisterMetaType("Settings::Language"); qRegisterMetaType("Settings::Theme"); qRegisterMetaType("Settings::DesktopEnvironment"); @@ -103,7 +102,7 @@ Settings::Settings(const std::shared_ptr& globalVariables, setupWidgetAndWindowPaths(); setGitBuildHash(COMPILE_INFO); - setSteamVersion((QString(SCREENPLAY_STEAM) == "OFF" ? false : true)); + setSteamVersion((QString(SCREENPLAY_STEAM).compare("OFF", Qt::CaseInsensitive) ? false : true)); } /*! From a2ae2acf7746cafe7094c682eb33f8d784e98e7a Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 26 Sep 2021 17:02:25 +0200 Subject: [PATCH 74/76] Remove debug build step that was not used anyways. Build steam version and no steam version explicitly --- .gitlab-ci.yml | 71 ++++++++++---------------------------------------- 1 file changed, 14 insertions(+), 57 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1eb21511..4cd26a58 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,22 +16,6 @@ check: - python clang_format.py - python cmake_format.py -build:windows_debug: - stage: build - tags: - - vs2019 - - windows10 - needs: - - check - script: - - cd Tools - - python setup.py - - python build.py -t debug - artifacts: - expire_in: "4 weeks" - paths: - - build-x64-windows-debug/bin/ - build:windows_release: stage: build tags: @@ -42,27 +26,28 @@ build:windows_release: script: - cd Tools - python setup.py - - python build.py -t release + - python build.py -t release -steam=False artifacts: expire_in: "4 weeks" paths: - build-x64-windows-release/bin/ -build:osx_debug: +build:windows_release_steam: stage: build - allow_failure: true tags: - - osx + - vs2019 + - windows10 needs: - check script: - cd Tools - - python3 setup.py - - python3 build.py -t debug + - python setup.py + - python build.py -t release -steam=True artifacts: expire_in: "4 weeks" paths: - - build-x64-osx-debug/bin/ + - build-x64-windows-release/bin/ + build:osx_release: stage: build @@ -74,38 +59,27 @@ build:osx_release: script: - cd Tools - python3 setup.py - - python3 build.py -t release + - python3 build.py -t release -steam=False artifacts: expire_in: "4 weeks" paths: - build-x64-osx-release/bin/ -build:linux_debug: +build:osx_release_steam: stage: build allow_failure: true - image: - name: ubuntu:20.04 tags: - - gitlab-org-docker + - osx needs: - check script: - - apt update -y - # Otherwise libglib2 needs interaction - - export DEBIAN_FRONTEND=noninteractive - - apt install mesa-common-dev curl zip unzip tar git pkg-config apt-transport-https ca-certificates gnupg software-properties-common wget software-properties-common wget python3-pip build-essential libgl1-mesa-dev lld ninja-build cmake -y - - pip3 install aqtinstall - - mkdir Qt - - aqt install --outputdir Qt/ 5.15.2 linux desktop - cd Tools - - wget -q https://github.com/QuasarApp/CQtDeployer/releases/download/1.5.2/CQtDeployer_1.5.2_OfflineInstaller_Linux64.run - python3 setup.py - - python3 build.py -t debug - + - python3 build.py -t release -steam=True artifacts: expire_in: "4 weeks" paths: - - build-x64-linux-debug/bin/ + - build-x64-osx-release/bin/ build:linux_release: stage: build @@ -127,29 +101,12 @@ build:linux_release: - cd Tools - wget -q https://github.com/QuasarApp/CQtDeployer/releases/download/1.5.2/CQtDeployer_1.5.2_OfflineInstaller_Linux64.run - python3 setup.py - - python3 build.py -t release + - python3 build.py -t release -steam=False artifacts: expire_in: "4 weeks" paths: - build-x64-linux-release/bin/ -test:windows_debug: - stage: test - tags: - - windows10 - - vs2019 - dependencies: - - build:windows_debug - needs: - - build:windows_debug - script: - - ./build-x64-windows-debug/bin/ScreenPlay.exe --no-run=false --exit=true --reporters=junit --out=test-report-junit.xml - artifacts: - expire_in: "4 weeks" - when: always - reports: - junit: test-report-junit.xml - test:windows_release: stage: test tags: From 17db505f7a75d02f981cba5f397f084ca9385990 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 26 Sep 2021 17:28:53 +0200 Subject: [PATCH 75/76] Add Steamless direct download links --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1153494a..e7a539cd 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ ScreenPlay: [![pipeline status](https://gitlab.com/kelteseth/ScreenPlay/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlay/-/commits/master) Docs: [![pipeline status](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/-/commits/master) [![Crowdin](https://badges.crowdin.net/screenplay/localized.svg)](https://crowdin.com/project/screenplay) ![Twitter Follow](https://img.shields.io/twitter/follow/kelteseth?style=for-the-badge) ![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/screenplayapp?style=for-the-badge) ![Discord](https://img.shields.io/discord/516635043435773970?style=for-the-badge) -

✨Download ScreenPlay✨

+

✨Download ScreenPlay with via Steam with Workshop support✨


+

✨Download ScreenPlay Windows directly✨

+

✨Download ScreenPlay macOS directly✨

![](https://gitlab.com/kelteseth/ScreenPlay/-/raw/master/.gitlab/media/preview.webp) ![](/.gitlab/media/preview.webp) From 0ed4461e3521fcc0e7bdef09366ac65f5abde636 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Sun, 26 Sep 2021 17:33:24 +0200 Subject: [PATCH 76/76] Readme --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e7a539cd..531d9f18 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,9 @@
ScreenPlay: [![pipeline status](https://gitlab.com/kelteseth/ScreenPlay/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlay/-/commits/master) Docs: [![pipeline status](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/badges/master/pipeline.svg)](https://gitlab.com/kelteseth/ScreenPlayDeveloperDocs/-/commits/master) [![Crowdin](https://badges.crowdin.net/screenplay/localized.svg)](https://crowdin.com/project/screenplay) ![Twitter Follow](https://img.shields.io/twitter/follow/kelteseth?style=for-the-badge) ![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/screenplayapp?style=for-the-badge) ![Discord](https://img.shields.io/discord/516635043435773970?style=for-the-badge) - -

✨Download ScreenPlay with via Steam with Workshop support✨


-

✨Download ScreenPlay Windows directly✨

-

✨Download ScreenPlay macOS directly✨

+

✨Download ScreenPlay with via Steam™ with Workshop support✨

+

✨💻 Download ScreenPlay Windows directly✨

+

✨🍏 Download ScreenPlay macOS (unsigned) directly✨

![](https://gitlab.com/kelteseth/ScreenPlay/-/raw/master/.gitlab/media/preview.webp) ![](/.gitlab/media/preview.webp)