mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 19:12:30 +01:00
Merge remote-tracking branch 'origin/qt6-support' into qt6-support
This commit is contained in:
commit
e155879e37
3
.gitignore
vendored
3
.gitignore
vendored
@ -76,6 +76,9 @@ Common/vcpkg/**
|
||||
Common/ffmpeg
|
||||
/Docs/html/screemplay.index
|
||||
|
||||
#Steam
|
||||
!ScreenPlayWorkshop/SteamSDK/redistributable_bin/linux64/libsteam_api.so
|
||||
|
||||
#CMake
|
||||
CMakeLists.txt.user
|
||||
CMakeCache.txt
|
||||
|
@ -1,4 +0,0 @@
|
||||
---
|
||||
BasedOnStyle: WebKit
|
||||
|
||||
...
|
@ -4,16 +4,8 @@ set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
||||
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core)
|
||||
find_package(OpenSSL REQUIRED)
|
||||
find_package(benchmark CONFIG REQUIRED)
|
||||
find_package(doctest CONFIG REQUIRED)
|
||||
|
||||
# CURL must be included before sentry because sentry needs the module and does not include it itself on macos...
|
||||
find_package(CURL CONFIG REQUIRED)
|
||||
find_package(sentry CONFIG REQUIRED)
|
||||
|
||||
set(src
|
||||
set(SOURCES
|
||||
# cmake-format: sortable
|
||||
app.cpp
|
||||
src/globalvariables.cpp
|
||||
src/createimportvideo.cpp
|
||||
@ -31,7 +23,8 @@ set(src
|
||||
src/create.cpp
|
||||
src/wizards.cpp)
|
||||
|
||||
set(headers
|
||||
set(HEADER
|
||||
# cmake-format: sortable
|
||||
app.h
|
||||
src/globalvariables.h
|
||||
src/createimportvideo.h
|
||||
@ -51,6 +44,99 @@ set(headers
|
||||
src/create.h
|
||||
src/wizards.h)
|
||||
|
||||
set(QML
|
||||
# cmake-format: sortable
|
||||
main.qml
|
||||
qml/Create/Create.qml
|
||||
qml/Create/Wizard.qml
|
||||
qml/Create/StartInfo.qml
|
||||
qml/Installed/Installed.qml
|
||||
qml/Installed/ScreenPlayItem.qml
|
||||
qml/Installed/ScreenPlayItemImage.qml
|
||||
qml/Installed/Sidebar.qml
|
||||
qml/Installed/InstalledWelcomeScreen.qml
|
||||
qml/Community/Community.qml
|
||||
qml/Community/XMLNewsfeed.qml
|
||||
qml/Settings/SettingBool.qml
|
||||
qml/Settings/Settings.qml
|
||||
qml/Settings/SettingsButton.qml
|
||||
qml/Settings/SettingsComboBox.qml
|
||||
qml/Settings/SettingsExpander.qml
|
||||
qml/Settings/SettingsHeader.qml
|
||||
qml/Settings/SettingsHorizontalSeperator.qml
|
||||
qml/Workshop/Workshop.qml
|
||||
qml/Monitors/Monitors.qml
|
||||
qml/Monitors/MonitorSelection.qml
|
||||
qml/Monitors/MonitorSelectionItem.qml
|
||||
qml/Monitors/MonitorsProjectSettingItem.qml
|
||||
qml/Navigation/Navigation.qml
|
||||
qml/Navigation/NavigationItem.qml
|
||||
qml/Navigation/NavigationWallpaperConfiguration.qml
|
||||
qml/Monitors/DefaultVideoControls.qml
|
||||
qml/Common/TagSelector.qml
|
||||
qml/Common/Tag.qml
|
||||
qml/Common/ImageSelector.qml
|
||||
qml/Common/Slider.qml
|
||||
qml/Common/RippleEffect.qml
|
||||
qml/Common/Shake.qml
|
||||
qml/Common/Grow.qml
|
||||
qml/Common/GrowIconLink.qml
|
||||
qml/Common/CloseIcon.qml
|
||||
qml/Common/Headline.qml
|
||||
qml/Settings/SettingsPage.qml
|
||||
qml/Community/CommunityNavItem.qml
|
||||
qml/Workshop/ScreenPlayItem.qml
|
||||
qml/Workshop/ScreenPlayItemImage.qml
|
||||
qml/Workshop/Background.qml
|
||||
qml/Workshop/WorkshopInstalled.qml
|
||||
qml/Workshop/WorkshopItem.qml
|
||||
qml/Workshop/Sidebar.qml
|
||||
qml/Workshop/Navigation.qml
|
||||
qml/Workshop/PopupOffline.qml
|
||||
qml/Workshop/upload/PopupSteamWorkshopAgreement.qml
|
||||
qml/Workshop/upload/UploadProject.qml
|
||||
qml/Workshop/upload/UploadProjectBigItem.qml
|
||||
qml/Workshop/upload/UploadProjectItem.qml
|
||||
qml/Monitors/SaveNotification.qml
|
||||
qml/Common/TrayIcon.qml
|
||||
qml/Installed/Navigation.qml
|
||||
qml/Common/Search.qml
|
||||
qml/Common/MouseHoverBlocker.qml
|
||||
qml/Create/Wizards/HTMLWallpaper.qml
|
||||
qml/Create/Wizards/HTMLWidget.qml
|
||||
qml/Create/Wizards/QMLWidget.qml
|
||||
qml/Create/Wizards/QMLWallpaper.qml
|
||||
qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaper.qml
|
||||
qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperInit.qml
|
||||
qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperResult.qml
|
||||
qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml
|
||||
qml/Create/Sidebar.qml
|
||||
qml/Create/Wizards/ImportWebm/ImportWebm.qml
|
||||
qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml
|
||||
qml/Create/Wizards/ImportWebm/ImportWebmInit.qml
|
||||
qml/Common/Dialogs/MonitorConfiguration.qml
|
||||
qml/Common/Dialogs/SteamNotAvailable.qml
|
||||
qml/Create/Wizards/WizardPage.qml
|
||||
qml/Create/Wizards/GifWallpaper.qml
|
||||
qml/Common/TextField.qml
|
||||
qml/Common/HeadlineSection.qml
|
||||
qml/Create/Wizards/WebsiteWallpaper.qml
|
||||
qml/Common/FileSelector.qml
|
||||
qml/Create/WizardsFiles/QMLWidgetMain.qml
|
||||
qml/Create/WizardsFiles/QMLWallpaperMain.qml
|
||||
qml/Common/LicenseSelector.qml
|
||||
qml/Common/Util.js
|
||||
qml/Common/Dialogs/CriticalError.qml
|
||||
qml/Common/ColorPicker.qml
|
||||
qml/Create/StartInfoLinkImage.qml
|
||||
qml/Workshop/SteamProfile.qml
|
||||
qml/Workshop/SteamWorkshop.qml
|
||||
qml/Workshop/Forum.qml
|
||||
qml/Workshop/SteamWorkshopStartPage.qml
|
||||
qml/Create/Wizards/Importh264/Importh264.qml
|
||||
qml/Create/Wizards/Importh264/Importh264Convert.qml
|
||||
qml/Create/Wizards/Importh264/Importh264Init.qml)
|
||||
|
||||
list(
|
||||
APPEND
|
||||
L10N_LIST
|
||||
@ -73,6 +159,13 @@ qt_update_translations("${CMAKE_CURRENT_SOURCE_DIR}/qml" "${L10N_LIST}")
|
||||
|
||||
# Needed on macos
|
||||
find_package(Threads REQUIRED)
|
||||
find_package(OpenSSL REQUIRED)
|
||||
find_package(benchmark CONFIG REQUIRED)
|
||||
find_package(doctest CONFIG REQUIRED)
|
||||
|
||||
# CURL must be included before sentry because sentry needs the module and does not include it itself on macos...
|
||||
find_package(CURL CONFIG REQUIRED)
|
||||
find_package(sentry CONFIG REQUIRED)
|
||||
|
||||
find_package(
|
||||
Qt6
|
||||
@ -87,10 +180,10 @@ find_package(
|
||||
WebEngineCore
|
||||
Test)
|
||||
|
||||
qt_add_resources(RESOURCES Resources.qrc)
|
||||
qt_add_big_resources(FONTS fonts.qrc)
|
||||
|
||||
qt_add_resources(resources ScreenPlayAssets.qrc ScreenPlayQML.qrc)
|
||||
|
||||
add_library(ScreenPlayLib ${src} ${headers} ${resources} ${resources} ${fonts})
|
||||
add_library(ScreenPlayLib ${SOURCES} ${HEADER} ${RESOURCES} ${FONTS})
|
||||
|
||||
target_include_directories(ScreenPlayLib PUBLIC ./ src/)
|
||||
|
||||
@ -117,12 +210,20 @@ if(${TESTS_ENABLED})
|
||||
target_link_libraries(tst_ScreenPlay PRIVATE ScreenPlayLib Qt6::Test)
|
||||
endif()
|
||||
|
||||
add_executable(${PROJECT_NAME} main.cpp)
|
||||
qt_add_executable(${PROJECT_NAME} main.cpp)
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE ScreenPlayLib)
|
||||
|
||||
qt_add_translation(qmFiles ${l10n})
|
||||
target_compile_definitions(${PROJECT_NAME} PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG>)
|
||||
|
||||
qt_add_big_resources(fonts fonts.qrc)
|
||||
qt_add_translation(qmFiles ${l10n})
|
||||
qt_add_qml_module(
|
||||
${PROJECT_NAME}
|
||||
URI
|
||||
${PROJECT_NAME}
|
||||
VERSION
|
||||
1.0
|
||||
QML_FILES
|
||||
${QML})
|
||||
|
||||
if(WIN32)
|
||||
# Icon
|
||||
|
@ -115,9 +115,7 @@
|
||||
<file>legal/lgpl-2.1.txt</file>
|
||||
<file>profiles.json</file>
|
||||
<file>qtquickcontrols2.conf</file>
|
||||
<file>translations/ScreenPlay_zh_cn.qm</file>
|
||||
<file>assets/images/Early_Access.png</file>
|
||||
<file>translations/ScreenPlay_pt_br.qm</file>
|
||||
<file>assets/icons/icon_sort-up-solid.svg</file>
|
||||
<file>assets/icons/icon_sort-down-solid.svg</file>
|
||||
<file>assets/icons/brand_reddit.svg</file>
|
||||
@ -148,5 +146,7 @@
|
||||
<file>translations/ScreenPlay_nl_NL.ts</file>
|
||||
<file>translations/ScreenPlay_it_IT.qm</file>
|
||||
<file>translations/ScreenPlay_it_IT.ts</file>
|
||||
<file>qml/Create/WizardsFiles/HTMLWallpaperMain.html</file>
|
||||
<file>qml/Create/WizardsFiles/HTMLWidgetMain.html</file>
|
||||
</qresource>
|
||||
</RCC>
|
@ -1,101 +0,0 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>main.qml</file>
|
||||
<file>qml/Create/Create.qml</file>
|
||||
<file>qml/Create/Wizard.qml</file>
|
||||
<file>qml/Create/StartInfo.qml</file>
|
||||
<file>qml/Installed/Installed.qml</file>
|
||||
<file>qml/Installed/ScreenPlayItem.qml</file>
|
||||
<file>qml/Installed/ScreenPlayItemImage.qml</file>
|
||||
<file>qml/Installed/Sidebar.qml</file>
|
||||
<file>qml/Installed/InstalledWelcomeScreen.qml</file>
|
||||
<file>qml/Community/Community.qml</file>
|
||||
<file>qml/Community/XMLNewsfeed.qml</file>
|
||||
<file>qml/Settings/SettingBool.qml</file>
|
||||
<file>qml/Settings/Settings.qml</file>
|
||||
<file>qml/Settings/SettingsButton.qml</file>
|
||||
<file>qml/Settings/SettingsComboBox.qml</file>
|
||||
<file>qml/Settings/SettingsExpander.qml</file>
|
||||
<file>qml/Settings/SettingsHeader.qml</file>
|
||||
<file>qml/Settings/SettingsHorizontalSeperator.qml</file>
|
||||
<file>qml/Workshop/Workshop.qml</file>
|
||||
<file>qml/Monitors/Monitors.qml</file>
|
||||
<file>qml/Monitors/MonitorSelection.qml</file>
|
||||
<file>qml/Monitors/MonitorSelectionItem.qml</file>
|
||||
<file>qml/Monitors/MonitorsProjectSettingItem.qml</file>
|
||||
<file>qml/Navigation/Navigation.qml</file>
|
||||
<file>qml/Navigation/NavigationItem.qml</file>
|
||||
<file>qml/Navigation/NavigationWallpaperConfiguration.qml</file>
|
||||
<file>qml/Monitors/DefaultVideoControls.qml</file>
|
||||
<file>qml/Common/TagSelector.qml</file>
|
||||
<file>qml/Common/Tag.qml</file>
|
||||
<file>qml/Common/ImageSelector.qml</file>
|
||||
<file>qml/Common/Slider.qml</file>
|
||||
<file>qml/Common/RippleEffect.qml</file>
|
||||
<file>qml/Common/Shake.qml</file>
|
||||
<file>qml/Common/Grow.qml</file>
|
||||
<file>qml/Common/GrowIconLink.qml</file>
|
||||
<file>qml/Common/CloseIcon.qml</file>
|
||||
<file>qml/Common/Headline.qml</file>
|
||||
<file>qml/Settings/SettingsPage.qml</file>
|
||||
<file>qml/Community/CommunityNavItem.qml</file>
|
||||
<file>assets/icons/icon_supervisor_account.svg</file>
|
||||
<file>assets/icons/icon_new_releases.svg</file>
|
||||
<file>assets/icons/icon_report_problem.svg</file>
|
||||
<file>assets/icons/icon_help_center.svg</file>
|
||||
<file>assets/icons/icon_forum.svg</file>
|
||||
<file>qml/Workshop/ScreenPlayItem.qml</file>
|
||||
<file>qml/Workshop/ScreenPlayItemImage.qml</file>
|
||||
<file>qml/Workshop/Background.qml</file>
|
||||
<file>qml/Workshop/WorkshopInstalled.qml</file>
|
||||
<file>qml/Workshop/WorkshopItem.qml</file>
|
||||
<file>qml/Workshop/Sidebar.qml</file>
|
||||
<file>qml/Workshop/Navigation.qml</file>
|
||||
<file>qml/Workshop/PopupOffline.qml</file>
|
||||
<file>qml/Workshop/upload/PopupSteamWorkshopAgreement.qml</file>
|
||||
<file>qml/Workshop/upload/UploadProject.qml</file>
|
||||
<file>qml/Workshop/upload/UploadProjectBigItem.qml</file>
|
||||
<file>qml/Workshop/upload/UploadProjectItem.qml</file>
|
||||
<file>qml/Monitors/SaveNotification.qml</file>
|
||||
<file>qml/Common/TrayIcon.qml</file>
|
||||
<file>qml/Installed/Navigation.qml</file>
|
||||
<file>qml/Common/Search.qml</file>
|
||||
<file>qml/Common/MouseHoverBlocker.qml</file>
|
||||
<file>qml/Create/Wizards/HTMLWallpaper.qml</file>
|
||||
<file>qml/Create/Wizards/HTMLWidget.qml</file>
|
||||
<file>qml/Create/Wizards/QMLWidget.qml</file>
|
||||
<file>qml/Create/Wizards/QMLWallpaper.qml</file>
|
||||
<file>qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaper.qml</file>
|
||||
<file>qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperInit.qml</file>
|
||||
<file>qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperResult.qml</file>
|
||||
<file>qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml</file>
|
||||
<file>qml/Create/Sidebar.qml</file>
|
||||
<file>qml/Create/Wizards/ImportWebm/ImportWebm.qml</file>
|
||||
<file>qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml</file>
|
||||
<file>qml/Create/Wizards/ImportWebm/ImportWebmInit.qml</file>
|
||||
<file>qml/Common/Dialogs/MonitorConfiguration.qml</file>
|
||||
<file>qml/Common/Dialogs/SteamNotAvailable.qml</file>
|
||||
<file>qml/Create/Wizards/WizardPage.qml</file>
|
||||
<file>qml/Create/Wizards/GifWallpaper.qml</file>
|
||||
<file>qml/Common/TextField.qml</file>
|
||||
<file>qml/Common/HeadlineSection.qml</file>
|
||||
<file>qml/Create/Wizards/WebsiteWallpaper.qml</file>
|
||||
<file>qml/Common/FileSelector.qml</file>
|
||||
<file>qml/Create/WizardsFiles/QMLWidgetMain.qml</file>
|
||||
<file>qml/Create/WizardsFiles/QMLWallpaperMain.qml</file>
|
||||
<file>qml/Create/WizardsFiles/HTMLWallpaperMain.html</file>
|
||||
<file>qml/Create/WizardsFiles/HTMLWidgetMain.html</file>
|
||||
<file>qml/Common/LicenseSelector.qml</file>
|
||||
<file>qml/Common/Util.js</file>
|
||||
<file>qml/Common/Dialogs/CriticalError.qml</file>
|
||||
<file>qml/Common/ColorPicker.qml</file>
|
||||
<file>qml/Create/StartInfoLinkImage.qml</file>
|
||||
<file>qml/Workshop/SteamProfile.qml</file>
|
||||
<file>qml/Workshop/SteamWorkshop.qml</file>
|
||||
<file>qml/Workshop/Forum.qml</file>
|
||||
<file>qml/Workshop/SteamWorkshopStartPage.qml</file>
|
||||
<file>qml/Create/Wizards/Importh264/Importh264.qml</file>
|
||||
<file>qml/Create/Wizards/Importh264/Importh264Convert.qml</file>
|
||||
<file>qml/Create/Wizards/Importh264/Importh264Init.qml</file>
|
||||
</qresource>
|
||||
</RCC>
|
@ -58,7 +58,7 @@ App::App()
|
||||
QGuiApplication::setOrganizationName("ScreenPlay");
|
||||
QGuiApplication::setOrganizationDomain("screen-play.app");
|
||||
QGuiApplication::setApplicationName("ScreenPlay");
|
||||
QGuiApplication::setApplicationVersion("0.14.0");
|
||||
QGuiApplication::setApplicationVersion("0.15.0");
|
||||
QGuiApplication::setQuitOnLastWindowClosed(false);
|
||||
|
||||
QFontDatabase::addApplicationFont(":/assets/fonts/LibreBaskerville-Italic.ttf");
|
||||
@ -202,7 +202,7 @@ void App::init()
|
||||
// Needed for macos .app files
|
||||
m_mainWindowEngine->addPluginPath(QGuiApplication::instance()->applicationDirPath());
|
||||
#endif
|
||||
m_mainWindowEngine->load(QUrl(QStringLiteral("qrc:/main.qml")));
|
||||
m_mainWindowEngine->load(QUrl(QStringLiteral("qrc:/ScreenPlay/main.qml")));
|
||||
|
||||
// Must be called last to display a error message on startup by the qml engine
|
||||
m_screenPlayManager->init(m_globalVariables, m_monitorListModel, m_settings);
|
||||
|
@ -45,8 +45,7 @@
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
Q_INIT_RESOURCE(ScreenPlayQML);
|
||||
Q_INIT_RESOURCE(ScreenPlayAssets);
|
||||
Q_INIT_RESOURCE(Resources);
|
||||
|
||||
QtWebEngineQuick::initialize();
|
||||
QApplication::setAttribute(Qt::AA_ShareOpenGLContexts);
|
||||
|
@ -38,12 +38,12 @@ ApplicationWindow {
|
||||
}
|
||||
|
||||
if (name === "Installed") {
|
||||
stackView.replace("qrc:/qml/" + name + "/" + name + ".qml", {
|
||||
stackView.replace("qrc:/ScreenPlay/qml/" + name + "/" + name + ".qml", {
|
||||
"sidebar": sidebar
|
||||
})
|
||||
return
|
||||
}
|
||||
stackView.replace("qrc:/qml/" + name + "/" + name + ".qml")
|
||||
stackView.replace("qrc:/ScreenPlay/qml/" + name + "/" + name + ".qml")
|
||||
sidebar.state = "inactive"
|
||||
}
|
||||
|
||||
|
@ -14,7 +14,7 @@ Item {
|
||||
|
||||
Component.onCompleted: {
|
||||
wizardContentWrapper.state = "in";
|
||||
stackView.push("qrc:/qml/Create/StartInfo.qml");
|
||||
stackView.push("qrc:/ScreenPlay/qml/Create/StartInfo.qml");
|
||||
}
|
||||
|
||||
Sidebar {
|
||||
|
@ -43,7 +43,7 @@ Rectangle {
|
||||
function onWizardExited() {
|
||||
root.expanded = true
|
||||
stackView.clear(StackView.PushTransition)
|
||||
stackView.push("qrc:/qml/Create/StartInfo.qml")
|
||||
stackView.push("qrc:/ScreenPlay/qml/Create/StartInfo.qml")
|
||||
listView.currentIndex = 0
|
||||
ScreenPlay.util.setNavigationActive(true)
|
||||
}
|
||||
@ -54,70 +54,70 @@ Rectangle {
|
||||
model: ListModel {
|
||||
ListElement {
|
||||
headline: qsTr("Tools Overview")
|
||||
source: "qrc:/qml/Create/StartInfo.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Create/StartInfo.qml"
|
||||
category: "Home"
|
||||
objectName: ""
|
||||
}
|
||||
|
||||
ListElement {
|
||||
headline: qsTr("Video Import h264 (.mp4)")
|
||||
source: "qrc:/qml/Create/Wizards/Importh264/Importh264.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Create/Wizards/Importh264/Importh264.qml"
|
||||
category: "Video Wallpaper"
|
||||
objectName: ""
|
||||
}
|
||||
|
||||
ListElement {
|
||||
headline: qsTr("Video Import VP8 & VP9 (.webm)")
|
||||
source: "qrc:/qml/Create/Wizards/ImportWebm/ImportWebm.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Create/Wizards/ImportWebm/ImportWebm.qml"
|
||||
category: "Video Wallpaper"
|
||||
objectName: ""
|
||||
}
|
||||
|
||||
ListElement {
|
||||
headline: qsTr("Video import (all types)")
|
||||
source: "qrc:/qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaper.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaper.qml"
|
||||
category: "Video Wallpaper"
|
||||
objectName: "videoImportConvert"
|
||||
}
|
||||
|
||||
ListElement {
|
||||
headline: qsTr("GIF Wallpaper")
|
||||
source: "qrc:/qml/Create/Wizards/GifWallpaper.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Create/Wizards/GifWallpaper.qml"
|
||||
category: "Video Wallpaper"
|
||||
objectName: ""
|
||||
}
|
||||
|
||||
ListElement {
|
||||
headline: qsTr("QML Wallpaper")
|
||||
source: "qrc:/qml/Create/Wizards/QMLWallpaper.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Create/Wizards/QMLWallpaper.qml"
|
||||
category: "Code Wallpaper"
|
||||
objectName: ""
|
||||
}
|
||||
|
||||
ListElement {
|
||||
headline: qsTr("HTML5 Wallpaper")
|
||||
source: "qrc:/qml/Create/Wizards/HTMLWallpaper.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Create/Wizards/HTMLWallpaper.qml"
|
||||
category: "Code Wallpaper"
|
||||
objectName: ""
|
||||
}
|
||||
|
||||
ListElement {
|
||||
headline: qsTr("Website Wallpaper")
|
||||
source: "qrc:/qml/Create/Wizards/WebsiteWallpaper.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Create/Wizards/WebsiteWallpaper.qml"
|
||||
category: "Code Wallpaper"
|
||||
objectName: ""
|
||||
}
|
||||
|
||||
ListElement {
|
||||
headline: qsTr("QML Widget")
|
||||
source: "qrc:/qml/Create/Wizards/QMLWidget.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Create/Wizards/QMLWidget.qml"
|
||||
category: "Code Widgets"
|
||||
objectName: ""
|
||||
}
|
||||
|
||||
ListElement {
|
||||
headline: qsTr("HTML Widget")
|
||||
source: "qrc:/qml/Create/Wizards/HTMLWidget.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Create/Wizards/HTMLWidget.qml"
|
||||
category: "Code Widgets"
|
||||
objectName: ""
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ Item {
|
||||
active: false
|
||||
z: 99
|
||||
anchors.fill: parent
|
||||
source: "qrc:/qml/Installed/InstalledWelcomeScreen.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Installed/InstalledWelcomeScreen.qml"
|
||||
}
|
||||
|
||||
Connections {
|
||||
|
@ -54,7 +54,7 @@ Item {
|
||||
text: settingsBool.description
|
||||
wrapMode: Text.WordWrap
|
||||
linkColor: Material.color(Material.Orange)
|
||||
onLinkActivated: Qt.openUrlExternally(link)
|
||||
onLinkActivated: (link) => Qt.openUrlExternally(link)
|
||||
color: Material.theme === Material.Light ? Qt.lighter(Material.foreground) : Qt.darker(Material.foreground)
|
||||
font.family: ScreenPlay.settings.font
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
|
@ -14,7 +14,7 @@ Item {
|
||||
id: screenPlayWorkshop
|
||||
Component.onCompleted: {
|
||||
if (screenPlayWorkshop.init()) {
|
||||
stackView.push("qrc:/qml/Workshop/SteamWorkshopStartPage.qml", {
|
||||
stackView.push("qrc:/ScreenPlay/qml/Workshop/SteamWorkshopStartPage.qml", {
|
||||
"stackView": stackView,
|
||||
"screenPlayWorkshop": screenPlayWorkshop,
|
||||
"steamWorkshop": screenPlayWorkshop.steamWorkshop,
|
||||
|
@ -273,7 +273,7 @@ Item {
|
||||
text: qsTr("Profile")
|
||||
onClicked: {
|
||||
stackView.push(
|
||||
"qrc:/qml/Workshop/SteamProfile.qml", {
|
||||
"qrc:/ScreenPlay/qml/Workshop/SteamProfile.qml", {
|
||||
"screenPlayWorkshop": root.screenPlayWorkshop,
|
||||
"steamWorkshop": root.steamWorkshop
|
||||
})
|
||||
@ -292,7 +292,7 @@ Item {
|
||||
text: qsTr("Upload")
|
||||
onClicked: {
|
||||
stackView.push(
|
||||
"qrc:/qml/Workshop/upload/UploadProject.qml", {
|
||||
"qrc:/ScreenPlay/qml/Workshop/upload/UploadProject.qml", {
|
||||
"screenPlayWorkshop": root.screenPlayWorkshop,
|
||||
"steamWorkshop": root.steamWorkshop
|
||||
})
|
||||
|
@ -11,9 +11,9 @@ Item {
|
||||
|
||||
Component.onCompleted: {
|
||||
if (ScreenPlay.settings.steamVersion) {
|
||||
workshopLoader.setSource("qrc:/qml/Workshop/SteamWorkshop.qml")
|
||||
workshopLoader.setSource("qrc:/ScreenPlay/qml/Workshop/SteamWorkshop.qml")
|
||||
} else {
|
||||
workshopLoader.setSource("qrc:/qml/Workshop/Forum.qml")
|
||||
workshopLoader.setSource("qrc:/ScreenPlay/qml/Workshop/Forum.qml")
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -35,7 +35,7 @@ Item {
|
||||
active: false
|
||||
z: 99
|
||||
anchors.fill: parent
|
||||
source: "qrc:/qml/Installed/InstalledUserHelper.qml"
|
||||
source: "qrc:/ScreenPlay/qml/Installed/InstalledUserHelper.qml"
|
||||
}
|
||||
|
||||
transitions: [
|
||||
|
@ -208,12 +208,4 @@ Item {
|
||||
}
|
||||
}
|
||||
|
||||
PageIndicator {
|
||||
id: indicator
|
||||
|
||||
count: view.count
|
||||
currentIndex: view.currentIndex
|
||||
anchors.bottom: view.bottom
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
}
|
||||
}
|
||||
|
@ -216,37 +216,37 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -302,17 +302,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -338,37 +338,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -523,37 +523,37 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -591,6 +591,127 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -599,43 +720,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -643,12 +764,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -746,32 +867,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -937,7 +1058,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1003,167 +1124,167 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1171,7 +1292,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1179,102 +1300,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1283,43 +1409,38 @@
|
||||
<source>Size: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1328,12 +1449,12 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1480,12 +1601,12 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="de" sourcelanguage="en">
|
||||
<TS version="2.1" language="de_DE" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -217,37 +217,37 @@
|
||||
<translation>Konvertiere ein Video in ein Hintergrund Live Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Generiere Vorschau-Video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Name (erforderlich!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Beschreibung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>YouTube-URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation>Abbrechen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation>Speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Speicher Wallpaper...</translation>
|
||||
</message>
|
||||
@ -303,17 +303,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation>Leeren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation>Datei auswählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation>Bitte Wählen Sie eine Datei aus</translation>
|
||||
</message>
|
||||
@ -339,37 +339,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation>Importiere ein GIF Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation>Ziehe eine .gif Datei hierher und benutze 'Datei auswählen' darunter.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation>Wähle dein GIF aus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation>Allgemein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation>Wallpaper Name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation>Erstellt von</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation>Schlagwörter</translation>
|
||||
</message>
|
||||
@ -524,37 +524,37 @@
|
||||
<translation>Importiere ein Video zu ein Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Generiere Vorschau-Video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Name (erforderlich!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Beschreibung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>YouTube-URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation>Abbrechen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation>Speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Speicher Wallpaper...</translation>
|
||||
</message>
|
||||
@ -592,6 +592,127 @@
|
||||
<translation>Datei auswählen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">Analysiere Video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished">Erzeuge Vorschaubild...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished">Erzeuge Vorschau-Miniaturbild...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished">Generiere ein 5-Sekunden-Vorschau-Video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished">Generiere Vorschau-Gif...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished">Konvertiere Audio...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished">Video wird umgewandelt... Das kann etwas dauern!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished">Konvertieren nicht erfolgreich!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished">Analyse des Videos schlug Fehl!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">Importiere ein Video zu ein Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generiere Vorschau-Video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Name (erforderlich!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Beschreibung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">YouTube-URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished">Abbrechen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Speicher Wallpaper...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished">Datei auswählen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -600,43 +721,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation>Aktualisiere!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation>Drücken zum aktualisieren!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation>Holen dir mehr Wallpaper und Widgets über den Steam-Workshop!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation>Enthaltenden Ordner öffnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation>Item entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation>Über den Workshop entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation>Workshop öffnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation>Bist du dir sicher dass du dieses Item löschen möchtest?</translation>
|
||||
</message>
|
||||
@ -644,12 +765,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation>Hole dir kostenlose Widgets und Wallpaper via Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation>Stöbere durch den Steam Workshop</translation>
|
||||
</message>
|
||||
@ -748,32 +869,32 @@ Bitte Konfiguriere deine Wallpaper noch erneut</translation>
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation>Alles</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation>Szenen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation>Videos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation>Widgets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation>Installationsdatum aufsteigend</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation>Installationsdatum absteigend</translation>
|
||||
</message>
|
||||
@ -939,7 +1060,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut</translation>
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation>NEU</translation>
|
||||
</message>
|
||||
@ -1005,167 +1126,167 @@ Bitte Konfiguriere deine Wallpaper noch erneut</translation>
|
||||
<translation>Dein Speicherpfad ist leer!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation>Wichtig: Eine Änderung dieses Verzeichnisses hat keine Auswirkungen auf den Download-Pfad des Workshops. ScreenPlay unterstützt nur ein Verzeichnis!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation>Sprache</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation>Wähle die Sprache des Programms aus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation>Thema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation>Wechsle Dunkles/Helles Design</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation>System Standard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation>Dunkel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation>Hell</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation>Leistung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation>Pausiere Wallpaper Video Rendering wenn eine andere App im Vordergrund ist</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation>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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation>Standard-Füllmodus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation>Lege diese Eigenschaft fest, um zu definieren, wie das Video skaliert wird, damit es in den Zielbereich passt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation>Strecken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation>Ausfüllen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation>Enthält</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation>Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation>Runter Skallieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation>Über</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation>Danke, dass du ScreenPlay verwendest</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation>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:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation>Version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation>ScreenPlay-Build-Version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation>Changelog öffnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation>Software von Drittanbietern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation>ScreenPlay wäre ohne die Arbeit anderer nicht möglich. Ein großes Dankeschön dafür geht an: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation>Lizenzen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation>Protokolle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation>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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation>Zeige Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation>Datenschutz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation>Wir verwenden deine Daten sehr sorgfältig, um ScreenPlay zu verbessern. Wir verkaufen oder teilen diese (anonymen) Informationen nicht mit anderen!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation>Datenschutz</translation>
|
||||
</message>
|
||||
@ -1173,7 +1294,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut</translation>
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation>Kopiere den Text in die Zwischenablage</translation>
|
||||
</message>
|
||||
@ -1181,102 +1302,107 @@ Bitte Konfiguriere deine Wallpaper noch erneut</translation>
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation>Werkzeugeübersicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation>Video importieren und konvertieren (alle Typen)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation>Importiere Video (.webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation>GIF Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation>QML Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation>HTML5 Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation>Website Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation>QML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation>HTML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation>Wallpaper Festlegen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation>Widget wählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation>Überschrift</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation>Wähle einen Monitor zur Anzeige des Inhalts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation>Audiolautstärke einstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation>Füll-Modus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation>Strecken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation>Ausfüllen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation>Enthält</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation>Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation>Runter-Skallieren</translation>
|
||||
</message>
|
||||
@ -1285,43 +1411,38 @@ Bitte Konfiguriere deine Wallpaper noch erneut</translation>
|
||||
<source>Size: </source>
|
||||
<translation>Größe: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation type="unfinished"> MB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation>Leine Beschreibung...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation>Klicke hier wenn du den Inhalt magst</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation>Klicke hier wenn du den Inhalt nicht magst</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation>Abonnements</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation>Öffne in Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation>Abonniert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation>Abonniere</translation>
|
||||
</message>
|
||||
@ -1330,13 +1451,13 @@ Bitte Konfiguriere deine Wallpaper noch erneut</translation>
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation>Gratis App zur Erstellung von Hintergünden</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation>Darunter findest du Apps die über ScreenPlay hinaus Wallpaper für dich erstellen können!</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1482,12 +1603,12 @@ Bitte Konfiguriere deine Wallpaper noch erneut</translation>
|
||||
<translation>Tag hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Abbrechen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation>Tag hinzufügen</translation>
|
||||
</message>
|
||||
@ -1821,7 +1942,7 @@ Bitte Konfiguriere deine Wallpaper noch erneut</translation>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation>Passwort benötigt zum beenden der Sitzung</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="es-ES" sourcelanguage="en">
|
||||
<TS version="2.1" language="es_ES" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -218,37 +218,37 @@
|
||||
<translation type="unfinished">Convert a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Nombre (requerido!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Descripción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Youtube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation>Abortar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Save</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
@ -304,17 +304,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation type="unfinished">Clear</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation>Seleccionar Archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation>Por favor seleccione un archivo</translation>
|
||||
</message>
|
||||
@ -340,37 +340,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation>Importar Fondo Gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished">Drop a *.gif file here or use 'Select file' below.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation type="unfinished">Select your gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished">General</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation type="unfinished">Wallpaper name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation type="unfinished">Created By</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation type="unfinished">Tags</translation>
|
||||
</message>
|
||||
@ -525,37 +525,37 @@
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Name (required!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Youtube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished">Abort</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Save</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
@ -593,6 +593,127 @@
|
||||
<translation type="unfinished">Select file</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">AnalyseVideo...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished">Generating preview image...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished">Generating preview thumbnail image...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished">Generating 5 second preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished">Generating preview gif...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished">Converting Video... This can take some time!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished">Converting Video ERROR!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished">Analyse Video ERROR!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Youtube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Save</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished">Open Documentation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished">Select file</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -601,43 +722,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation type="unfinished">Refreshing!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation type="unfinished">Pull to refresh!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation type="unfinished">Get more Wallpaper & Widgets via the Steam workshop!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation type="unfinished">Open containing folder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation type="unfinished">Remove Item</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation type="unfinished">Remove via Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation type="unfinished">Open Workshop Page</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation type="unfinished">Are you sure you want to delete this item?</translation>
|
||||
</message>
|
||||
@ -645,12 +766,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation type="unfinished">Get free Widgets and Wallpaper via the Steam Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation type="unfinished">Browse the Steam Workshop</translation>
|
||||
</message>
|
||||
@ -749,32 +870,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished">All</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation type="unfinished">Scenes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation type="unfinished">Videos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation type="unfinished">Widgets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation type="unfinished">Install Date Ascending</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation type="unfinished">Install Date Descending</translation>
|
||||
</message>
|
||||
@ -940,7 +1061,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation type="unfinished">NEW</translation>
|
||||
</message>
|
||||
@ -1006,167 +1127,167 @@
|
||||
<translation type="unfinished">Your storage path is empty!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation type="unfinished">Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation type="unfinished">Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation type="unfinished">Set the ScreenPlay UI Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation type="unfinished">Theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation type="unfinished">Switch dark/light theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation type="unfinished">System Default</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation type="unfinished">Dark</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation type="unfinished">Light</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation type="unfinished">Performance</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation type="unfinished">Pause wallpaper video rendering while another app is in the foreground</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation type="unfinished">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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation type="unfinished">Default Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation type="unfinished">Set this property to define how the video is scaled to fit the target area.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished">About</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation type="unfinished">Thank you for using ScreenPlay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation type="unfinished">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:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished">Version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation type="unfinished">ScreenPlay Build Version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation type="unfinished">Open Changelog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation type="unfinished">Third Party Software</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation type="unfinished">ScreenPlay would not be possible without the work of others. A big thank you to: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation type="unfinished">Licenses</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation type="unfinished">Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation type="unfinished">If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation type="unfinished">Show Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation type="unfinished">Data Protection</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation type="unfinished">We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation type="unfinished">Privacy</translation>
|
||||
</message>
|
||||
@ -1174,7 +1295,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation type="unfinished">Copy text to clipboard</translation>
|
||||
</message>
|
||||
@ -1182,102 +1303,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation type="unfinished">Tools Overview</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation type="unfinished">Video import and convert (all types)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation type="unfinished">Video Import (.webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation type="unfinished">GIF Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation type="unfinished">QML Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation type="unfinished">HTML5 Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation type="unfinished">Website Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation type="unfinished">QML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation type="unfinished">HTML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation type="unfinished">Set Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation type="unfinished">Set Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation type="unfinished">Headline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation type="unfinished">Select a Monitor to display the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation type="unfinished">Set Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation type="unfinished">Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
@ -1286,43 +1412,38 @@
|
||||
<source>Size: </source>
|
||||
<translation type="unfinished">Size: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation type="unfinished"> MB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation type="unfinished">No description...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation type="unfinished">Click here if you like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation type="unfinished">Click here if you do not like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation type="unfinished">Subscribtions: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation type="unfinished">Open In Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation type="unfinished">Subscribed!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation type="unfinished">Subscribe</translation>
|
||||
</message>
|
||||
@ -1331,13 +1452,13 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation type="unfinished">Free Tools to create wallpaper</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished">Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1483,12 +1604,12 @@
|
||||
<translation type="unfinished">Add tag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Cancel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation type="unfinished">Add Tag</translation>
|
||||
</message>
|
||||
@ -1822,7 +1943,7 @@
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation type="unfinished">Password Required T oKick Session</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="fr" sourcelanguage="en">
|
||||
<TS version="2.1" language="fr_FR" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -218,37 +218,37 @@
|
||||
<translation>Convertir une vidéo en fond d'écran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Génération de la vidéo d'aperçu...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Nom (requis!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>URL Youtube </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation>Annuler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation>Sauvegarder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Enregistrer le fond d'écran</translation>
|
||||
</message>
|
||||
@ -304,17 +304,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation>Effacer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation>Sélectionner un fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation>Veuillez choisir un fichier</translation>
|
||||
</message>
|
||||
@ -340,37 +340,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation>Importer un fond d'écran Gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation>Déposez un fichier *.gif ici ou utilisez 'Sélectionner un fichier' ci-dessous.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation>Sélectionnez votre gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation>Général</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation>Nom du fond d'écran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation>Créé par</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation>Tags</translation>
|
||||
</message>
|
||||
@ -525,37 +525,37 @@
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Génération de la vidéo d'aperçu...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Nom (requis!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>URL Youtube </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation>Annuler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation>Enregistrer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Enregistrer le fond d'écran</translation>
|
||||
</message>
|
||||
@ -593,6 +593,127 @@
|
||||
<translation>Sélectionner un fichier</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">AnalyseVidéo...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished">Génération de l'image d'aperçu...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished">Génération de la miniature de l’aperçu...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished">Génération d’une vidéo d’aperçu de 5 secondes...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished">Conversion de l’audio...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished">Erreur d'Analyse Vidéo !</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Génération de la vidéo d'aperçu...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Nom (requis!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">URL Youtube </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Enregistrer le fond d'écran</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished">Ouvrir la documentation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished">Sélectionner un fichier</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -601,43 +722,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation>Actualisation!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation type="unfinished">Pull to refresh!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation>Obtenez plus de fonds d'écran et de widgets via le Steam Workshop!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation>Ouvrir le dossier source</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation>Supprimer l'élément</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation>Retirer via le Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation>Ouvrir la page du Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation>Êtes-vous sûr de vouloir supprimer cet élément?</translation>
|
||||
</message>
|
||||
@ -645,12 +766,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation>Obtenez des Widgets et des fonds d'écran gratuits via le Steam Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation>Parcourir le Steam Workshop</translation>
|
||||
</message>
|
||||
@ -749,32 +870,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished">All</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation type="unfinished">Scenes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation type="unfinished">Videos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation type="unfinished">Widgets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation type="unfinished">Install Date Ascending</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation type="unfinished">Install Date Descending</translation>
|
||||
</message>
|
||||
@ -940,7 +1061,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation type="unfinished">NEW</translation>
|
||||
</message>
|
||||
@ -1006,167 +1127,167 @@
|
||||
<translation type="unfinished">Your storage path is empty!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation type="unfinished">Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation type="unfinished">Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation type="unfinished">Set the ScreenPlay UI Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation type="unfinished">Theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation type="unfinished">Switch dark/light theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation type="unfinished">System Default</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation type="unfinished">Dark</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation type="unfinished">Light</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation type="unfinished">Performance</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation type="unfinished">Pause wallpaper video rendering while another app is in the foreground</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation type="unfinished">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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation type="unfinished">Default Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation type="unfinished">Set this property to define how the video is scaled to fit the target area.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished">About</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation type="unfinished">Thank you for using ScreenPlay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation type="unfinished">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:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished">Version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation type="unfinished">ScreenPlay Build Version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation type="unfinished">Open Changelog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation type="unfinished">Third Party Software</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation type="unfinished">ScreenPlay would not be possible without the work of others. A big thank you to: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation type="unfinished">Licenses</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation type="unfinished">Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation type="unfinished">If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation type="unfinished">Show Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation type="unfinished">Data Protection</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation type="unfinished">We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation type="unfinished">Privacy</translation>
|
||||
</message>
|
||||
@ -1174,7 +1295,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation type="unfinished">Copy text to clipboard</translation>
|
||||
</message>
|
||||
@ -1182,102 +1303,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation type="unfinished">Tools Overview</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation type="unfinished">Video import and convert (all types)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation type="unfinished">Video Import (.webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation type="unfinished">GIF Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation type="unfinished">QML Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation type="unfinished">HTML5 Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation type="unfinished">Website Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation type="unfinished">QML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation type="unfinished">HTML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation type="unfinished">Set Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation type="unfinished">Set Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation type="unfinished">Headline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation type="unfinished">Select a Monitor to display the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation type="unfinished">Set Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation type="unfinished">Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
@ -1286,43 +1412,38 @@
|
||||
<source>Size: </source>
|
||||
<translation type="unfinished">Size: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation type="unfinished"> MB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation type="unfinished">No description...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation type="unfinished">Click here if you like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation type="unfinished">Click here if you do not like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation type="unfinished">Subscribtions: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation type="unfinished">Open In Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation type="unfinished">Subscribed!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation type="unfinished">Subscribe</translation>
|
||||
</message>
|
||||
@ -1331,13 +1452,13 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation type="unfinished">Free Tools to create wallpaper</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished">Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1483,12 +1604,12 @@
|
||||
<translation type="unfinished">Add tag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Cancel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation type="unfinished">Add Tag</translation>
|
||||
</message>
|
||||
@ -1822,7 +1943,7 @@
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation type="unfinished">Password Required T oKick Session</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="it" sourcelanguage="en">
|
||||
<TS version="2.1" language="it_IT" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -218,37 +218,37 @@
|
||||
<translation>Converti un video in uno sfondo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Generazione video di anteprima...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Nome (obbligatorio)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Descrizione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>URL Youtube</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation>Interrompi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation>Salva</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Salva sfondo...</translation>
|
||||
</message>
|
||||
@ -304,17 +304,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation>Azzera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation>Seleziona file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation>Scegli un file</translation>
|
||||
</message>
|
||||
@ -340,37 +340,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation>Importa uno sfondo Gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation>Trascina un file *.gif qui o usa 'Seleziona file' qui sotto.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation>Seleziona la tua gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation>Generale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation>Nome sfondo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation>Creato da</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation>Tag</translation>
|
||||
</message>
|
||||
@ -525,37 +525,37 @@
|
||||
<translation>Importa un video in uno sfondo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Generazione video di anteprima...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Nome (obbligatorio)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Descrizione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>URL Youtube</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation>Interrompi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation>Salva</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Salva sfondo...</translation>
|
||||
</message>
|
||||
@ -593,6 +593,127 @@
|
||||
<translation>Seleziona file</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">Analizza Video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished">Generazione miniatura di anteprima...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished">Generazione anteprima video di 5 secondi...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished">Generazione gif di anteprima...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished">Conversione Audio...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished">Conversione Video... Potrebbe richiedere un po' di tempo!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished">Conversione Video ERRORE!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished">Analisi Video ERRORE!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">Importa un video in uno sfondo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generazione video di anteprima...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Nome (obbligatorio)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Descrizione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">URL Youtube</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished">Interrompi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Salva</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Salva sfondo...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished">Apri documentazione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished">Seleziona file</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -601,43 +722,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation>Aggiornamento!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation>Trascina per aggiornare!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation>Ottieni altri Wallpaper & Widget dal workshop di Steam!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation>Apri percorso file</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation>Rimuovi elemento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation>Rimuovi tramite Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation>Apri pagina del Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation>Sei sicuro di voler rimuovere questo elemento?</translation>
|
||||
</message>
|
||||
@ -645,12 +766,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation>Ottieni Widget e Wallpaper gratuiti tramite il Steam Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation>Sfoglia lo Steam Workshop</translation>
|
||||
</message>
|
||||
@ -749,32 +870,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation>Tutto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation>Scene</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation>Video</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation>Widgets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation>Data di Installazione Crescente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation>Data di Installazione Decrescente</translation>
|
||||
</message>
|
||||
@ -940,7 +1061,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation>NUOVO</translation>
|
||||
</message>
|
||||
@ -1006,167 +1127,167 @@
|
||||
<translation>Il tuo percorso di archiviazione è vuoto!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation>Importante: la modifica di questa cartella non ha effetto sul percorso di download del workshop. ScreenPlay supporta solo una cartella contenuti!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation>Lingua</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation>Imposta la lingua dell'interfaccia utente di ScreenPlay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation>Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation>Cambia tema scuro/chiaro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation>Predefinito di Sistema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation>Scuro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation>Chiaro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation>Prestazioni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation>Metti in pausa il rendering video dello sfondo mentre un'altra app è in primo piano</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation>Disattiviamo il rendering video (non l'audio!) per migliori prestazioni. Se hai problemi puoi disabilitare questa opzione qui. È necessario riavviare lo sfondo!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation>Modalità riempimento predefinita</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation>Imposta questa proprietà per definire come il video viene adattato all'area di destinazione.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation>Estensione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation>Riempimento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation>Contenimento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation>Coprente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation>Riduzione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation>Informazioni aggiuntive</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation>Grazie per aver usato ScreenPlay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation>Ciao, sono Elias Steurer conosciuto anche come Kelteseth e sono lo sviluppatore di ScreenPlay. Grazie per aver utilizzato il mio software. Puoi seguirmi per ricevere aggiornamenti su ScreenPlay qui:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation>Versione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation>Versione Build di ScreenPlay </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation>Apri Changelog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation>Software di terze parti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation>ScreenPlay non sarebbe possibile senza il lavoro di altri. Un grande ringraziamento a: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation>Licenze</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation>Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation>Se il tuo ScreenPlay non funziona correttamente questo è un buon modo per cercare risposte. Questo mostra tutti i log e gli avvisi durante l'esecuzione.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation>Visualizza i Log</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation>Protezione dei dati</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation>Utilizziamo i tuoi dati con molta attenzione per migliorare ScreenPlay. Non vendiamo o condividiamo queste informazioni (anonime) con altri!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation>Privacy</translation>
|
||||
</message>
|
||||
@ -1174,7 +1295,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation>Copia testo negli appunti</translation>
|
||||
</message>
|
||||
@ -1182,102 +1303,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation>Panoramica Strumenti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation>Importa e converti video (tutti i tipi)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation>Importa Video (.Webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation>Sfondo GIF</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation>Sfondo QML</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation>Sfondo HTML5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation>Sfondo Web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation>Widget QML</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation>Widget HTML</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation>Imposta sfondo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation>Imposta Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation>Intestazione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation>Seleziona un monitor per visualizzare il contenuto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation>Imposta volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation>Modalità Riempimento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation>Estensione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation>Riempimento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation>Proporzioni mantenute (barre nere)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation>Taglia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation>Rimpicciolisci</translation>
|
||||
</message>
|
||||
@ -1286,43 +1412,38 @@
|
||||
<source>Size: </source>
|
||||
<translation>Dimensione: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation type="unfinished"> MB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation>Nessuna descrizione...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation>Clicca qui se ti piace il contenuto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation>Clicca qui se non ti piace il contenuto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation>Iscrizioni: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation>Apri In Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation>Iscritto!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation>Iscriviti</translation>
|
||||
</message>
|
||||
@ -1331,13 +1452,13 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation>Strumenti gratuiti per creare sfondi</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation>Qui sotto puoi trovare strumenti per creare wallaper oltre a quelli che ScreenPlay fornisce per te!</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1483,12 +1604,12 @@
|
||||
<translation>Aggiungi tag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Annulla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation>Aggiungi tag</translation>
|
||||
</message>
|
||||
@ -1822,7 +1943,7 @@
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation type="unfinished">Password Required T oKick Session</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="ko" sourcelanguage="en">
|
||||
<TS version="2.1" language="ko_KR" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -218,37 +218,37 @@
|
||||
<translation type="unfinished">Convert a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Name (required!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Youtube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished">Abort</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Save</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
@ -304,17 +304,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation type="unfinished">Clear</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation type="unfinished">Select File</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation type="unfinished">Please choose a file</translation>
|
||||
</message>
|
||||
@ -340,37 +340,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation type="unfinished">Import a Gif Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished">Drop a *.gif file here or use 'Select file' below.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation type="unfinished">Select your gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished">General</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation type="unfinished">Wallpaper name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation type="unfinished">Created By</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation type="unfinished">Tags</translation>
|
||||
</message>
|
||||
@ -525,37 +525,37 @@
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Name (required!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>유튜브 URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation>중단</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation>저장</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
@ -593,6 +593,127 @@
|
||||
<translation>파일 선택</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">AnalyseVideo...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished">Converting Video ERROR!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished">Analyse Video ERROR!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Name (required!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished">문서 열기</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished">파일 선택</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -601,43 +722,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation>새로고침 중</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation type="unfinished">Pull to refresh!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation type="unfinished">Get more Wallpaper & Widgets via the Steam workshop!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation type="unfinished">Open containing folder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation type="unfinished">Remove Item</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation type="unfinished">Remove via Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation>창작마당 페이지 열기</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation type="unfinished">Are you sure you want to delete this item?</translation>
|
||||
</message>
|
||||
@ -645,12 +766,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation type="unfinished">Get free Widgets and Wallpaper via the Steam Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation type="unfinished">Browse the Steam Workshop</translation>
|
||||
</message>
|
||||
@ -749,32 +870,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished">All</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation type="unfinished">Scenes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation type="unfinished">Videos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation type="unfinished">Widgets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation type="unfinished">Install Date Ascending</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation type="unfinished">Install Date Descending</translation>
|
||||
</message>
|
||||
@ -940,7 +1061,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation type="unfinished">NEW</translation>
|
||||
</message>
|
||||
@ -1006,167 +1127,167 @@
|
||||
<translation type="unfinished">Your storage path is empty!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation type="unfinished">Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation type="unfinished">Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation type="unfinished">Set the ScreenPlay UI Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation type="unfinished">Theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation type="unfinished">Switch dark/light theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation type="unfinished">System Default</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation type="unfinished">Dark</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation type="unfinished">Light</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation type="unfinished">Performance</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation type="unfinished">Pause wallpaper video rendering while another app is in the foreground</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation type="unfinished">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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation type="unfinished">Default Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation type="unfinished">Set this property to define how the video is scaled to fit the target area.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished">About</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation type="unfinished">Thank you for using ScreenPlay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation type="unfinished">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:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished">Version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation type="unfinished">ScreenPlay Build Version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation type="unfinished">Open Changelog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation type="unfinished">Third Party Software</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation type="unfinished">ScreenPlay would not be possible without the work of others. A big thank you to: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation type="unfinished">Licenses</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation type="unfinished">Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation type="unfinished">If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation type="unfinished">Show Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation type="unfinished">Data Protection</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation type="unfinished">We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation type="unfinished">Privacy</translation>
|
||||
</message>
|
||||
@ -1174,7 +1295,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation type="unfinished">Copy text to clipboard</translation>
|
||||
</message>
|
||||
@ -1182,102 +1303,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation type="unfinished">Tools Overview</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation type="unfinished">Video import and convert (all types)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation type="unfinished">Video Import (.webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation type="unfinished">GIF Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation type="unfinished">QML Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation type="unfinished">HTML5 Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation type="unfinished">Website Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation type="unfinished">QML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation type="unfinished">HTML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation type="unfinished">Set Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation type="unfinished">Set Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation type="unfinished">Headline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation type="unfinished">Select a Monitor to display the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation type="unfinished">Set Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation type="unfinished">Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
@ -1286,43 +1412,38 @@
|
||||
<source>Size: </source>
|
||||
<translation type="unfinished">Size: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation type="unfinished"> MB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation type="unfinished">No description...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation type="unfinished">Click here if you like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation type="unfinished">Click here if you do not like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation type="unfinished">Subscribtions: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation type="unfinished">Open In Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation type="unfinished">Subscribed!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation type="unfinished">Subscribe</translation>
|
||||
</message>
|
||||
@ -1331,13 +1452,13 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation type="unfinished">Free Tools to create wallpaper</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished">Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1483,12 +1604,12 @@
|
||||
<translation type="unfinished">Add tag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Cancel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation type="unfinished">Add Tag</translation>
|
||||
</message>
|
||||
@ -1822,7 +1943,7 @@
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation type="unfinished">Password Required T oKick Session</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="nl" sourcelanguage="en">
|
||||
<TS version="2.1" language="nl_NL" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -218,37 +218,37 @@
|
||||
<translation type="unfinished">Convert a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Name (required!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Youtube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished">Abort</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Save</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
@ -304,17 +304,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation type="unfinished">Clear</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation type="unfinished">Select File</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation type="unfinished">Please choose a file</translation>
|
||||
</message>
|
||||
@ -340,37 +340,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation type="unfinished">Import a Gif Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished">Drop a *.gif file here or use 'Select file' below.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation type="unfinished">Select your gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished">General</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation type="unfinished">Wallpaper name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation type="unfinished">Created By</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation type="unfinished">Tags</translation>
|
||||
</message>
|
||||
@ -525,37 +525,37 @@
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Name (required!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Youtube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished">Abort</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Save</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
@ -593,6 +593,127 @@
|
||||
<translation type="unfinished">Select file</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">AnalyseVideo...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished">Generating preview image...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished">Generating preview thumbnail image...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished">Generating 5 second preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished">Generating preview gif...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished">Converting Audio...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished">Converting Video... This can take some time!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished">Converting Video ERROR!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished">Analyse Video ERROR!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Name (required!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Youtube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished">Abort</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Save</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished">Select file</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -601,43 +722,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation type="unfinished">Refreshing!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation type="unfinished">Pull to refresh!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation type="unfinished">Get more Wallpaper & Widgets via the Steam workshop!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation type="unfinished">Open containing folder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation type="unfinished">Remove Item</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation type="unfinished">Remove via Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation type="unfinished">Open Workshop Page</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation type="unfinished">Are you sure you want to delete this item?</translation>
|
||||
</message>
|
||||
@ -645,12 +766,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation type="unfinished">Get free Widgets and Wallpaper via the Steam Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation type="unfinished">Browse the Steam Workshop</translation>
|
||||
</message>
|
||||
@ -749,32 +870,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished">All</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation type="unfinished">Scenes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation type="unfinished">Videos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation type="unfinished">Widgets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation type="unfinished">Install Date Ascending</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation type="unfinished">Install Date Descending</translation>
|
||||
</message>
|
||||
@ -940,7 +1061,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation type="unfinished">NEW</translation>
|
||||
</message>
|
||||
@ -1006,167 +1127,167 @@
|
||||
<translation type="unfinished">Your storage path is empty!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation type="unfinished">Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation type="unfinished">Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation type="unfinished">Set the ScreenPlay UI Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation type="unfinished">Theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation type="unfinished">Switch dark/light theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation type="unfinished">System Default</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation type="unfinished">Dark</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation type="unfinished">Light</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation type="unfinished">Performance</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation type="unfinished">Pause wallpaper video rendering while another app is in the foreground</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation type="unfinished">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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation type="unfinished">Default Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation type="unfinished">Set this property to define how the video is scaled to fit the target area.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished">About</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation type="unfinished">Thank you for using ScreenPlay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation type="unfinished">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:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished">Version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation type="unfinished">ScreenPlay Build Version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation type="unfinished">Open Changelog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation type="unfinished">Third Party Software</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation type="unfinished">ScreenPlay would not be possible without the work of others. A big thank you to: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation type="unfinished">Licenses</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation type="unfinished">Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation type="unfinished">If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation type="unfinished">Show Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation type="unfinished">Data Protection</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation type="unfinished">We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation type="unfinished">Privacy</translation>
|
||||
</message>
|
||||
@ -1174,7 +1295,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation type="unfinished">Copy text to clipboard</translation>
|
||||
</message>
|
||||
@ -1182,102 +1303,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation type="unfinished">Tools Overview</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation type="unfinished">Video import and convert (all types)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation type="unfinished">Video Import (.webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation type="unfinished">GIF Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation type="unfinished">QML Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation type="unfinished">HTML5 Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation type="unfinished">Website Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation type="unfinished">QML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation type="unfinished">HTML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation type="unfinished">Set Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation type="unfinished">Set Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation type="unfinished">Headline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation type="unfinished">Select a Monitor to display the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation type="unfinished">Set Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation type="unfinished">Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
@ -1286,43 +1412,38 @@
|
||||
<source>Size: </source>
|
||||
<translation type="unfinished">Size: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation type="unfinished"> MB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation type="unfinished">No description...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation type="unfinished">Click here if you like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation type="unfinished">Click here if you do not like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation type="unfinished">Subscribtions: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation type="unfinished">Open In Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation type="unfinished">Subscribed!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation type="unfinished">Subscribe</translation>
|
||||
</message>
|
||||
@ -1331,13 +1452,13 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation type="unfinished">Free Tools to create wallpaper</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished">Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1483,12 +1604,12 @@
|
||||
<translation type="unfinished">Add tag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Cancel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation type="unfinished">Add Tag</translation>
|
||||
</message>
|
||||
@ -1822,7 +1943,7 @@
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation type="unfinished">Password Required T oKick Session</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="pt-BR" sourcelanguage="en">
|
||||
<TS version="2.1" language="pt_BR" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -218,37 +218,37 @@
|
||||
<translation>Converter um vídeo para um plano de fundo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Gerando vídeo de pré-visualização...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Nome (obrigatório!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Descrição</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>URL do Youtube</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation>Abortar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation>Salvar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Salvar o papel de parede...</translation>
|
||||
</message>
|
||||
@ -304,17 +304,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation>Limpar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation>Selecionar arquivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation>Por favor, escolha um arquivo</translation>
|
||||
</message>
|
||||
@ -340,37 +340,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation type="unfinished">Import a Gif Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished">Drop a *.gif file here or use 'Select file' below.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation type="unfinished">Select your gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished">General</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation type="unfinished">Wallpaper name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation type="unfinished">Created By</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation type="unfinished">Tags</translation>
|
||||
</message>
|
||||
@ -525,37 +525,37 @@
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Name (required!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Youtube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished">Abort</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Save</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
@ -593,6 +593,127 @@
|
||||
<translation>Selecionar arquivo</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">AnalyseVideo...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished">Selecionar arquivo</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -601,43 +722,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation>Atualizando!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation type="unfinished">Pull to refresh!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation>Obtenha mais papéis de parede e Widgets através da Oficina Steam!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation>Abrir a pasta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation>Remover Item</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation>Remover da Oficina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation>Abrir Página da Oficina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation>Tem certeza que deseja remover este item?</translation>
|
||||
</message>
|
||||
@ -645,12 +766,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation>Obtenha widgets e papéis de parede gratuitos através da Oficina Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation>Navegar na Oficina Steam</translation>
|
||||
</message>
|
||||
@ -749,32 +870,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished">All</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation type="unfinished">Scenes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation type="unfinished">Videos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation type="unfinished">Widgets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation type="unfinished">Install Date Ascending</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation type="unfinished">Install Date Descending</translation>
|
||||
</message>
|
||||
@ -940,7 +1061,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation type="unfinished">NEW</translation>
|
||||
</message>
|
||||
@ -1006,167 +1127,167 @@
|
||||
<translation type="unfinished">Your storage path is empty!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation type="unfinished">Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation type="unfinished">Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation type="unfinished">Set the ScreenPlay UI Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation type="unfinished">Theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation type="unfinished">Switch dark/light theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation type="unfinished">System Default</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation type="unfinished">Dark</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation type="unfinished">Light</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation type="unfinished">Performance</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation type="unfinished">Pause wallpaper video rendering while another app is in the foreground</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation type="unfinished">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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation type="unfinished">Default Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation type="unfinished">Set this property to define how the video is scaled to fit the target area.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished">About</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation type="unfinished">Thank you for using ScreenPlay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation type="unfinished">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:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished">Version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation type="unfinished">ScreenPlay Build Version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation type="unfinished">Open Changelog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation type="unfinished">Third Party Software</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation type="unfinished">ScreenPlay would not be possible without the work of others. A big thank you to: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation type="unfinished">Licenses</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation type="unfinished">Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation type="unfinished">If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation type="unfinished">Show Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation type="unfinished">Data Protection</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation type="unfinished">We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation type="unfinished">Privacy</translation>
|
||||
</message>
|
||||
@ -1174,7 +1295,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation type="unfinished">Copy text to clipboard</translation>
|
||||
</message>
|
||||
@ -1182,102 +1303,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation type="unfinished">Tools Overview</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation type="unfinished">Video import and convert (all types)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation type="unfinished">Video Import (.webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation type="unfinished">GIF Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation type="unfinished">QML Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation type="unfinished">HTML5 Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation type="unfinished">Website Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation type="unfinished">QML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation type="unfinished">HTML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation type="unfinished">Set Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation type="unfinished">Set Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation type="unfinished">Headline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation type="unfinished">Select a Monitor to display the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation type="unfinished">Set Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation type="unfinished">Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
@ -1286,43 +1412,38 @@
|
||||
<source>Size: </source>
|
||||
<translation type="unfinished">Size: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation type="unfinished"> MB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation type="unfinished">No description...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation type="unfinished">Click here if you like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation type="unfinished">Click here if you do not like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation type="unfinished">Subscribtions: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation type="unfinished">Open In Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation type="unfinished">Subscribed!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation type="unfinished">Subscribe</translation>
|
||||
</message>
|
||||
@ -1331,13 +1452,13 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation type="unfinished">Free Tools to create wallpaper</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished">Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1483,12 +1604,12 @@
|
||||
<translation type="unfinished">Add tag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Cancel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation type="unfinished">Add Tag</translation>
|
||||
</message>
|
||||
@ -1822,7 +1943,7 @@
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation type="unfinished">Password Required T oKick Session</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="ru" sourcelanguage="en">
|
||||
<TS version="2.1" language="ru_RU" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -218,37 +218,37 @@
|
||||
<translation>Преобразовать видео в обои</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Создание предварительного видео...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Имя (обязательно)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Описание</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>YouTube URL-адрес</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation>Прервать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation>Сохранить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Сохранить обои...</translation>
|
||||
</message>
|
||||
@ -304,17 +304,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation type="unfinished">Clear</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation type="unfinished">Select File</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation type="unfinished">Please choose a file</translation>
|
||||
</message>
|
||||
@ -340,37 +340,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation type="unfinished">Import a Gif Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished">Drop a *.gif file here or use 'Select file' below.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation type="unfinished">Select your gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished">General</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation type="unfinished">Wallpaper name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation type="unfinished">Created By</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation type="unfinished">Tags</translation>
|
||||
</message>
|
||||
@ -525,37 +525,37 @@
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Generating preview video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Name (required!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Youtube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished">Abort</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Save</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Save Wallpaper...</translation>
|
||||
</message>
|
||||
@ -593,6 +593,127 @@
|
||||
<translation type="unfinished">Select file</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">AnalyseVideo...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">Import a video to a wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -601,43 +722,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation type="unfinished">Refreshing!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation type="unfinished">Pull to refresh!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation type="unfinished">Get more Wallpaper & Widgets via the Steam workshop!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation type="unfinished">Open containing folder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation type="unfinished">Remove Item</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation type="unfinished">Remove via Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation type="unfinished">Open Workshop Page</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation type="unfinished">Are you sure you want to delete this item?</translation>
|
||||
</message>
|
||||
@ -645,12 +766,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation type="unfinished">Get free Widgets and Wallpaper via the Steam Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation type="unfinished">Browse the Steam Workshop</translation>
|
||||
</message>
|
||||
@ -749,32 +870,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished">All</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation type="unfinished">Scenes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation type="unfinished">Videos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation type="unfinished">Widgets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation type="unfinished">Install Date Ascending</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation type="unfinished">Install Date Descending</translation>
|
||||
</message>
|
||||
@ -940,7 +1061,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation type="unfinished">NEW</translation>
|
||||
</message>
|
||||
@ -1006,167 +1127,167 @@
|
||||
<translation type="unfinished">Your storage path is empty!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation type="unfinished">Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation type="unfinished">Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation type="unfinished">Set the ScreenPlay UI Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation type="unfinished">Theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation type="unfinished">Switch dark/light theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation type="unfinished">System Default</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation type="unfinished">Dark</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation type="unfinished">Light</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation type="unfinished">Performance</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation type="unfinished">Pause wallpaper video rendering while another app is in the foreground</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation type="unfinished">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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation type="unfinished">Default Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation type="unfinished">Set this property to define how the video is scaled to fit the target area.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished">About</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation type="unfinished">Thank you for using ScreenPlay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation type="unfinished">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:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished">Version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation type="unfinished">ScreenPlay Build Version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation type="unfinished">Open Changelog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation type="unfinished">Third Party Software</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation type="unfinished">ScreenPlay would not be possible without the work of others. A big thank you to: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation type="unfinished">Licenses</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation type="unfinished">Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation type="unfinished">If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation type="unfinished">Show Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation type="unfinished">Data Protection</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation type="unfinished">We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation type="unfinished">Privacy</translation>
|
||||
</message>
|
||||
@ -1174,7 +1295,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation type="unfinished">Copy text to clipboard</translation>
|
||||
</message>
|
||||
@ -1182,102 +1303,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation type="unfinished">Tools Overview</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation type="unfinished">Video import and convert (all types)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation type="unfinished">Video Import (.webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation type="unfinished">GIF Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation type="unfinished">QML Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation type="unfinished">HTML5 Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation type="unfinished">Website Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation type="unfinished">QML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation type="unfinished">HTML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation type="unfinished">Set Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation type="unfinished">Set Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation type="unfinished">Headline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation type="unfinished">Select a Monitor to display the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation type="unfinished">Set Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation type="unfinished">Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
@ -1286,43 +1412,38 @@
|
||||
<source>Size: </source>
|
||||
<translation type="unfinished">Size: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation type="unfinished"> MB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation type="unfinished">No description...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation type="unfinished">Click here if you like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation type="unfinished">Click here if you do not like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation type="unfinished">Subscribtions: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation type="unfinished">Open In Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation type="unfinished">Subscribed!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation type="unfinished">Subscribe</translation>
|
||||
</message>
|
||||
@ -1331,13 +1452,13 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation type="unfinished">Free Tools to create wallpaper</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished">Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1483,12 +1604,12 @@
|
||||
<translation type="unfinished">Add tag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Cancel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation type="unfinished">Add Tag</translation>
|
||||
</message>
|
||||
@ -1822,7 +1943,7 @@
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation type="unfinished">Password Required T oKick Session</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="tr" sourcelanguage="en">
|
||||
<TS version="2.1" language="tr_TR" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -218,37 +218,37 @@
|
||||
<translation>Bir videoyu duvar kağıdına dönüştürün</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Önizleme videosu oluşturuluyor...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>İsim (gerekli)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Açıklama</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>YouTube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation>İptal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation>Kaydet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Duvar kağıdını kaydet...</translation>
|
||||
</message>
|
||||
@ -304,17 +304,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation>Temizle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation>Dosya Seç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation>Lütfen bir dosya seçiniz</translation>
|
||||
</message>
|
||||
@ -340,37 +340,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation>Bir Gif Duvar Kağıdını İçe Aktarın</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation>Bir *.gif dosyasını sürükleyin ' Ya da Dosyayı seçin '</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation>Gif seç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation>Genel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation>Duvar Kağıdı adı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation>Oluşturan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation>Etiketler</translation>
|
||||
</message>
|
||||
@ -525,37 +525,37 @@
|
||||
<translation>Bir videoyu duvar kağıdına aktarın</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Önizleme videosu oluşturuluyor...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>İsim (gerekli)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Açıklama</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>YouTube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation>İptal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation>Kaydet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Duvar kağıdını kaydet...</translation>
|
||||
</message>
|
||||
@ -593,6 +593,127 @@
|
||||
<translation>Dosya seç</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">VideoAnaliz...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished">Önizleme oluşturuluyor...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished">Önizleme küçük resmi oluşturuluyor...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished">5 saniyelik önizleme videosu oluşturuluyor...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished">Özizleme gifi oluşturuluyor...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished">Ses Dönüştürülüyor...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished">Video dönüştürülüyor... Biraz zaman alabilir!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished">Video Dönüştürülürken Hata Oluştu!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished">Video Hatasını Analiz Edin!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">Bir videoyu duvar kağıdına aktarın</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Önizleme videosu oluşturuluyor...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">İsim (gerekli)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">YouTube URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Duvar kağıdını kaydet...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished">Belgeyi Aç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished">Dosya seç</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -601,43 +722,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation>Yenileniyor!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation>Yenilemek için çek!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation>Steam atölyesi aracılığıyla daha fazla Duvar Kağıdı ve Widget edinin!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation>İçeren klasörü aç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation>Öğeyi Kaldır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation>Atölye ile Kaldır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation>Atölyeyi Aç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation>Bu öğeyi silmek istediğinizden emin misiniz?</translation>
|
||||
</message>
|
||||
@ -645,12 +766,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation>Steam Atölyesi aracılığıyla ücretsiz Widget'lar ve Duvar Kağıdı alın</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation>Steam Atölyesine Göz Atın</translation>
|
||||
</message>
|
||||
@ -749,32 +870,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation>Hepsi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation>Sahneler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation>Videolar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation>Widget’lar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation>Artan Kurulum Tarihi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation>Azalan Kurulum Tarihi</translation>
|
||||
</message>
|
||||
@ -940,7 +1061,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation>YENİ</translation>
|
||||
</message>
|
||||
@ -1006,167 +1127,167 @@
|
||||
<translation type="unfinished">Your storage path is empty!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation>Ö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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation>Dil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation>ScreenPlay Arayüz Dilini Ayarlayın</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation>Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation>Koyu/Açık temayı değiştir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation>Sistem Varsayılanı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation>Karanlık</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation>Aydınlık</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation>Performans</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation>Başka bir uygulama ön plandayken duvar kağıdı video oluşturmayı duraklatın</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation>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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation>Varsayılan Doldurma Modu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation>Videonun hedef alana sığacak şekilde nasıl ölçeklendirileceğini tanımlamak için bu özelliği ayarlayın.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation>Esnet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation>Doldur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation>İçeren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation>Kapak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation>Ölçek-Düşür</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation>Hakkında</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation>ScreePlay'i kullandığınız için teşekkür ederiz!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation type="unfinished">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:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished">Version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation type="unfinished">ScreenPlay Build Version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation type="unfinished">Open Changelog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation type="unfinished">Third Party Software</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation type="unfinished">ScreenPlay would not be possible without the work of others. A big thank you to: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation type="unfinished">Licenses</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation type="unfinished">Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation type="unfinished">If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation type="unfinished">Show Logs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation type="unfinished">Data Protection</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation type="unfinished">We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation type="unfinished">Privacy</translation>
|
||||
</message>
|
||||
@ -1174,7 +1295,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation type="unfinished">Copy text to clipboard</translation>
|
||||
</message>
|
||||
@ -1182,102 +1303,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation type="unfinished">Tools Overview</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation type="unfinished">Video import and convert (all types)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation type="unfinished">Video Import (.webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation type="unfinished">GIF Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation type="unfinished">QML Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation type="unfinished">HTML5 Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation type="unfinished">Website Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation type="unfinished">QML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation type="unfinished">HTML Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation type="unfinished">Set Wallpaper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation type="unfinished">Set Widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation type="unfinished">Headline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation type="unfinished">Select a Monitor to display the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation type="unfinished">Set Volume</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation type="unfinished">Fill Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation type="unfinished">Stretch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation type="unfinished">Fill</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation type="unfinished">Contain</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished">Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation type="unfinished">Scale-Down</translation>
|
||||
</message>
|
||||
@ -1286,43 +1412,38 @@
|
||||
<source>Size: </source>
|
||||
<translation type="unfinished">Size: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation type="unfinished"> MB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation type="unfinished">No description...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation type="unfinished">Click here if you like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation type="unfinished">Click here if you do not like the content</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation type="unfinished">Subscribtions: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation type="unfinished">Open In Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation type="unfinished">Subscribed!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation type="unfinished">Subscribe</translation>
|
||||
</message>
|
||||
@ -1331,13 +1452,13 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation type="unfinished">Free Tools to create wallpaper</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished">Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1483,12 +1604,12 @@
|
||||
<translation type="unfinished">Add tag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Cancel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation type="unfinished">Add Tag</translation>
|
||||
</message>
|
||||
@ -1822,7 +1943,7 @@
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation type="unfinished">Password Required T oKick Session</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="vi" sourcelanguage="en">
|
||||
<TS version="2.1" language="vi_VN" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -218,37 +218,37 @@
|
||||
<translation>Chuyển đổi một video sang ảnh động</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Đang tạo ra video xem trước...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Tên (bắt buộc!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Mô tả</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>Link YouTube</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation>Hủy bỏ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation>Lưu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Lưu hình nền...</translation>
|
||||
</message>
|
||||
@ -304,17 +304,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation>Xóa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation>Chọn một tệp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation>Xin hãy chọn một tệp</translation>
|
||||
</message>
|
||||
@ -340,37 +340,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation>Nhập một ảnh động gif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation>Thả một tệp *.gif vào đây hoặc nhấn nút 'Chọn một tệp' ở dưới đây.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation>Chọn gif của bạn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation>Chung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation>Tên ảnh động</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation>Đươc tạo bởi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation>Thẻ</translation>
|
||||
</message>
|
||||
@ -525,37 +525,37 @@
|
||||
<translation>Nhập một video vào hình nền</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>Đang tạo ra video xem trước...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>Tên (bắt buộc!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>Mô tả</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>Link YouTube</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation>Hủy bỏ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation>Lưu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>Lưu hình nền...</translation>
|
||||
</message>
|
||||
@ -593,6 +593,127 @@
|
||||
<translation>Chọn một tệp</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">Đang xử lý video...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished">Đang tạo ra ảnh xem trước...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished">Đang tạo ra hình thu nhỏ xem trước...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished">Đang tao ra video 5 giây xem trước...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished">Đang tạo ra gif xem trước...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished">Đang chuyển đổi dạng âm thanh...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished">Đang chuyển đổi dạng video... Việc này có thể tốn kha khá thời gian!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished">Đã có lỗi xảy ra khi chuyển đổi dạng video!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished">Đã có lỗi xảy ra khi đang xử lý video!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">Nhập một video vào hình nền</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">Đang tạo ra video xem trước...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">Tên (bắt buộc!)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">Mô tả</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Link YouTube</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished">Hủy bỏ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Lưu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">Lưu hình nền...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished">Mở tài liệu tham khảo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -601,43 +722,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation>Đang làm mới!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation>Kéo xuống để làm mới!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation>Lấy thêm nhiều hình nền & widgets từ Steam Workshop!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation>Mở thư mục chứa hình nền.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation>Xóa hình nền</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation>Xóa nhờ Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation>Mở trang workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation>Bạn có chắc chắn muốn xóa hình nền này không?</translation>
|
||||
</message>
|
||||
@ -645,12 +766,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation>Lấy thêm nhiều hình nền & widgets từ Steam Workshop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation>Duyệt qua Steam Workshop</translation>
|
||||
</message>
|
||||
@ -749,32 +870,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation>Tất cả</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation>Cảnh</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation>Videos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation>Widgets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation>Ngày cài đặt tăng dần</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation>Ngày cài đặt giảm dần</translation>
|
||||
</message>
|
||||
@ -940,7 +1061,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation>MỚI</translation>
|
||||
</message>
|
||||
@ -1006,167 +1127,167 @@
|
||||
<translation>Đường dẫn lưu trữ của bạn đang trống!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation>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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation>Ngôn ngữ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation>Đặt ngôn ngữ của ScreenPlay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation>Chủ đề</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation>Chuyển chủ để sáng/tôí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation>Mặc định theo hệ thống</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation>Tối</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation>Sáng</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation>Hiệu suất</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation>Tạm dừng ảnh nền video khi có một ứng dụng khác đang mở phía trước</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation>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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation>Cách lấp đầy mặc định</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation>Đặ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.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation>Kéo dài</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation>Lấp đầy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation>Chứa đựng</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation>Bao phủ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation>Giảm tỉ lệ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation>Về ứng dụng</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation>Cảm ơn bạn vì đã sử dụng ScreenPlay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation>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:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation>Phiên bản</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation>Bản dựng của ScreenPlay </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation>Mở nhật kí thay đổi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation>Phần mềm của bên thứ ba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation>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: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation>Bản quyền</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation>Nhật kí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation>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</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation>Hiện nhật kí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation>Bảo vệ dữ liệu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation>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!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation>Quyền riêng tư</translation>
|
||||
</message>
|
||||
@ -1174,7 +1295,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation>Sao chép vào khay nhớ tạm</translation>
|
||||
</message>
|
||||
@ -1182,102 +1303,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation>Tổng quan về công cụ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation>Nhập video và chuyển đổi (tất cả các loại)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation>Nhập video (.webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation>Hình nền GIF</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation>Hình nền QML</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation>Hình nền HTML5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation>Trang chủ của hình nền</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation>Widget QML</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation>Widget HTML</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation>Đặt hình nền</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation>Đặt widget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation>Tiêu đề</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation>Chọn một màn hình để hiển thị nội dung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation>Chỉnh âm lượng</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation>Cách lấp đầy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation>Kéo dài</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation>Lấp đầy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation>Chứa đựng</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation>Bao phủ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation>Giảm tỉ lệ</translation>
|
||||
</message>
|
||||
@ -1286,43 +1412,38 @@
|
||||
<source>Size: </source>
|
||||
<translation>Kích cỡ: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation>MB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation>Không có mô tả...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation>Bấm vào đây nếu như bạn thích nội dung này</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation>Bấm vào đây nếu như bạn không thích nội dung này</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation>Đăng ký: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation>Mở trong Steam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation>Đã đăng kí!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation>Đăng kí</translation>
|
||||
</message>
|
||||
@ -1331,13 +1452,13 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation>Những công cụ miễn phí để tạo hình nền</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation>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!</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1483,12 +1604,12 @@
|
||||
<translation>Thêm thẻ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Hủy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation>Thêm thẻ</translation>
|
||||
</message>
|
||||
@ -1822,7 +1943,7 @@
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation>Cần mật khẩu để thoát phiên khác</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="zh-CN" sourcelanguage="en">
|
||||
<TS version="2.1" language="zh_CN" sourcelanguage="en">
|
||||
<context>
|
||||
<name>ColorPicker</name>
|
||||
<message>
|
||||
@ -218,37 +218,37 @@
|
||||
<translation>将视频转换为壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="220"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="219"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>生成预览视频...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>名称(必选)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>简介</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>Youtube 链接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="328"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="327"/>
|
||||
<source>Abort</source>
|
||||
<translation>中止</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="341"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="340"/>
|
||||
<source>Save</source>
|
||||
<translation>保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="378"/>
|
||||
<location filename="../qml/Create/Wizards/ImportVideoAndConvert/CreateWallpaperVideoImportConvert.qml" line="377"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>保存壁纸...</translation>
|
||||
</message>
|
||||
@ -304,17 +304,17 @@
|
||||
<context>
|
||||
<name>FileSelector</name>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="103"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="102"/>
|
||||
<source>Clear</source>
|
||||
<translation>清空</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="123"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="122"/>
|
||||
<source>Select File</source>
|
||||
<translation>选择文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="142"/>
|
||||
<location filename="../qml/Common/FileSelector.qml" line="141"/>
|
||||
<source>Please choose a file</source>
|
||||
<translation>请选择文件</translation>
|
||||
</message>
|
||||
@ -340,37 +340,37 @@
|
||||
<context>
|
||||
<name>GifWallpaper</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="26"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="25"/>
|
||||
<source>Import a Gif Wallpaper</source>
|
||||
<translation>导入 GIF 壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="82"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="81"/>
|
||||
<source>Drop a *.gif file here or use 'Select file' below.</source>
|
||||
<translation>拖放一个 *.gif 文件到这里,或者使用下面的 '选择文件'。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="105"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="111"/>
|
||||
<source>Select your gif</source>
|
||||
<translation>选择您的 GIF</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="120"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="126"/>
|
||||
<source>General</source>
|
||||
<translation>常规</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="127"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="133"/>
|
||||
<source>Wallpaper name</source>
|
||||
<translation>壁纸名称</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="135"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="141"/>
|
||||
<source>Created By</source>
|
||||
<translation>作者</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="145"/>
|
||||
<location filename="../qml/Create/Wizards/GifWallpaper.qml" line="151"/>
|
||||
<source>Tags</source>
|
||||
<translation>标签</translation>
|
||||
</message>
|
||||
@ -525,37 +525,37 @@
|
||||
<translation>将视频导入为壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="216"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation>生成预览视频...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="276"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation>名称(必选)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="290"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation>简介</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="298"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation>Youtube 链接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="329"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation>中止</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="342"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation>保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="376"/>
|
||||
<location filename="../qml/Create/Wizards/ImportWebm/ImportWebmConvert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation>保存壁纸...</translation>
|
||||
</message>
|
||||
@ -593,6 +593,127 @@
|
||||
<translation>选择文件</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Convert</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="43"/>
|
||||
<source>AnalyseVideo...</source>
|
||||
<translation type="unfinished">分析视频...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="46"/>
|
||||
<source>Generating preview image...</source>
|
||||
<translation type="unfinished">生成预览图...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="49"/>
|
||||
<source>Generating preview thumbnail image...</source>
|
||||
<translation type="unfinished">生成预览缩略图...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="56"/>
|
||||
<source>Generating 5 second preview video...</source>
|
||||
<translation type="unfinished">生成5秒预览视频...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="59"/>
|
||||
<source>Generating preview gif...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="68"/>
|
||||
<source>Converting Audio...</source>
|
||||
<translation type="unfinished">转换音频...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="71"/>
|
||||
<source>Converting Video... This can take some time!</source>
|
||||
<translation type="unfinished">转换视频... 这可能需要一些时间!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="74"/>
|
||||
<source>Converting Video ERROR!</source>
|
||||
<translation type="unfinished">转换视频出错!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="77"/>
|
||||
<source>Analyse Video ERROR!</source>
|
||||
<translation type="unfinished">分析视频出错!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="106"/>
|
||||
<source>Import a video to a wallpaper</source>
|
||||
<translation type="unfinished">将视频导入为壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="215"/>
|
||||
<source>Generating preview video...</source>
|
||||
<translation type="unfinished">生成预览视频...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="275"/>
|
||||
<source>Name (required!)</source>
|
||||
<translation type="unfinished">名称(必选)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="289"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished">简介</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="297"/>
|
||||
<source>Youtube URL</source>
|
||||
<translation type="unfinished">Youtube 链接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="328"/>
|
||||
<source>Abort</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="341"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Convert.qml" line="375"/>
|
||||
<source>Save Wallpaper...</source>
|
||||
<translation type="unfinished">保存壁纸...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Importh264Init</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="32"/>
|
||||
<source>Import a .mp4 video</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="48"/>
|
||||
<source>ScreenPlay V0.15 and up can play *.mp4 (also more known as h264). This can improove performance on older systems.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="76"/>
|
||||
<source>Invalid file type. Must be valid h264 (*.mp4)!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="100"/>
|
||||
<source>Drop a *.mp4 file here or use 'Select file' below.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="121"/>
|
||||
<source>Open Documentation</source>
|
||||
<translation type="unfinished">打开文档</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Wizards/Importh264/Importh264Init.qml" line="140"/>
|
||||
<source>Select file</source>
|
||||
<translation type="unfinished">选择文件</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Installed</name>
|
||||
<message>
|
||||
@ -601,43 +722,43 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="162"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="161"/>
|
||||
<source>Refreshing!</source>
|
||||
<translation>刷新中!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="165"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="180"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="179"/>
|
||||
<source>Pull to refresh!</source>
|
||||
<translation>下拉以刷新!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="210"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="209"/>
|
||||
<source>Get more Wallpaper & Widgets via the Steam workshop!</source>
|
||||
<translation>从创意工坊获取更多壁纸和物件!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="275"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="274"/>
|
||||
<source>Open containing folder</source>
|
||||
<translation>打开文件夹</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove Item</source>
|
||||
<translation>删除物品</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="285"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="284"/>
|
||||
<source>Remove via Workshop</source>
|
||||
<translation>从创意工坊中删除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="295"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="294"/>
|
||||
<source>Open Workshop Page</source>
|
||||
<translation>打开创意工坊页面</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Installed.qml" line="307"/>
|
||||
<location filename="../qml/Installed/Installed.qml" line="306"/>
|
||||
<source>Are you sure you want to delete this item?</source>
|
||||
<translation>您确定要删除此物品?</translation>
|
||||
</message>
|
||||
@ -645,12 +766,12 @@
|
||||
<context>
|
||||
<name>InstalledWelcomeScreen</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="79"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="78"/>
|
||||
<source>Get free Widgets and Wallpaper via the Steam Workshop</source>
|
||||
<translation>从创意工坊免费获取物件和壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="115"/>
|
||||
<location filename="../qml/Installed/InstalledWelcomeScreen.qml" line="114"/>
|
||||
<source>Browse the Steam Workshop</source>
|
||||
<translation>浏览创意工坊</translation>
|
||||
</message>
|
||||
@ -749,32 +870,32 @@
|
||||
<context>
|
||||
<name>Navigation</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="61"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="60"/>
|
||||
<source>All</source>
|
||||
<translation>全部</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="80"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="79"/>
|
||||
<source>Scenes</source>
|
||||
<translation>场景</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="99"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="98"/>
|
||||
<source>Videos</source>
|
||||
<translation>视频</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="118"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="117"/>
|
||||
<source>Widgets</source>
|
||||
<translation>物件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Ascending</source>
|
||||
<translation>安装日期↓</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="164"/>
|
||||
<location filename="../qml/Installed/Navigation.qml" line="163"/>
|
||||
<source>Install Date Descending</source>
|
||||
<translation>安装日期↑</translation>
|
||||
</message>
|
||||
@ -940,7 +1061,7 @@
|
||||
<context>
|
||||
<name>ScreenPlayItem</name>
|
||||
<message>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="199"/>
|
||||
<location filename="../qml/Installed/ScreenPlayItem.qml" line="198"/>
|
||||
<source>NEW</source>
|
||||
<translation type="unfinished">NEW</translation>
|
||||
</message>
|
||||
@ -1006,167 +1127,167 @@
|
||||
<translation>您的存储路径是空的!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="139"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="137"/>
|
||||
<source>Important: Changing this directory has no effect on the workshop download path. ScreenPlay only supports having one content folder!</source>
|
||||
<translation>注意:修改此目录并不影响创意工坊的下载路径。ScreenPlay仅支持单个内容文件夹!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="161"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="159"/>
|
||||
<source>Language</source>
|
||||
<translation>语言</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="162"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="160"/>
|
||||
<source>Set the ScreenPlay UI Language</source>
|
||||
<translation>设置ScreenPlay界面语言</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="219"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="217"/>
|
||||
<source>Theme</source>
|
||||
<translation>主题</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="220"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="218"/>
|
||||
<source>Switch dark/light theme</source>
|
||||
<translation>切换到暗/亮主题</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="228"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="226"/>
|
||||
<source>System Default</source>
|
||||
<translation>跟随系统</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="231"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="229"/>
|
||||
<source>Dark</source>
|
||||
<translation>暗</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="234"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="232"/>
|
||||
<source>Light</source>
|
||||
<translation>亮</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="252"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="250"/>
|
||||
<source>Performance</source>
|
||||
<translation>性能</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="271"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="269"/>
|
||||
<source>Pause wallpaper video rendering while another app is in the foreground</source>
|
||||
<translation>当其他应用程序在前台时,暂停壁纸视频渲染</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="272"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="270"/>
|
||||
<source>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!</source>
|
||||
<translation>我们禁用视频渲染(不是音频)以获得最佳性能。如果您有问题,可以在此处禁用此行为。 需要重启壁纸!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="285"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="283"/>
|
||||
<source>Default Fill Mode</source>
|
||||
<translation>默认填充模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="286"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="284"/>
|
||||
<source>Set this property to define how the video is scaled to fit the target area.</source>
|
||||
<translation>设置此属性可定义视频的缩放方式以适应目标区域。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="295"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="293"/>
|
||||
<source>Stretch</source>
|
||||
<translation>拉伸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="298"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="296"/>
|
||||
<source>Fill</source>
|
||||
<translation>填充</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="301"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="299"/>
|
||||
<source>Contain</source>
|
||||
<translation>适应</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="304"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="302"/>
|
||||
<source>Cover</source>
|
||||
<translation>平铺</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="307"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="305"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation>裁剪</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="322"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="320"/>
|
||||
<source>About</source>
|
||||
<translation>关于</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="354"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="352"/>
|
||||
<source>Thank you for using ScreenPlay</source>
|
||||
<translation>感谢您的使用</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="372"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="370"/>
|
||||
<source>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:</source>
|
||||
<translation>您好,我是Elias Steurer,也叫Kelteseth,我是ScreenPlay的开发者。感谢您使用我的软件。您可以在这里关注我,接收ScreenPlay的更新。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="480"/>
|
||||
<source>Version</source>
|
||||
<translation>版本</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="483"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="481"/>
|
||||
<source>ScreenPlay Build Version </source>
|
||||
<translation>ScreenPlay编译版本 </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="484"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="482"/>
|
||||
<source>Open Changelog</source>
|
||||
<translation>打开更改日志。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="490"/>
|
||||
<source>Third Party Software</source>
|
||||
<translation>第三方软件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="493"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="491"/>
|
||||
<source>ScreenPlay would not be possible without the work of others. A big thank you to: </source>
|
||||
<translation>ScreenPlay离不开一些人的帮助。非常感谢你们:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="494"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="492"/>
|
||||
<source>Licenses</source>
|
||||
<translation>许可证</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="516"/>
|
||||
<source>Logs</source>
|
||||
<translation>日志</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="519"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="517"/>
|
||||
<source>If your ScreenPlay missbehaves this is a good way to look for answers. This shows all logs and warning during runtime.</source>
|
||||
<translation>如果您的ScreenPlay出错,这是个很好的查错方式。它显示所有的日志和运行时警告。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="520"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="518"/>
|
||||
<source>Show Logs</source>
|
||||
<translation>显示日志</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="534"/>
|
||||
<source>Data Protection</source>
|
||||
<translation>数据保护</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="537"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="535"/>
|
||||
<source>We use you data very carefully to improve ScreenPlay. We do not sell or share this (anonymous) information with others!</source>
|
||||
<translation>我们使用您的数据提升ScreenPlay的体验。我们承诺不出售或分享这些匿名信息!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Settings/Settings.qml" line="538"/>
|
||||
<location filename="../qml/Settings/Settings.qml" line="536"/>
|
||||
<source>Privacy</source>
|
||||
<translation>隐私</translation>
|
||||
</message>
|
||||
@ -1174,7 +1295,7 @@
|
||||
<context>
|
||||
<name>SettingsExpander</name>
|
||||
<message>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="65"/>
|
||||
<location filename="../qml/Settings/SettingsExpander.qml" line="64"/>
|
||||
<source>Copy text to clipboard</source>
|
||||
<translation>复制文本至剪贴板</translation>
|
||||
</message>
|
||||
@ -1182,102 +1303,107 @@
|
||||
<context>
|
||||
<name>Sidebar</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="56"/>
|
||||
<source>Tools Overview</source>
|
||||
<translation>工具概览</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="126"/>
|
||||
<source>Video import and convert (all types)</source>
|
||||
<translation type="unfinished">Video import and convert (all types)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="63"/>
|
||||
<source>Video Import h264 (.mp4)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="133"/>
|
||||
<source>Video Import (.webm)</source>
|
||||
<translation>视频导入 (.webm)</translation>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="70"/>
|
||||
<source>Video Import VP8 & VP9 (.webm)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="140"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="77"/>
|
||||
<source>Video import (all types)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="84"/>
|
||||
<source>GIF Wallpaper</source>
|
||||
<translation>GIF 壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="147"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="91"/>
|
||||
<source>QML Wallpaper</source>
|
||||
<translation>QML 壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="154"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="98"/>
|
||||
<source>HTML5 Wallpaper</source>
|
||||
<translation>HTML5 壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="161"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="105"/>
|
||||
<source>Website Wallpaper</source>
|
||||
<translation>网页壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="168"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="112"/>
|
||||
<source>QML Widget</source>
|
||||
<translation>QML 部件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="175"/>
|
||||
<location filename="../qml/Create/Sidebar.qml" line="119"/>
|
||||
<source>HTML Widget</source>
|
||||
<translation>HTML 部件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="75"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="74"/>
|
||||
<source>Set Wallpaper</source>
|
||||
<translation>设置壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="78"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="77"/>
|
||||
<source>Set Widget</source>
|
||||
<translation>设置物件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="211"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="210"/>
|
||||
<source>Headline</source>
|
||||
<translation>标题</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="269"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="268"/>
|
||||
<source>Select a Monitor to display the content</source>
|
||||
<translation>选择显示此内容的显示器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="300"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="299"/>
|
||||
<source>Set Volume</source>
|
||||
<translation>设置音量</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="319"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="318"/>
|
||||
<source>Fill Mode</source>
|
||||
<translation>填充模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="338"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="337"/>
|
||||
<source>Stretch</source>
|
||||
<translation>拉伸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="341"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="340"/>
|
||||
<source>Fill</source>
|
||||
<translation>填充</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="344"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="343"/>
|
||||
<source>Contain</source>
|
||||
<translation>适应</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="347"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="346"/>
|
||||
<source>Cover</source>
|
||||
<translation>平铺</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="350"/>
|
||||
<location filename="../qml/Installed/Sidebar.qml" line="349"/>
|
||||
<source>Scale-Down</source>
|
||||
<translation>裁剪</translation>
|
||||
</message>
|
||||
@ -1286,43 +1412,38 @@
|
||||
<source>Size: </source>
|
||||
<translation>大小:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="81"/>
|
||||
<source> MB</source>
|
||||
<translation> 兆字节</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="87"/>
|
||||
<source>No description...</source>
|
||||
<translation>没有简介...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="249"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="243"/>
|
||||
<source>Click here if you like the content</source>
|
||||
<translation>如果您喜欢它,点这里!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="264"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="258"/>
|
||||
<source>Click here if you do not like the content</source>
|
||||
<translation>如果您不喜欢它,点这里</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="334"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="323"/>
|
||||
<source>Subscribtions: </source>
|
||||
<translation>订阅:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="402"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="386"/>
|
||||
<source>Open In Steam</source>
|
||||
<translation>在Steam打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribed!</source>
|
||||
<translation>已订阅!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="412"/>
|
||||
<location filename="../qml/Workshop/Sidebar.qml" line="397"/>
|
||||
<source>Subscribe</source>
|
||||
<translation>订阅</translation>
|
||||
</message>
|
||||
@ -1331,13 +1452,13 @@
|
||||
<name>StartInfo</name>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="19"/>
|
||||
<source>Free Tools to create wallpaper</source>
|
||||
<translation>免费的壁纸创建工具</translation>
|
||||
<source>Free tools to help you to create wallpaper</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Create/StartInfo.qml" line="36"/>
|
||||
<source>Below you can find tools to create wallaper beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation>下面你可以找到ScreenPlay所提供的以外的工具来创建wallaper。</translation>
|
||||
<source>Below you can find tools to create wallaper, beyond the tools that ScreenPlay provides for you!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1483,12 +1604,12 @@
|
||||
<translation>添加标签</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="132"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="129"/>
|
||||
<source>Cancel</source>
|
||||
<translation>取消</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="155"/>
|
||||
<location filename="../qml/Common/TagSelector.qml" line="151"/>
|
||||
<source>Add Tag</source>
|
||||
<translation>添加标签</translation>
|
||||
</message>
|
||||
@ -1822,7 +1943,7 @@
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="172"/>
|
||||
<source>Password Required To Kick Session</source>
|
||||
<translation>需要密码才能启动会话</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Workshop/upload/UploadProjectItem.qml" line="175"/>
|
||||
|
@ -9,11 +9,13 @@ find_package(
|
||||
COMPONENTS Quick Network Core
|
||||
REQUIRED)
|
||||
|
||||
set(src src/screenplay-sdk_plugin.cpp src/screenplaysdk.cpp)
|
||||
set(SOURCES # cmake-format: sortable
|
||||
src/screenplay-sdk_plugin.cpp src/screenplaysdk.cpp)
|
||||
|
||||
set(headers inc/screenplay-sdk_plugin.h inc/screenplaysdk.h)
|
||||
set(HEADER # cmake-format: sortable
|
||||
inc/screenplay-sdk_plugin.h inc/screenplaysdk.h)
|
||||
|
||||
add_library(${PROJECT_NAME} ${src} ${headers})
|
||||
add_library(${PROJECT_NAME} ${SOURCES} ${HEADER})
|
||||
|
||||
target_include_directories(${PROJECT_NAME} PUBLIC inc)
|
||||
|
||||
|
@ -1,2 +0,0 @@
|
||||
module ScreenPlay.screenplaysdk
|
||||
plugin ScreenPlaySDK
|
@ -9,48 +9,27 @@ find_package(
|
||||
COMPONENTS Quick Core
|
||||
REQUIRED)
|
||||
|
||||
set(src screenplayshader_plugin.cpp shaderlibrary.cpp)
|
||||
set(SOURCES # cmake-format: sortable
|
||||
screenplayshader_plugin.cpp shaderlibrary.cpp)
|
||||
|
||||
set(headers screenplayshader_plugin.h shaderlibrary.h)
|
||||
set(HEADER # cmake-format: sortable
|
||||
screenplayshader_plugin.h shaderlibrary.h)
|
||||
|
||||
set(shader shader.qrc)
|
||||
qt_add_resources(RESOURCES Resources.qrc)
|
||||
|
||||
add_library(${PROJECT_NAME} SHARED ${src} ${headers} ${shader})
|
||||
add_library(${PROJECT_NAME} SHARED ${SOURCES} ${HEADER} ${RESOURCES})
|
||||
|
||||
target_include_directories(${PROJECT_NAME} PUBLIC inc)
|
||||
qt_add_qml_module(
|
||||
${PROJECT_NAME}
|
||||
URI
|
||||
${PROJECT_NAME}
|
||||
VERSION
|
||||
1.0
|
||||
QML_FILES
|
||||
ShadertoyShader.qml)
|
||||
|
||||
# QML module deployment
|
||||
set(URI "ScreenPlay/Shader")
|
||||
string(REPLACE "." "/" TARGETPATH ${URI})
|
||||
if(NOT DEFINED QT_QMAKE_EXECUTABLE)
|
||||
get_target_property(QT_QMAKE_EXECUTABLE Qt6::qmake IMPORTED_LOCATION)
|
||||
if(NOT QT_QMAKE_EXECUTABLE)
|
||||
message(FATAL_ERROR "Cannot find qmake")
|
||||
endif()
|
||||
endif()
|
||||
target_include_directories(${PROJECT_NAME} PRIVATE inc)
|
||||
|
||||
execute_process(COMMAND ${QT_QMAKE_EXECUTABLE} -query QT_INSTALL_QML OUTPUT_VARIABLE QT_INSTALL_QML_RAW)
|
||||
string(STRIP ${QT_INSTALL_QML_RAW} QT_INSTALL_QML)
|
||||
set(DESTDIR "${QT_INSTALL_QML}/${TARGETPATH}")
|
||||
message("DESTDIR ${DESTDIR}")
|
||||
|
||||
file(MAKE_DIRECTORY ${DESTDIR})
|
||||
|
||||
configure_file(qmldir ${DESTDIR} COPYONLY)
|
||||
|
||||
if(APPLE)
|
||||
add_custom_command(
|
||||
TARGET ${PROJECT_NAME}
|
||||
POST_BUILD
|
||||
COMMENT "Copying into ScreenPlay.app bundle"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/bin/$<TARGET_FILE_NAME:${PROJECT_NAME}>
|
||||
${CMAKE_BINARY_DIR}/bin/ScreenPlay.app/Contents/MacOS/$<TARGET_FILE_NAME:${PROJECT_NAME}>)
|
||||
else()
|
||||
# Copies ScreenPlayShader.* into qt qml plugins folder
|
||||
add_custom_command(
|
||||
TARGET ${PROJECT_NAME}
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:ScreenPlayShader> ${DESTDIR}/$<TARGET_FILE_NAME:ScreenPlayShader>)
|
||||
endif()
|
||||
target_compile_definitions(${PROJECT_NAME} PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG>)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE Qt6::Core Qt6::Quick Qt6::Gui)
|
||||
|
@ -1,2 +0,0 @@
|
||||
module ScreenPlay.Shader
|
||||
plugin ScreenPlayShader
|
@ -11,7 +11,8 @@ find_package(
|
||||
COMPONENTS Quick Core
|
||||
REQUIRED)
|
||||
|
||||
set(src
|
||||
set(SOURCES
|
||||
# cmake-format: sortable
|
||||
screenplaysysinfo_plugin.cpp
|
||||
sysinfo.cpp
|
||||
cpu.cpp
|
||||
@ -20,7 +21,8 @@ set(src
|
||||
uptime.cpp
|
||||
gpu.cpp)
|
||||
|
||||
set(headers
|
||||
set(HEADER
|
||||
# cmake-format: sortable
|
||||
screenplaysysinfo_plugin.h
|
||||
sysinfo.h
|
||||
cpu.h
|
||||
@ -30,31 +32,10 @@ set(headers
|
||||
uptime.h
|
||||
gpu.h)
|
||||
|
||||
add_library(${PROJECT_NAME} SHARED ${src} ${headers})
|
||||
add_library(${PROJECT_NAME} SHARED ${SOURCES} ${HEADER})
|
||||
|
||||
# QML module deployment
|
||||
set(URI "ScreenPlay/Sysinfo")
|
||||
string(REPLACE "." "/" TARGETPATH ${URI})
|
||||
if(NOT DEFINED QT_QMAKE_EXECUTABLE)
|
||||
get_target_property(QT_QMAKE_EXECUTABLE Qt6::qmake IMPORTED_LOCATION)
|
||||
if(NOT QT_QMAKE_EXECUTABLE)
|
||||
message(FATAL_ERROR "Cannot find qmake")
|
||||
endif()
|
||||
endif()
|
||||
qt_add_qml_module(${PROJECT_NAME} URI ${PROJECT_NAME} VERSION 1.0)
|
||||
|
||||
execute_process(COMMAND ${QT_QMAKE_EXECUTABLE} -query QT_INSTALL_QML OUTPUT_VARIABLE QT_INSTALL_QML_RAW)
|
||||
string(STRIP ${QT_INSTALL_QML_RAW} QT_INSTALL_QML)
|
||||
set(DESTDIR "${QT_INSTALL_QML}/${TARGETPATH}")
|
||||
message("DESTDIR ${DESTDIR}")
|
||||
|
||||
file(MAKE_DIRECTORY ${DESTDIR})
|
||||
|
||||
configure_file(qmldir ${DESTDIR} COPYONLY)
|
||||
|
||||
# Copies ScreenPlaySysInfo.* into qt qml plugins folder
|
||||
add_custom_command(
|
||||
TARGET ${PROJECT_NAME}
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:ScreenPlaySysInfo> ${DESTDIR}/$<TARGET_FILE_NAME:ScreenPlaySysInfo>)
|
||||
target_compile_definitions(${PROJECT_NAME} PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG>)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE Qt6::Core Qt6::Quick infoware)
|
||||
|
@ -1,2 +0,0 @@
|
||||
module ScreenPlay.Sysinfo
|
||||
plugin ScreenPlaySysInfo
|
@ -9,13 +9,17 @@ find_package(
|
||||
COMPONENTS Core
|
||||
REQUIRED)
|
||||
|
||||
set(SOURCES src/util.cpp src/contenttypes.cpp)
|
||||
set(SOURCES # cmake-format: sortable
|
||||
src/util.cpp src/contenttypes.cpp)
|
||||
|
||||
set(HEADER inc/public/ScreenPlayUtil/util.h inc/public/ScreenPlayUtil/contenttypes.h inc/public/ScreenPlayUtil/projectfile.h)
|
||||
set(HEADER # cmake-format: sortable
|
||||
inc/public/ScreenPlayUtil/util.h inc/public/ScreenPlayUtil/contenttypes.h inc/public/ScreenPlayUtil/projectfile.h)
|
||||
|
||||
add_library(${PROJECT_NAME} STATIC ${SOURCES} ${HEADER})
|
||||
|
||||
target_include_directories(
|
||||
${PROJECT_NAME}
|
||||
PUBLIC inc/public/
|
||||
PRIVATE src/)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE Qt6::Core)
|
||||
|
@ -1,5 +0,0 @@
|
||||
#include "util.h"
|
||||
|
||||
Util::Util()
|
||||
{
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
#ifndef UTIL_H
|
||||
#define UTIL_H
|
||||
|
||||
class Util {
|
||||
public:
|
||||
Util();
|
||||
};
|
||||
|
||||
#endif // UTIL_H
|
@ -4,8 +4,6 @@ set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
||||
find_package(QT NAMES Qt6 COMPONENTS Core)
|
||||
|
||||
find_package(
|
||||
Qt6
|
||||
COMPONENTS Core
|
||||
@ -21,30 +19,46 @@ find_package(
|
||||
Positioning)
|
||||
|
||||
if(WIN32)
|
||||
set(src_plattform src/windowsdesktopproperties.cpp src/winwindow.cpp)
|
||||
set(headers_plattform src/windowsdesktopproperties.h src/winwindow.h)
|
||||
set(SOURCES # cmake-format: sortable
|
||||
src/windowsdesktopproperties.cpp src/winwindow.cpp)
|
||||
set(HEADER # cmake-format: sortable
|
||||
src/windowsdesktopproperties.h src/winwindow.h)
|
||||
elseif(APPLE)
|
||||
set(src_plattform src/macintegration.cpp src/macwindow.cpp)
|
||||
set(headers_plattform src/macintegration.h src/macbridge.h src/macwindow.h src/MacBridge.mm)
|
||||
set(SOURCES # cmake-format: sortable
|
||||
src/macintegration.cpp src/macwindow.cpp)
|
||||
set(HEADER # cmake-format: sortable
|
||||
src/macintegration.h src/macbridge.h src/macwindow.h src/MacBridge.mm)
|
||||
elseif(UNIX)
|
||||
set(src_plattform main.cpp src/linuxwindow.cpp)
|
||||
set(headers_plattform src/linuxwindow.h)
|
||||
set(SOURCES # cmake-format: sortable
|
||||
src/linuxwindow.cpp)
|
||||
set(HEADER # cmake-format: sortable
|
||||
src/linuxwindow.h)
|
||||
endif()
|
||||
|
||||
set(src main.cpp src/basewindow.cpp)
|
||||
set(headers src/basewindow.h)
|
||||
set(SOURCES ${SOURCES} main.cpp src/basewindow.cpp)
|
||||
set(HEADER ${HEADER} src/basewindow.h)
|
||||
|
||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
|
||||
qt6_add_resources(resources SPWResources.qrc)
|
||||
else()
|
||||
qt6_add_resources(resources SPWResources.qrc)
|
||||
endif()
|
||||
set(QML # cmake-format: sortable
|
||||
qml/GifWallpaper.qml qml/Test.qml qml/Wallpaper.qml qml/WebsiteWallpaper.qml qml/WebView.qml qml/MultimediaView.qml qml/MultimediaWebView.qml)
|
||||
|
||||
add_executable(${PROJECT_NAME} ${src} ${headers} ${src_plattform} ${headers_plattform} ${resources})
|
||||
qt_add_resources(RESOURCES Resources.qrc)
|
||||
|
||||
add_executable(${PROJECT_NAME} ${SOURCES} ${HEADER} ${RESOURCES})
|
||||
|
||||
qt_add_qml_module(
|
||||
${PROJECT_NAME}
|
||||
URI
|
||||
${PROJECT_NAME}
|
||||
VERSION
|
||||
1.0
|
||||
QML_FILES
|
||||
${QML})
|
||||
|
||||
target_link_libraries(
|
||||
${PROJECT_NAME}
|
||||
PRIVATE Qt6::Quick
|
||||
PRIVATE ScreenPlaySDK
|
||||
ScreenPlayUtil
|
||||
Qt6::Quick
|
||||
Qt6::Gui
|
||||
Qt6::Widgets
|
||||
Qt6::Core
|
||||
@ -54,28 +68,14 @@ target_link_libraries(
|
||||
Qt6::WebEngineCore
|
||||
Qt6::WebEngineQuick)
|
||||
|
||||
if(WIN32)
|
||||
# Disable console window on Windows
|
||||
# https://stackoverflow.com/questions/8249028/how-do-i-keep-my-qt-c-program-from-opening-a-console-in-windows
|
||||
set_property(TARGET ${PROJECT_NAME} PROPERTY WIN32_EXECUTABLE true)
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE shcore.lib)
|
||||
endif()
|
||||
|
||||
if(APPLE)
|
||||
set_target_properties(${PROJECT_NAME} PROPERTIES MACOSX_BUNDLE TRUE MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE "-framework Cocoa")
|
||||
endif()
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE ScreenPlaySDK ScreenPlayUtil)
|
||||
|
||||
if(WIN32)
|
||||
# Disable console window on Windows
|
||||
# https://stackoverflow.com/questions/8249028/how-do-i-keep-my-qt-c-program-from-opening-a-console-in-windows
|
||||
set_property(TARGET ${PROJECT_NAME} PROPERTY WIN32_EXECUTABLE true)
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE shcore.lib)
|
||||
endif()
|
||||
|
||||
if(APPLE)
|
||||
set_target_properties(${PROJECT_NAME} PROPERTIES MACOSX_BUNDLE TRUE MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE "-framework Cocoa")
|
||||
endif()
|
||||
|
7
ScreenPlayWallpaper/Resources.qrc
Normal file
7
ScreenPlayWallpaper/Resources.qrc
Normal file
@ -0,0 +1,7 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>dot.png</file>
|
||||
<file>qtquickcontrols2.conf</file>
|
||||
<file>index.html</file>
|
||||
</qresource>
|
||||
</RCC>
|
@ -1,14 +0,0 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>dot.png</file>
|
||||
<file>qtquickcontrols2.conf</file>
|
||||
<file>index.html</file>
|
||||
<file>qml/GifWallpaper.qml</file>
|
||||
<file>qml/Test.qml</file>
|
||||
<file>qml/Wallpaper.qml</file>
|
||||
<file>qml/WebsiteWallpaper.qml</file>
|
||||
<file>qml/WebView.qml</file>
|
||||
<file>qml/MultimediaView.qml</file>
|
||||
<file>qml/MultimediaWebView.qml</file>
|
||||
</qresource>
|
||||
</RCC>
|
@ -22,16 +22,16 @@ Rectangle {
|
||||
// macOS only supports h264 via the native Qt MM
|
||||
if(Wallpaper.videoCodec === VideoCodec.VP8 || Wallpaper.videoCodec === VideoCodec.VP9){
|
||||
print(Qt.resolvedUrl(Wallpaper.projectSourceFileAbsolute))
|
||||
loader.source = "qrc:/qml/MultimediaWebView.qml";
|
||||
loader.source = "qrc:/ScreenPlayWallpaper/qml/MultimediaWebView.qml";
|
||||
print(loader.status)
|
||||
}else {
|
||||
loader.source = "qrc:/qml/MultimediaView.qml";
|
||||
loader.source = "qrc:/ScreenPlayWallpaper/qml/MultimediaView.qml";
|
||||
}
|
||||
}
|
||||
fadeIn();
|
||||
break;
|
||||
case InstalledType.HTMLWallpaper:
|
||||
loader.setSource("qrc:/qml/WebView.qml", {
|
||||
loader.setSource("qrc:/ScreenPlayWallpaper/qml/WebView.qml", {
|
||||
"url": Qt.resolvedUrl(Wallpaper.projectSourceFileAbsolute)
|
||||
});
|
||||
break;
|
||||
@ -40,13 +40,13 @@ Rectangle {
|
||||
fadeIn();
|
||||
break;
|
||||
case InstalledType.WebsiteWallpaper:
|
||||
loader.setSource("qrc:/qml/WebsiteWallpaper.qml", {
|
||||
loader.setSource("qrc:/ScreenPlayWallpaper/qml/WebsiteWallpaper.qml", {
|
||||
"url": Wallpaper.projectSourceFileAbsolute
|
||||
});
|
||||
fadeIn();
|
||||
break;
|
||||
case InstalledType.GifWallpaper:
|
||||
loader.setSource("qrc:/qml/GifWallpaper.qml", {
|
||||
loader.setSource("qrc:/ScreenPlayWallpaper/qml/GifWallpaper.qml", {
|
||||
"source": Qt.resolvedUrl(Wallpaper.projectSourceFileAbsolute)
|
||||
});
|
||||
fadeIn();
|
||||
@ -109,7 +109,7 @@ Rectangle {
|
||||
if (oldType === InstalledType.VideoWallpaper)
|
||||
return ;
|
||||
|
||||
loader.source = "qrc:/qml/MultimediaView.qml";
|
||||
loader.source = "qrc:/ScreenPlayWallpaper/qml/MultimediaView.qml";
|
||||
}
|
||||
|
||||
target: Wallpaper
|
||||
|
@ -39,7 +39,7 @@ Item {
|
||||
id: webView
|
||||
|
||||
anchors.fill: parent
|
||||
url: "qrc:/index.html"
|
||||
url: "qrc:/ScreenPlayWallpaper/index.html"
|
||||
backgroundColor: "transparent"
|
||||
onJavaScriptConsoleMessage:(lineNumber, message)=> print(lineNumber, message)
|
||||
onLoadProgressChanged: {
|
||||
|
@ -60,7 +60,7 @@ BaseWindow::BaseWindow(
|
||||
|
||||
if (projectFilePath == "test") {
|
||||
setType(ScreenPlay::InstalledType::InstalledType::QMLWallpaper);
|
||||
setProjectSourceFileAbsolute({ "qrc:/qml/Test.qml" });
|
||||
setProjectSourceFileAbsolute({ "qrc:/ScreenPlayWallpaper/qml/Test.qml" });
|
||||
setupLiveReloading();
|
||||
return;
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ MacWindow::MacWindow(
|
||||
m_window.setFlags(flags | Qt::FramelessWindowHint | Qt::Desktop);
|
||||
m_window.setResizeMode(QQuickView::ResizeMode::SizeRootObjectToView);
|
||||
m_window.setTextRenderType(QQuickWindow::TextRenderType::NativeTextRendering);
|
||||
m_window.setSource(QUrl("qrc:/qml/Wallpaper.qml"));
|
||||
m_window.setSource(QUrl("qrc:/ScreenPlayWallpaper/qml/Wallpaper.qml"));
|
||||
|
||||
MacIntegration* macIntegration = new MacIntegration(this);
|
||||
macIntegration->SetBackgroundLevel(&m_window);
|
||||
|
@ -489,7 +489,7 @@ void WinWindow::configureWindowGeometry()
|
||||
// Instead of setting "renderType: Text.NativeRendering" every time we can set it here once
|
||||
m_window.setTextRenderType(QQuickWindow::TextRenderType::NativeTextRendering);
|
||||
m_window.setResizeMode(QQuickView::ResizeMode::SizeRootObjectToView);
|
||||
m_window.setSource(QUrl("qrc:/qml/Wallpaper.qml"));
|
||||
m_window.setSource(QUrl("qrc:/ScreenPlayWallpaper/qml/Wallpaper.qml"));
|
||||
m_window.hide();
|
||||
}
|
||||
|
||||
|
@ -4,10 +4,14 @@ set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
||||
find_package(QT NAMES Qt6 COMPONENTS Core)
|
||||
set(src main.cpp src/widgetwindow.cpp)
|
||||
set(SOURCES # cmake-format: sortable
|
||||
main.cpp src/widgetwindow.cpp)
|
||||
|
||||
set(headers src/widgetwindow.h)
|
||||
set(HEADER # cmake-format: sortable
|
||||
src/widgetwindow.h)
|
||||
|
||||
set(QML # cmake-format: sortable
|
||||
qml/Test.qml qml/Widget.qml)
|
||||
|
||||
find_package(
|
||||
Qt6
|
||||
@ -22,13 +26,15 @@ find_package(
|
||||
WebChannel
|
||||
Positioning)
|
||||
|
||||
qt_add_resources(resources SPWidgetResources.qrc)
|
||||
qt_add_resources(RESOURCES Resources.qrc)
|
||||
|
||||
add_executable(${PROJECT_NAME} ${src} ${headers} ${resources})
|
||||
qt_add_executable(${PROJECT_NAME} ${SOURCES} ${HEADER} ${RESOURCES})
|
||||
|
||||
target_link_libraries(
|
||||
${PROJECT_NAME}
|
||||
PRIVATE Qt6::Quick
|
||||
PRIVATE ScreenPlaySDK
|
||||
ScreenPlayUtil
|
||||
Qt6::Quick
|
||||
Qt6::Gui
|
||||
Qt6::Widgets
|
||||
Qt6::Core
|
||||
@ -37,7 +43,14 @@ target_link_libraries(
|
||||
Qt6::WebEngineCore
|
||||
Qt6::WebEngineQuick)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE ScreenPlaySDK ScreenPlayUtil)
|
||||
qt_add_qml_module(
|
||||
${PROJECT_NAME}
|
||||
URI
|
||||
${PROJECT_NAME}
|
||||
VERSION
|
||||
1.0
|
||||
QML_FILES
|
||||
${QML})
|
||||
|
||||
if(WIN32)
|
||||
# Disable console window on Windows
|
||||
|
@ -4,7 +4,5 @@
|
||||
<file>assets/icons/baseline-close-24px.svg</file>
|
||||
<file>assets/icons/baseline-opacity-24px.svg</file>
|
||||
<file>assets/icons/baseline-settings-20px.svg</file>
|
||||
<file>qml/Test.qml</file>
|
||||
<file>qml/Widget.qml</file>
|
||||
</qresource>
|
||||
</RCC>
|
@ -115,7 +115,7 @@ Item {
|
||||
|
||||
anchors.fill: parent
|
||||
hoverEnabled: true
|
||||
onPressed: {
|
||||
onPressed: (mouse)=>{
|
||||
clickPos = {
|
||||
"x": mouse.x,
|
||||
"y": mouse.y
|
||||
|
@ -71,7 +71,7 @@ WidgetWindow::WidgetWindow(
|
||||
|
||||
m_window.setTextRenderType(QQuickWindow::TextRenderType::NativeTextRendering);
|
||||
m_window.setResizeMode(QQuickView::ResizeMode::SizeViewToRootObject);
|
||||
m_window.setSource(QUrl("qrc:/qml/Widget.qml"));
|
||||
m_window.setSource(QUrl("qrc:/ScreenPlayWidget/qml/Widget.qml"));
|
||||
m_window.setPosition(m_position);
|
||||
m_window.show();
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
project(workshopplugin LANGUAGES CXX)
|
||||
|
||||
add_subdirectory(SteamSDK)
|
||||
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
@ -8,57 +10,55 @@ find_package(
|
||||
COMPONENTS Quick QML Widgets Gui
|
||||
REQUIRED)
|
||||
|
||||
add_library(
|
||||
workshopplugin SHARED
|
||||
src/steamapiwrapper.h
|
||||
set(SOURCES
|
||||
# cmake-format: sortable
|
||||
src/steamapiwrapper.cpp
|
||||
src/steamworkshopitem.cpp
|
||||
src/workshop.cpp
|
||||
src/installedlistmodel.cpp
|
||||
src/screenplayworkshop_plugin.cpp
|
||||
src/steamworkshop.cpp
|
||||
src/steamworkshoplistmodel.cpp
|
||||
src/steamaccount.cpp
|
||||
src/steamqmlimageprovider.cpp)
|
||||
|
||||
set(HEADER
|
||||
# cmake-format: sortable
|
||||
src/steamapiwrapper.h
|
||||
src/steamworkshoplistmodel.h
|
||||
src/uploadlistmodel.h
|
||||
src/steamworkshopitem.h
|
||||
src/steamworkshopitem.cpp
|
||||
src/workshop.cpp
|
||||
src/workshop.h
|
||||
src/workshopitem.h
|
||||
src/installedlistmodel.cpp
|
||||
src/installedlistmodel.h
|
||||
src/screenplayworkshop_plugin.cpp
|
||||
src/screenplayworkshop_plugin.h
|
||||
src/steamworkshop.cpp
|
||||
src/steamworkshop.h
|
||||
src/steamworkshoplistmodel.cpp
|
||||
src/steamaccount.cpp
|
||||
src/steamaccount.h
|
||||
src/steamqmlimageprovider.cpp
|
||||
src/steamqmlimageprovider.h
|
||||
qmldir
|
||||
${qml_resources})
|
||||
src/steamqmlimageprovider.h)
|
||||
|
||||
add_library(${PROJECT_NAME} SHARED ${SOURCES} ${HEADER})
|
||||
|
||||
set(WORKSHOP_PLUGIN_DIR ${CMAKE_BINARY_DIR}/bin/workshop)
|
||||
file(MAKE_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
|
||||
|
||||
set_target_properties(workshopplugin PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
|
||||
set_target_properties(workshopplugin PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
|
||||
set_target_properties(workshopplugin PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
|
||||
set_target_properties(${PROJECT_NAME} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
|
||||
set_target_properties(${PROJECT_NAME} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
|
||||
set_target_properties(${PROJECT_NAME} PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${WORKSHOP_PLUGIN_DIR})
|
||||
|
||||
set(steam_lib_path "${CMAKE_CURRENT_SOURCE_DIR}/SteamSDK/redistributable_bin/")
|
||||
set(STEAM_LIB_PATH "${CMAKE_CURRENT_SOURCE_DIR}/SteamSDK/redistributable_bin/")
|
||||
|
||||
if(WIN32)
|
||||
set(steam_lib "${steam_lib_path}/win64/steam_api64.lib")
|
||||
set(STEAM_LIB "${STEAM_LIB_PATH}/win64/steam_api64.lib")
|
||||
set(STEAM_BIN "${STEAM_LIB_PATH}/win64/steam_api64.dll")
|
||||
elseif(APPLE)
|
||||
set(steam_lib "${steam_lib_path}/osx/libsteam_api.dylib")
|
||||
set(STEAM_LIB "${STEAM_LIB_PATH}/osx/libsteam_api.dylib")
|
||||
set(STEAM_BIN ${STEAM_LIB})
|
||||
elseif(UNIX)
|
||||
set(steam_lib "${steam_lib_path}/linux64/libsteam_api.so")
|
||||
set(STEAM_LIB "${STEAM_LIB_PATH}/linux64/libsteam_api.so")
|
||||
set(STEAM_BIN ${STEAM_LIB})
|
||||
endif()
|
||||
|
||||
target_link_libraries(workshopplugin PRIVATE Qt6::Core Qt6::Quick ${steam_lib} ScreenPlayUtil SteamSDK)
|
||||
|
||||
if(WIN32)
|
||||
set(steam_bin "${steam_lib_path}/win64/steam_api64.dll")
|
||||
elseif(APPLE)
|
||||
set(steam_bin "${steam_lib_path}/osx/libsteam_api.dylib")
|
||||
elseif(UNIX)
|
||||
set(steam_bin "${steam_lib_path}/linux64/libsteam_api.so")
|
||||
endif()
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE Qt6::Core Qt6::Quick ${STEAM_LIB} ScreenPlayUtil SteamSDK)
|
||||
|
||||
if(APPLE)
|
||||
set(workshop_install_dir ${CMAKE_BINARY_DIR}/bin/ScreenPlay.app/Contents/MacOS/Workshop)
|
||||
@ -69,26 +69,20 @@ if(APPLE)
|
||||
COMMAND ${CMAKE_COMMAND} -E make_directory ${workshop_install_dir})
|
||||
|
||||
add_custom_command(
|
||||
TARGET workshopplugin
|
||||
POST_BUILD
|
||||
COMMENT "Copying qmldir info into ScreenPlay.app bundle"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/qmldir ${workshop_install_dir})
|
||||
|
||||
add_custom_command(
|
||||
TARGET workshopplugin
|
||||
TARGET ${PROJECT_NAME}
|
||||
POST_BUILD
|
||||
COMMENT "Copying workshop plugin into ScreenPlay.app bundle"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/Workshop/libworkshopplugin.dylib ${workshop_install_dir})
|
||||
|
||||
add_custom_command(
|
||||
TARGET workshopplugin
|
||||
TARGET ${PROJECT_NAME}
|
||||
POST_BUILD
|
||||
COMMENT "Copying steam library into ScreenPlay.app bundle"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy ${steam_bin} ${workshop_install_dir})
|
||||
COMMAND ${CMAKE_COMMAND} -E copy ${STEAM_BIN} ${workshop_install_dir})
|
||||
|
||||
if(${SCREENPLAY_STEAM})
|
||||
add_custom_command(
|
||||
TARGET workshopplugin
|
||||
TARGET ${PROJECT_NAME}
|
||||
POST_BUILD
|
||||
COMMENT "Copying steam_appid.txt into ScreenPlay.app bundle. This is for development only!"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/steam_appid.txt
|
||||
@ -100,5 +94,5 @@ else()
|
||||
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)
|
||||
configure_file(${steam_bin} ${CMAKE_BINARY_DIR}/bin/ COPYONLY)
|
||||
configure_file(${STEAM_BIN} ${CMAKE_BINARY_DIR}/bin/ COPYONLY)
|
||||
endif()
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,2 +0,0 @@
|
||||
module Workshop
|
||||
plugin workshopplugin
|
Loading…
Reference in New Issue
Block a user