diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ec7a8a..3fc2120 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,6 +17,7 @@ endif() list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake;${CMAKE_CURRENT_SOURCE_DIR}/cmake") +# set(QT Core Gui Widgets Network WebEngine Quick QuickControls2 X11Extras DBus Xml Concurrent LinguistTools) set(QT Core Gui Widgets Network Quick QuickControls2 X11Extras DBus Xml Concurrent LinguistTools) find_package(Qt5 REQUIRED ${QT}) find_package(X11 REQUIRED) @@ -27,7 +28,8 @@ find_package(Libcrypt REQUIRED) find_package(KF5NetworkManagerQt REQUIRED) find_package(KF5ModemManagerQt REQUIRED) find_package(KF5Config) -# find_package(QApt REQUIRED) +find_package(QApt REQUIRED) +# find_package(QtWebEngine REQUIRED) pkg_search_module(FontConfig REQUIRED fontconfig IMPORTED_TARGET) pkg_search_module(ICU REQUIRED icu-i18n) @@ -62,8 +64,10 @@ target_link_libraries(${PROJECT_NAME} Qt5::Xml Qt5::X11Extras Qt5::Concurrent + # Qt5::WebEngine # ::Main Qt5::Network + QApt::Main # LingmoUI KF5::NetworkManagerQt diff --git a/debian/changelog b/debian/changelog index 2b7fd3f..7d57404 100755 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +lingmo-settings (2.1.5-rc1) main; urgency=high + + [Lingmo OS Team] + * update Change Device name Page + + -- Lingm OS Team Tue, 46 Jul 2024 22:06:00 +0800 + +lingmo-settings (2.1.5) main; urgency=high + + [Lingmo OS Team] + * update GET_VERSION + + -- Lingm OS Team Sat, 13 Jul 2024 23:14:00 +0800 + lingmo-settings (2.1.4-1) UNRELEASED; urgency=high [ Elysia ] diff --git a/debian/control b/debian/control index 35b51de..7323181 100755 --- a/debian/control +++ b/debian/control @@ -17,6 +17,9 @@ Build-Depends: cmake, libkf5config-dev, modemmanager-qt-dev, qtbase5-dev, + libqt5webengine5, + qtwebengine5-dev, + network-manager, libqt5x11extras5-dev, qtdeclarative5-dev, qtquickcontrols2-5-dev, @@ -42,6 +45,7 @@ Depends: qml-module-qtquick-controls2, qml-module-qtquick-particles2, curl, openssl, + libqt5webengine5, aria2, gnupg, zenity, diff --git a/src/about.cpp b/src/about.cpp index 2597a13..0b1357c 100755 --- a/src/about.cpp +++ b/src/about.cpp @@ -5,6 +5,7 @@ #include #include #include +#include #ifdef Q_OS_LINUX #include @@ -69,6 +70,11 @@ bool About::isLingmoOS() return settings.value("LingmoOS", false).toBool(); } +QString About::hostName() +{ + return QHostInfo::localHostName(); +} + QString About::version() { QSettings settings("/etc/os-release",QSettings::IniFormat); diff --git a/src/about.h b/src/about.h index 142965d..183eaa5 100755 --- a/src/about.h +++ b/src/about.h @@ -11,6 +11,7 @@ class About : public QObject Q_OBJECT Q_PROPERTY(bool isLingmoOS READ isLingmoOS CONSTANT) Q_PROPERTY(QString version READ version CONSTANT) + Q_PROPERTY(QString hostName READ hostName CONSTANT) Q_PROPERTY(QString systemrelease READ systemrelease CONSTANT) Q_PROPERTY(QString debianversion READ debianversion CONSTANT) Q_PROPERTY(QString desktopversion READ desktopversion CONSTANT) @@ -34,6 +35,7 @@ class About : public QObject bool isLingmoOS(); QString version(); + QString hostName(); QString systemrelease(); QString debianversion(); QString desktopversion(); diff --git a/src/appearance.cpp b/src/appearance.cpp index e590fac..d2a0405 100755 --- a/src/appearance.cpp +++ b/src/appearance.cpp @@ -227,14 +227,14 @@ void Appearance::setFontPointSize(int fontPointSize) } } -void Appearance::setAccentColor(int accentColor) +void Appearance::setAccentColor(int defaultColor) { QDBusInterface iface("com.lingmo.Settings", "/Theme", "com.lingmo.Theme", QDBusConnection::sessionBus(), this); if (iface.isValid()) { - iface.call("setAccentColor", accentColor); + iface.call("setAccentColor", defaultColor); } } diff --git a/src/appearance.h b/src/appearance.h index 9802482..8e980d6 100755 --- a/src/appearance.h +++ b/src/appearance.h @@ -68,7 +68,7 @@ class Appearance : public QObject int fontPointSize() const; Q_INVOKABLE void setFontPointSize(int fontPointSize); - Q_INVOKABLE void setAccentColor(int accentColor); + Q_INVOKABLE void setAccentColor(int defaultColor); int DesktopSettings() const; Q_INVOKABLE void setDesktopIcons(int DesktopSettings); diff --git a/src/application.cpp b/src/application.cpp index fd182a8..be3e7c4 100755 --- a/src/application.cpp +++ b/src/application.cpp @@ -9,6 +9,7 @@ #include #include #include +// #include #include "about.h" #include "accessibility.h" @@ -31,6 +32,9 @@ #include "powermanager.h" #include "settingsuiadaptor.h" #include "touchpad.h" +#include "update/updatemanager.h" +// #include "updatorhelper.h" +// #include "upgradeablemodel.h" const QString ModuleDirectory = "/usr/lib/lingmo-settings/modules"; @@ -90,6 +94,13 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) { qmlRegisterType(uri, 1, 0, "DefaultApplications"); qmlRegisterType(uri, 1, 0, "Accessibility"); qmlRegisterSingletonType(uri, 1, 0, "Password", passwordSingleton); + // qmlRegisterType(uri, 1, 0, "UpdateManager"); + // qmlRegisterType(uri, 1, 0, "Updator"); + // qmlRegisterType(uri, 1, 0, "UpgradeableModel"); + + // if (!QDBusConnection::sessionBus().registerService("com.lingmo.UpdatorGui")) { + // return 0; + // } #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) qmlRegisterType(); #else @@ -115,6 +126,8 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) { m_engine.addImportPath(QStringLiteral("qrc:/")); m_engine.load(QUrl(QStringLiteral("qrc:/qml/main.qml"))); + // m_engine.rootContext()->setContextProperty("upgradeableModel", UpgradeableModel::self()); + if (!module.isEmpty()) { switchToPage(module); } diff --git a/src/battery.cpp b/src/battery.cpp index 0191663..007003f 100755 --- a/src/battery.cpp +++ b/src/battery.cpp @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/battery.h b/src/battery.h index a63bd2d..0a5a2c3 100755 --- a/src/battery.h +++ b/src/battery.h @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/batteryhistorymodel.cpp b/src/batteryhistorymodel.cpp index d9fc62d..c8c9f44 100755 --- a/src/batteryhistorymodel.cpp +++ b/src/batteryhistorymodel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2021 Reion Wong * + * Copyright (C) 2021 Lingmo OS Team * * Copyright (C) 2015 Kai Uwe Broulik * * * * This program is free software; you can redistribute it and/or modify * diff --git a/src/batteryhistorymodel.h b/src/batteryhistorymodel.h index ea2d850..0d74443 100755 --- a/src/batteryhistorymodel.h +++ b/src/batteryhistorymodel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2021 Reion Wong * + * Copyright (C) 2021 Lingmo OS Team * * Copyright (C) 2015 Kai Uwe Broulik * * * * This program is free software; you can redistribute it and/or modify * diff --git a/src/cicontheme.cpp b/src/cicontheme.cpp index 634631e..c92646b 100755 --- a/src/cicontheme.cpp +++ b/src/cicontheme.cpp @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cicontheme.h b/src/cicontheme.h index 69ddeb2..93d863b 100755 --- a/src/cicontheme.h +++ b/src/cicontheme.h @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/images/MundoDark.jpeg b/src/images/MundoDark.jpeg new file mode 100644 index 0000000..fed7b1f Binary files /dev/null and b/src/images/MundoDark.jpeg differ diff --git a/src/images/MundoLight.jpeg b/src/images/MundoLight.jpeg new file mode 100644 index 0000000..27cb30f Binary files /dev/null and b/src/images/MundoLight.jpeg differ diff --git a/src/images/check_failed.svg b/src/images/check_failed.svg new file mode 100755 index 0000000..9db771f --- /dev/null +++ b/src/images/check_failed.svg @@ -0,0 +1,18 @@ + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/src/images/dark/edit.svg b/src/images/dark/edit.svg new file mode 100644 index 0000000..874583e --- /dev/null +++ b/src/images/dark/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/done.svg b/src/images/done.svg new file mode 100755 index 0000000..95ddedf --- /dev/null +++ b/src/images/done.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/laptop.png b/src/images/laptop.png new file mode 100755 index 0000000..a228a37 Binary files /dev/null and b/src/images/laptop.png differ diff --git a/src/images/light/edit.svg b/src/images/light/edit.svg new file mode 100644 index 0000000..cdae328 --- /dev/null +++ b/src/images/light/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/logo.svg b/src/images/logo.svg old mode 100755 new mode 100644 index e8be529..d2e10c0 --- a/src/images/logo.svg +++ b/src/images/logo.svg @@ -1,7 +1,32 @@ - + Created with Pixso. - - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/our-lingmo.svg b/src/images/our-lingmo.svg new file mode 100644 index 0000000..53ca45f --- /dev/null +++ b/src/images/our-lingmo.svg @@ -0,0 +1,28 @@ + + + Created with Pixso. + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/video.mp4 b/src/images/video.mp4 deleted file mode 100755 index 9dc1b80..0000000 Binary files a/src/images/video.mp4 and /dev/null differ diff --git a/src/language.cpp b/src/language.cpp index 4b1943a..bec7271 100755 --- a/src/language.cpp +++ b/src/language.cpp @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/language.h b/src/language.h index d88a4bf..77db861 100755 --- a/src/language.h +++ b/src/language.h @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/main.cpp b/src/main.cpp index 390efd6..a23d093 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -32,6 +32,7 @@ int main(int argc, char *argv[]) { QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps, true); QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling, true); + QCoreApplication::setAttribute(Qt::AA_UseOpenGLES, true); Application app(argc, argv); diff --git a/src/powermanager.cpp b/src/powermanager.cpp index 309e6d2..bbd4638 100755 --- a/src/powermanager.cpp +++ b/src/powermanager.cpp @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/powermanager.h b/src/powermanager.h index 6e57ea7..51ac46e 100755 --- a/src/powermanager.h +++ b/src/powermanager.h @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/qml/About/Main.qml b/src/qml/About/Main.qml index 4bbcbf6..5399fed 100755 --- a/src/qml/About/Main.qml +++ b/src/qml/About/Main.qml @@ -1,6 +1,8 @@ import QtQuick 2.12 import QtQuick.Controls 2.12 import QtQuick.Layouts 1.12 +import QtGraphicalEffects 1.0 +import Lingmo.System 1.0 as System import LingmoUI 1.0 as LingmoUI import Lingmo.Settings 1.0 import "../" @@ -13,6 +15,10 @@ ItemPage { id: about } + System.Wallpaper { + id: wallpaper + } + Scrollable { anchors.fill: parent contentHeight: layout.implicitHeight @@ -21,42 +27,134 @@ ItemPage { id: layout anchors.fill: parent - Item { - height: LingmoUI.Units.largeSpacing - } + SysItem { + id: sysinf + + Image { + id: logo + anchors { + // top: parent.top + // bottom: parent.bottom + verticalCenter: parent.verticalCenter + right: lbt.left + rightMargin: sysinf.width/30 + } + width: 250 + sourceSize: Qt.size(width, height) + source: LingmoUI.Theme.darkMode ? "qrc:/images/logo.svg" : "qrc:/images/logo.svg" + } - Image { - Layout.alignment: Qt.AlignTop | Qt.AlignHCenter - width: 400 - // height: 101 - // Layout.fillWidth: true - sourceSize: Qt.size(width, height) - // For Lingmo OS - source: LingmoUI.Theme.darkMode ? "qrc:/images/logo.png" : "qrc:/images/logo.png" - // For OpenLingmo - // source: LingmoUI.Theme.darkMode ? "qrc:/images/dark/OpenLingmo.png" : "qrc:/images/light/OpenLingmo.png" - } + Rectangle { + id: lbt + anchors { + centerIn: parent + verticalCenter: parent.verticalCenter + } + height: sysinf.height/1.2 + width: 2 + color: LingmoUI.Theme.disabledTextColor + opacity: LingmoUI.Theme.darkMode ? 0.7 : 0.5 + } - Item { - height: LingmoUI.Units.largeSpacing + Rectangle { + id: deviceItem + + anchors { + left: lbt.right + verticalCenter: parent.verticalCenter + leftMargin: sysinf.width/30 + } + width: logo.width/1.2 + height: logo.width/2 + color: LingmoUI.Theme.backgroundColor + border.width: 5 + border.color: LingmoUI.Theme.textColor + radius: LingmoUI.Theme.bigRadius + + Image { + id: _image + width: deviceItem.width - 5 + height: deviceItem.height - 5 + anchors { + verticalCenter: parent.verticalCenter + horizontalCenter: parent.horizontalCenter + } + // source: LingmoUI.Theme.darkMode ? "qrc:/images/MundoDark.jpeg" : "qrc:/images/MundoLight.jpeg" + source: "file://" + wallpaper.path + sourceSize: Qt.size(width, height) + fillMode: Image.PreserveAspectCrop + asynchronous: true + mipmap: true + cache: true + smooth: true + opacity: 1.0 + + Behavior on opacity { + NumberAnimation { + duration: 100 + easing.type: Easing.InOutCubic + } + } + + layer.enabled: true + layer.effect: OpacityMask { + maskSource: Item { + width: _image.width + height: _image.height + Rectangle { + anchors.fill: parent + radius: LingmoUI.Theme.bigRadius + } + } + } + } + + Loader { + id: bgLoader + anchors.fill: parent + + sourceComponent: { + if (background.backgroundType === 0) + return wallpaperItem + + return colorItem + } + } + } } + // RoundedItem { + // StandardItem { + // key: qsTr("OS Version") + // // key: qsTr("System Version") + // value: about.version + // } + + // Horizontalabt {} + + // StandardItem { + // key: qsTr("System Release") + // value: about.systemrelease + // } + // } + RoundedItem { - StandardItem { - key: qsTr("OS Version") - // key: qsTr("System Version") - value: about.version + id: lf + PCname { + id: pcName + key: qsTr("PC Name") + value: about.hostName } Horizontalabt {} StandardItem { - key: qsTr("System Release") - value: about.systemrelease + key: qsTr("System Name") + value: about.version } } - Item { + Item { height: LingmoUI.Units.smallSpacing } diff --git a/src/qml/Battery/HistoryGraph.qml b/src/qml/Battery/HistoryGraph.qml index e514d7c..94bec28 100755 --- a/src/qml/Battery/HistoryGraph.qml +++ b/src/qml/Battery/HistoryGraph.qml @@ -1,6 +1,6 @@ /* * Copyright (C) 2015 David Edmundson - * Copyright (C) 2021 Reion Wong + * Copyright (C) 2021 Lingmo OS Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/qml/ChangeDialog.qml b/src/qml/ChangeDialog.qml new file mode 100644 index 0000000..a5abe62 --- /dev/null +++ b/src/qml/ChangeDialog.qml @@ -0,0 +1,207 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Layouts 1.12 +import QtGraphicalEffects 1.0 +import LingmoUI 1.0 as LingmoUI + +LingmoUI.Window { + id: control + + width: 400 + height: 360 + + maximumWidth: control.width + minimumWidth: control.width + + maximumHeight: control.height + minimumHeight: control.height + + modality: Qt.WindowModal + flags: Qt.Dialog | Qt.FramelessWindowHint + + title: qsTr("Device") + + minimizeButtonVisible: false + // maximizeButtonVisible: false + visible: false + + // property var iconSource + // property string name + // property string description + // property string link: "https://lingmo.org" + // property var contentHeight: _mainLayout.implicitHeight + control.header.height * 2 + + background.opacity: control.compositing ? 0.6 : 1.0 + + LingmoUI.WindowBlur { + view: control + geometry: Qt.rect(control.x, control.y, control.width, control.height) + windowRadius: control.windowRadius + enabled: control.compositing + } + + DragHandler { + target: null + acceptedDevices: PointerDevice.GenericPointer + grabPermissions: PointerHandler.CanTakeOverFromItems | PointerHandler.CanTakeOverFromHandlersOfDifferentType | PointerHandler.ApprovesTakeOverByAnything + onActiveChanged: if (active) { control.helper.startSystemMove(control) } + } + + function clear() { + deviceChange.clear() + } + + ColumnLayout { + id: _mainLayout + anchors.fill: parent + Layout.alignment: Qt.AlignHCenter + Layout.bottomMargin: control.header.height + + // Image { + // width: 64 + // height: 64 + // source: control.iconSource + // sourceSize: Qt.size(64, 64) + // Layout.alignment: Qt.AlignHCenter + // } + + Rectangle { + id: deviceItem + + anchors { + verticalCenter: control.verticalCenter + horizontalCenter: control.horizontalCenter + } + Layout.alignment: Qt.AlignHCenter + width: 207 + height: 125 + color: LingmoUI.Theme.backgroundColor + border.width: 5 + border.color: LingmoUI.Theme.textColor + radius: LingmoUI.Theme.bigRadius + + Image { + id: _image + width: deviceItem.width - 5 + height: deviceItem.height - 5 + anchors { + verticalCenter: deviceItem.verticalCenter + horizontalCenter: deviceItem.horizontalCenter + } + // source: LingmoUI.Theme.darkMode ? "qrc:/images/MundoDark.jpeg" : "qrc:/images/MundoLight.jpeg" + source: "file://" + wallpaper.path + sourceSize: Qt.size(width, height) + fillMode: Image.PreserveAspectCrop + asynchronous: true + mipmap: true + cache: true + smooth: true + opacity: 1.0 + + Behavior on opacity { + NumberAnimation { + duration: 100 + easing.type: Easing.InOutCubic + } + } + + layer.enabled: true + layer.effect: OpacityMask { + maskSource: Item { + width: _image.width + height: _image.height + Rectangle { + anchors.fill: parent + radius: LingmoUI.Theme.bigRadius + } + } + } + } + + // Loader { + // id: bgLoader + // anchors.fill: parent + // sourceComponent: { + // if (background.backgroundType === 0) + // return wallpaperItem + + // return colorItem + // } + // } + } + + Text { + id: pcNv + Layout.alignment: Qt.AlignHCenter + Layout.topMargin: 5 + text: about.hostName + color: LingmoUI.Theme.textColor + font.pointSize: 9 + } + + Item { + height: LingmoUI.Units.largeSpacing + } + + Text { + id: wsa + Layout.alignment: Qt.AlignHCenter + Layout.topMargin: 15 + text: qsTr("Enter your new device name") + color: LingmoUI.Theme.textColor + font.pointSize: 10 + } + + TextField { + id: deviceChange + Layout.alignment: Qt.AlignHCenter + Layout.topMargin: 5 + width: parent.width - 9 + placeholderText: qsTr("New device name") + selectByMouse: true + } + + Item { + Layout.fillHeight: true + Layout.fillWidth: true + } + + Button { + id: btn + enabled: deviceChange.text != "" + // anchors.horizontalCenter: parent.horizontalCenter + // Layout.right: _mainLayout.right + Layout.alignment: Qt.AlignRight + Layout.rightMargin: 20 + flat: true + text: qsTr("Ok") + } + + // Label { + // text: control.name + // Layout.alignment: Qt.AlignHCenter + // font.pointSize: 14 + // } + + // Label { + // text: control.description + // Layout.alignment: Qt.AlignHCenter + // } + + // Label { + // text: "%1".arg(control.link) + // Layout.alignment: Qt.AlignHCenter + // linkColor: LingmoUI.Theme.highlightColor + + // MouseArea { + // anchors.fill: parent + // cursorShape: Qt.PointingHandCursor + // onClicked: Qt.openUrlExternally(control.link) + // } + // } + + Item { + Layout.fillHeight: true + } + } +} diff --git a/src/qml/Hotspot/Main.qml b/src/qml/Hotspot/Main.qml index 2dcba1c..1688657 100755 --- a/src/qml/Hotspot/Main.qml +++ b/src/qml/Hotspot/Main.qml @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/qml/PCname.qml b/src/qml/PCname.qml new file mode 100644 index 0000000..82560df --- /dev/null +++ b/src/qml/PCname.qml @@ -0,0 +1,112 @@ +import QtQuick 2.4 +import QtQuick.Controls 2.4 +import QtQuick.Layouts 1.3 +import QtGraphicalEffects 1.0 +import LingmoUI 1.0 as LingmoUI + +Item { + id: control + + height: mainLayout.implicitHeight + 1 * 2 + + property alias key: keyLabel.text + property alias value: valueLabel.text + + Layout.fillWidth: true + + ChangeDialog { + id: pcDialog + } + + // Dialog { + // id: pcDialog + // visible: true + // title: "Device name" + + // // width: 350 + // // height: 250 + + // Text { + // id: wsa + // anchors.horizontalCenter: parent.horizontalCenter + // anchors.verticalCenter: parent.verticalCenter/2 + // text: qsTr("Enter your new device name") + // color: LingmoUI.Theme.textColor + // font.pointSize: 15 + // } + + // TextField { + // id: deviceChange + // anchors.horizontalCenter: parent.horizontalCenter + // anchors.top: wsa.bottom + // anchors.topMargin: 5 + // width: parent.width - 10 + // placeholderText: qsTr("New device name") + // selectByMouse: true + // } + + // // Button { + // // id: tsd + // // // anchors.bottom: pcDialog.bottom + // // // anchors.bottomMargin: 10 + // // // anchors.right: pcDialog.right + // // // anchors.rightMargin: 12 + // // anchors { + // // top: pcDialog.bottom + // // topMargin: 10 + // // horizontalCenter: parent.horizontalCenter + // // } + // // flat: true + // // text: qsTr("OK") + // // onClicked: { + // // pcDialog.visible = false + // // } + // // } + // } + + Rectangle { + id: background + anchors.fill: parent + color: "transparent" + radius: LingmoUI.Theme.smallRadius + } + + RowLayout { + id: mainLayout + anchors.fill: parent + + Label { + id: keyLabel + color: LingmoUI.Theme.textColor + } + + Item { + Layout.fillWidth: true + } + + Label { + id: valueLabel + color: LingmoUI.Theme.disabledTextColor + } + + Image { + id: editIcon + anchors { + verticalCenter: background.verticalCenter + // left: pcName.right + // leftMargin: 2 + } + // width: 3 + source: LingmoUI.Theme.darkMode ? "qrc:/images/dark/edit.svg" : "qrc:/images/light/edit.svg" + + MouseArea { + id: changePCname + anchors.fill:parent + onClicked: { + pcDialog.visible = true + } + } + } + + } +} diff --git a/src/qml/Proxy/Main.qml b/src/qml/Proxy/Main.qml index d35583f..be23cb6 100755 --- a/src/qml/Proxy/Main.qml +++ b/src/qml/Proxy/Main.qml @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/qml/RoundedItem.qml b/src/qml/RoundedItem.qml index b11f912..e2ae5cb 100755 --- a/src/qml/RoundedItem.qml +++ b/src/qml/RoundedItem.qml @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 LingmoOS Team. + * Copyright (C) 2024 LingmoOS Team. * * Author: revenmartin * diff --git a/src/qml/SideBar.qml b/src/qml/SideBar.qml index f37eb0c..7496b71 100755 --- a/src/qml/SideBar.qml +++ b/src/qml/SideBar.qml @@ -240,6 +240,15 @@ Item { category: qsTr("System") } + // ListElement { + // title: qsTr("System Update") + // name: "systemupdate" + // page: "qrc:/qml/SystemUpdate/Main.qml" + // iconColor: "transparent" + // iconSource: "about.svg" + // category: qsTr("System & Update") + // } + ListElement { title: qsTr("About") name: "about" diff --git a/src/qml/StandardItem.qml b/src/qml/StandardItem.qml index 75bdfdd..d95b896 100755 --- a/src/qml/StandardItem.qml +++ b/src/qml/StandardItem.qml @@ -6,7 +6,7 @@ import LingmoUI 1.0 as LingmoUI Item { id: control - height: mainLayout.implicitHeight + 8 * 2 + height: mainLayout.implicitHeight + 1 * 2 property alias key: keyLabel.text property alias value: valueLabel.text diff --git a/src/qml/SysItem.qml b/src/qml/SysItem.qml new file mode 100644 index 0000000..02c2e20 --- /dev/null +++ b/src/qml/SysItem.qml @@ -0,0 +1,54 @@ +/* + * Copyright (C) 2024 LingmoOS Team. + * + * Author: Lingmo OS Team + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +import QtQuick 2.12 +import QtQuick.Layouts 1.12 +import LingmoUI 1.0 as LingmoUI + +Rectangle { + Layout.fillWidth: true + + default property alias content : _mainLayout.data + property alias spacing: _mainLayout.spacing + property alias layout: _mainLayout + + color: "transparent" + // radius: LingmoUI.Theme.mediumRadius + + Behavior on color { + ColorAnimation { + duration: 200 + easing.type: Easing.Linear + } + } + + implicitHeight: _mainLayout.implicitHeight + + _mainLayout.anchors.topMargin + + _mainLayout.anchors.bottomMargin + + ColumnLayout { + id: _mainLayout + anchors.fill: parent + anchors.leftMargin: LingmoUI.Units.largeSpacing * 1.5 + anchors.rightMargin: LingmoUI.Units.largeSpacing * 1.5 + anchors.topMargin: LingmoUI.Units.largeSpacing + anchors.bottomMargin: LingmoUI.Units.largeSpacing + spacing: LingmoUI.Units.largeSpacing + } +} diff --git a/src/qml/SystemUpdate/FinishedPage.qml b/src/qml/SystemUpdate/FinishedPage.qml new file mode 100755 index 0000000..3cdce3e --- /dev/null +++ b/src/qml/SystemUpdate/FinishedPage.qml @@ -0,0 +1,84 @@ +/* + * Copyright (C) 2024 LingmoOS Team. + * + * Author: Kate Leet + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Layouts 1.12 +import LingmoUI 1.0 as LingmoUI +import Lingmo.Settings 1.0 + +Item { + id: control + + property bool success: rootWindow.updateSuccess + + ColumnLayout { + anchors.fill: parent + anchors.margins: LingmoUI.Units.largeSpacing + + /** + * This function sets the source of the image to the appropriate icon based on the success of the update. + * + * @param success a boolean indicating whether the update was successful or not + */ + Image { + width: 64 + height: 64 + sourceSize: Qt.size(width, height) + source: "image://icontheme/" + (control.success ? "process-completed-symbolic" : "process-error-symbolic") + Layout.alignment: Qt.AlignHCenter + } + + Label { + visible: success + topPadding: LingmoUI.Units.largeSpacing + text: qsTr("The update is complete and we recommend that you restart your computer.") + Layout.alignment: Qt.AlignHCenter + } + + Label { + visible: !success + topPadding: LingmoUI.Units.largeSpacing + text: qsTr("Update failed") + Layout.alignment: Qt.AlignHCenter + } + + Item { + Layout.fillHeight: true + } + + RowLayout { + spacing: LingmoUI.Units.largeSpacing + + Button { + text: qsTr("Exit") + Layout.fillWidth: true + onClicked: Qt.quit() + } + + Button { + visible: success + text: qsTr("Reboot") + Layout.fillWidth: true + flat: true + onClicked: updator.reboot() + } + } + } +} diff --git a/src/qml/SystemUpdate/FirstPage.qml b/src/qml/SystemUpdate/FirstPage.qml new file mode 100644 index 0000000..11f062f --- /dev/null +++ b/src/qml/SystemUpdate/FirstPage.qml @@ -0,0 +1,361 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Layouts 1.12 +import QtQuick.Templates 2.12 as T +import QtGraphicalEffects 1.0 +import QtWebEngine 1.2 +import LingmoUI 1.0 as LingmoUI +import Lingmo.Settings 1.0 +import "../" + +Item { + id: control + + property bool check: false + property bool checked: true + + Connections { + target: updator + } + + // property color flatHoveredColor: Qt.lighter(LingmoUI.Theme.highlightColor, 1.1) + // property color flatPressedColor: Qt.darker(LingmoUI.Theme.highlightColor, 1.1) + + ColumnLayout { + anchors.fill: parent + spacing: LingmoUI.Units.largeSpacing * 2 + + Image { + // visible: _updateInfo.count !== 0 + Layout.alignment: Qt.AlignTop | Qt.AlignHCenter + width: 200 + sourceSize: Qt.size(width, height) + source: LingmoUI.Theme.darkMode ? "qrc:/images/logo.png" : "qrc:/images/logo.png" + } + + Layout.fillWidth: true + Layout.fillHeight: true + + Item { + Layout.fillWidth: true + height: 50 + + Rectangle { + anchors.fill: parent + anchors.leftMargin: LingmoUI.Units.largeSpacing + anchors.rightMargin: LingmoUI.Units.largeSpacing + color: LingmoUI.Theme.secondBackgroundColor + radius: LingmoUI.Theme.mediumRadius + } + + RowLayout { + anchors.fill: parent + anchors.leftMargin: LingmoUI.Units.largeSpacing * 1.5 + anchors.rightMargin: LingmoUI.Units.largeSpacing * 1.5 + spacing: LingmoUI.Units.smallSpacing + + Item { + Layout.fillWidth: true + Layout.fillHeight: true + + ColumnLayout { + anchors.fill: parent + spacing: 0 + + Item { + Layout.fillHeight: true + } + + Label { + visible: !control.check + text: "System Update" + Layout.fillWidth: true + } + + Label { + visible: !control.checked + text: "Checking... " + updator.checkProgress + "%" + Layout.fillWidth: true + } + + Label { + visible: _listView.count !== 0 + text: qsTr("Has Update") + Layout.fillWidth: true + } + + Label { + visible: !control.check + text: qsTr("Current Version: %1").arg(updator.version) + color: LingmoUI.Theme.disabledTextColor + } + + Item { + Layout.fillHeight: true + } + + Item { + Layout.fillWidth: true + } + } + } + + Button { + visible: !control.check + text: qsTr("Check Update") + flat: true + onClicked: { + // stackView.push(homePage) + control.check = true + control.checked = false + // _textArea.clear() + updator.checkUpdates() + } + } + + // LingmoUI.BusyIndicator { + // width: 50 + // height: 50 + // Layout.alignment: Qt.AlignHCenter + // visible: control.check + // } + + Label { + visible: control.check + Layout.fillWidth: true + } + + LingmoUI.ProgressBar { + id: _progressBar + visible: !control.checked + value: updator.checkProgress + width: 130 + height: 5 + + // Text { + // id: _progressbarText + // anchors.left: parent.right; + // anchors.leftMargin: 10 + // anchors.verticalCenter: parent.verticalCenter; + // text: "Checking... " + updator.checkProgress + "%" + // color: LingmoUI.Theme.highlightedTextColor + // font: control.font + // } + + + } + + // Label { + // text: qsTr("Checking for updates...") + // Layout.alignment: Qt.AlignHCenter + // visible: control.check + // } + } + + Rectangle { + visible: _listView.count !== 0 + anchors.fill: parent + anchors.leftMargin: LingmoUI.Units.largeSpacing + anchors.rightMargin: LingmoUI.Units.largeSpacing + color: LingmoUI.Theme.secondBackgroundColor + radius: LingmoUI.Theme.mediumRadius + } + + RowLayout { + + anchors.fill: parent + anchors.leftMargin: LingmoUI.Units.largeSpacing * 1.5 + anchors.rightMargin: LingmoUI.Units.largeSpacing * 1.5 + spacing: LingmoUI.Units.smallSpacing + + Image { + visible: _listView.count !== 0 + height: 32 + width: 32 + sourceSize: Qt.size(width, height) + source: "image://icontheme/" + "sysytemlogo" + smooth: true + antialiasing: true + } + + Item { + visible: _listView.count !== 0 + Layout.fillWidth: true + Layout.fillHeight: true + + ColumnLayout { + anchors.fill: parent + spacing: 0 + + Item { + Layout.fillHeight: true + } + + Label { + visible: _listView.count !== 0 + text: qsTr("Discover new versions:").arg(updator.new_version) + Layout.fillWidth: true + } + + Label { + visible: !control.check + text: qsTr("Current Version: %1").arg(updator.version) + color: LingmoUI.Theme.disabledTextColor + } + + Item { + Layout.fillHeight: true + } + + Item { + Layout.fillWidth: true + } + } + } + Button { + // visible: _listView.count !== 0 + text: qsTr("Update now") + visible: _listView.count !== 0 + flat: true + onClicked: updator.upgrade() + } + } + + // Label { + // text: "ChangeLogs: " + updator.changelogs + // visible: _listView.count !== 0 + // Layout.alignment: Qt.AlignHCenter + // } + + Item { + height: LingmoUI.Units.largeSpacing + } + + Rectangle { + visible: _listView.count !== 0 + // anchors.fill: parent + // anchors.top: parent.top + // anchors.topMargin: 100 + anchors.leftMargin: LingmoUI.Units.largeSpacing + anchors.rightMargin: LingmoUI.Units.largeSpacing + color: LingmoUI.Theme.secondBackgroundColor + radius: LingmoUI.Theme.mediumRadius + } + + RowLayout { + anchors.fill: parent + anchors.top: parent.top + anchors.topMargin: 100 + anchors.leftMargin: LingmoUI.Units.largeSpacing * 1.5 + anchors.rightMargin: LingmoUI.Units.largeSpacing * 1.5 + spacing: LingmoUI.Units.smallSpacing + Item { + visible: _listView.count !== 0 + Layout.fillWidth: true + Layout.fillHeight: true + + // WebEngineView { + // id: sitemonitoryView + // width:parent.width + // height:parent.height + // backgroundColor: "transparent" + // anchors.centerIn: parent + // settings.javascriptEnabled : true + // settings.pluginsEnabled:true + // url:"file:///var/update/cache/changelog.html" + // } + } + } + } + ListView { + id: _listView + model: upgradeableModel + + visible: _listView.count !== 0 + spacing: LingmoUI.Units.largeSpacing + clip: true + + // ScrollBar.vertical: ScrollBar {} + + Layout.fillWidth: true + Layout.fillHeight: true + + delegate: Item { + width: ListView.view.width + height: 50 + + // Rectangle { + // anchors.fill: parent + // anchors.leftMargin: LingmoUI.Units.largeSpacing + // anchors.rightMargin: LingmoUI.Units.largeSpacing + // color: LingmoUI.Theme.secondBackgroundColor + // radius: LingmoUI.Theme.mediumRadius + // } + + // RowLayout { + // anchors.fill: parent + // anchors.leftMargin: LingmoUI.Units.largeSpacing * 1.5 + // anchors.rightMargin: LingmoUI.Units.largeSpacing * 1.5 + // spacing: LingmoUI.Units.smallSpacing + + // Image { + // height: 32 + // width: 32 + // sourceSize: Qt.size(width, height) + // source: "image://icontheme/" + model.name + // smooth: true + // antialiasing: true + // } + + // // Name and version + // Item { + // Layout.fillWidth: true + // Layout.fillHeight: true + + // ColumnLayout { + // anchors.fill: parent + // spacing: 0 + + // Item { + // Layout.fillHeight: true + // } + + // Label { + // text: model.name + // Layout.fillWidth: true + // } + + // Label { + // text: model.version + // color: LingmoUI.Theme.disabledTextColor + // } + + // Item { + // Layout.fillHeight: true + // } + // } + // } + + // // Size + // // Label { + // // text: model.downloadSize + // // color: LingmoUI.Theme.disabledTextColor + // // } + // } + } + } + + Item { + Layout.fillHeight: !_listView.visible + } + + Item { + height: LingmoUI.Units.smallSpacing + visible: _listView.visible + } + + Item { + Layout.fillHeight: true + } + } +} diff --git a/src/qml/SystemUpdate/HomePage.qml b/src/qml/SystemUpdate/HomePage.qml new file mode 100755 index 0000000..38c5d97 --- /dev/null +++ b/src/qml/SystemUpdate/HomePage.qml @@ -0,0 +1,146 @@ +/* + * Copyright (C) 2024 LingmoOS Team. + * + * Author: Kate Leet + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Layouts 1.12 +import LingmoUI 1.0 as LingmoUI +import Lingmo.Settings 1.0 + +Item { + id: control + + property bool error: false + + Connections { + target: updator + + function onCheckError(details) { + control.error = true + _textArea.text = details + } + } + + ColumnLayout { + anchors.fill: parent + spacing: LingmoUI.Units.largeSpacing * 2 + + Item { + Layout.fillHeight: true + } + + Image { + width: 64 + height: 64 + sourceSize: Qt.size(width, height) + source: "qrc:/images/check_failed.svg" + Layout.alignment: Qt.AlignHCenter + visible: control.error + } + + LingmoUI.BusyIndicator { + width: 64 + height: 64 + Layout.alignment: Qt.AlignHCenter + visible: !control.error + } + + Label { + text: qsTr("Checking for updates...") + Layout.alignment: Qt.AlignHCenter + visible: !control.error + } + + Label { + text: updator.checkProgress + "%" + Layout.alignment: Qt.AlignHCenter + color: LingmoUI.Theme.disabledTextColor + visible: !control.error + } + + ProgressBar{ + from: 0 + to: 100 + value: updator.checkProgress + width: 100 + height: 20 + } + + // Error + + Label { + text: qsTr("Check for update failure") + Layout.alignment: Qt.AlignHCenter + color: LingmoUI.Theme.disabledTextColor + visible: control.error + } + + ScrollView { + Layout.fillHeight: true + Layout.fillWidth: true + visible: _textArea.text != "" && control.error + clip: true + + TextArea { + id: _textArea + enabled: false + selectByMouse: true + + implicitWidth: 0 + + background: Item { + Rectangle { + anchors.fill: parent + anchors.margins: LingmoUI.Units.smallSpacing + anchors.leftMargin: LingmoUI.Units.largeSpacing + anchors.rightMargin: LingmoUI.Units.largeSpacing + radius: LingmoUI.Theme.smallRadius + color: LingmoUI.Theme.secondBackgroundColor + } + } + + leftPadding: LingmoUI.Units.largeSpacing * 2 + rightPadding: LingmoUI.Units.largeSpacing * 2 + topPadding: LingmoUI.Units.largeSpacing * 2 + bottomPadding: LingmoUI.Units.largeSpacing * 2 + + // Auto scroll to bottom. + onTextChanged: { + _textArea.cursorPosition = _textArea.text.length - 1 + } + } + } + + Button { + text: qsTr("Recheck") + flat: true + Layout.alignment: Qt.AlignHCenter + visible: control.error + onClicked: { + control.error = false + _textArea.clear() + updator.checkUpdates() + } + } + + Item { + Layout.fillHeight: true + } + } +} diff --git a/src/qml/SystemUpdate/Main.qml b/src/qml/SystemUpdate/Main.qml new file mode 100755 index 0000000..c1808fe --- /dev/null +++ b/src/qml/SystemUpdate/Main.qml @@ -0,0 +1,82 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Layouts 1.12 +import LingmoUI 1.0 as LingmoUI +import Lingmo.Settings 1.0 +import "../" + +ItemPage { + id: control + headerTitle: qsTr("Update") + + property bool updating: false + property bool updateSuccess: false + + // DragHandler { + // target: null + // acceptedDevices: PointerDevice.GenericPointer + // grabPermissions: PointerHandler.CanTakeOverFromItems + // onActiveChanged: if (active) { rootWindow.helper.startSystemMove(rootWindow) } + // } + + StackView { + id: stackView + anchors.fill: parent + initialItem: firstPage + } + + Updator { + id: updator + + // onCheckUpdateFinished: { + // stackView.push(updatePage) + // } + + onStartingUpdate: { + rootWindow.updating = true + stackView.push(updatingPage) + } + + onUpdateFinished: { + rootWindow.updateSuccess = true + rootWindow.updating = false + stackView.push(finishedPage) + } + + onUpdateError: { + rootWindow.updateSuccess = false + rootWindow.updating = false + stackView.push(finishedPage) + } + } + + Component { + id: firstPage + + FirstPage { } + } + + // Component { + // id: homePage + + // HomePage { } + // } + + // Component { + // id: updatePage + + // UpdatePage {} + // } + + Component { + id: updatingPage + + UpdatingPage {} + } + + Component { + id: finishedPage + + FinishedPage {} + } +} diff --git a/src/qml/SystemUpdate/UpdatePage.qml b/src/qml/SystemUpdate/UpdatePage.qml new file mode 100755 index 0000000..e3483e4 --- /dev/null +++ b/src/qml/SystemUpdate/UpdatePage.qml @@ -0,0 +1,208 @@ +/* + * Copyright (C) 2024 LingmoOS Team. + * + * Author: Kate Leet + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Layouts 1.12 +import LingmoUI 1.0 as LingmoUI +import Lingmo.Settings 1.0 + +Item { + id: control + +// Image { +// anchors.top: parent.top +// anchors.horizontalCenter: parent.horizontalCenter +// width: 167 +// height: 26 +// sourceSize: Qt.size(500, 76) +// source: "qrc:/images/logo.png" +// asynchronous: true +// visible: !_listView.visible +// } + + ColumnLayout { + anchors.fill: parent + + Item { + Layout.fillHeight: !_updateInfo.visible + } + + // 插画 + Image { + Layout.preferredWidth: 143 + Layout.preferredHeight: 172 + source: "qrc:/images/done.svg" + sourceSize: Qt.size(143, 172) + Layout.alignment: Qt.AlignHCenter + asynchronous: true + visible: !_updateInfo.visible + } + + Image { + visible: _updateInfo.count !== 0 + Layout.alignment: Qt.AlignTop | Qt.AlignHCenter + width: 200 + // height: 101 + // Layout.fillWidth: true + sourceSize: Qt.size(width, height) + // For Lingmo OS + source: LingmoUI.Theme.darkMode ? "qrc:/images/logo.png" : "qrc:/images/logo.png" + // For OpenLingmo + // source: LingmoUI.Theme.darkMode ? "qrc:/images/dark/OpenLingmo.png" : "qrc:/images/light/OpenLingmo.png" + } + + Item { + height: LingmoUI.Units.largeSpacing * 2 + visible: !_updateInfo.visible + } + + Label { + // text: "" + qsTr("Package updates are available") + "" + text: "ChangeLogs: " + updator.changelogs + visible: _updateInfo.count !== 0 + Layout.alignment: Qt.AlignHCenter + } + + Label { + text: "" + qsTr("Your system is up to date") + "" + visible: _updateInfo.count === 0 + Layout.alignment: Qt.AlignHCenter + } + + Label { + text: qsTr("Current Version: %1").arg(updator.version) + Layout.alignment: Qt.AlignHCenter + } + + Item { + Layout.fillHeight: !_updateInfo.visible + } + + Item { + height: LingmoUI.Units.smallSpacing + visible: _updateInfo.visible + } + + ColumnLayout { + id: _updateInfo + spacing: LingmoUI.Units.largeSpacing + + Item { + visible: _updateInfo.count !== 0 + + } + } + + + ListView { + id: _listView + model: upgradeableModel + + visible: _listView.count !== 0 + spacing: LingmoUI.Units.largeSpacing + clip: true + + ScrollBar.vertical: ScrollBar {} + + Layout.fillWidth: true + Layout.fillHeight: true + + delegate: Item { + width: ListView.view.width + height: 50 + + Rectangle { + anchors.fill: parent + anchors.leftMargin: LingmoUI.Units.largeSpacing + anchors.rightMargin: LingmoUI.Units.largeSpacing + color: LingmoUI.Theme.secondBackgroundColor + radius: LingmoUI.Theme.mediumRadius + } + + RowLayout { + anchors.fill: parent + anchors.leftMargin: LingmoUI.Units.largeSpacing * 1.5 + anchors.rightMargin: LingmoUI.Units.largeSpacing * 1.5 + spacing: LingmoUI.Units.smallSpacing + + Image { + height: 32 + width: 32 + sourceSize: Qt.size(width, height) + source: "image://icontheme/" + model.name + smooth: true + antialiasing: true + } + + // Name and version + Item { + Layout.fillWidth: true + Layout.fillHeight: true + + ColumnLayout { + anchors.fill: parent + spacing: 0 + + Item { + Layout.fillHeight: true + } + + Label { + text: model.name + Layout.fillWidth: true + } + + Label { + text: model.version + color: LingmoUI.Theme.disabledTextColor + } + + Item { + Layout.fillHeight: true + } + } + } + + // Size + Label { + text: model.downloadSize + color: LingmoUI.Theme.disabledTextColor + } + } + } + } + + Item { + height: LingmoUI.Units.smallSpacing + } + + Button { + text: qsTr("Update now") + Layout.alignment: Qt.AlignHCenter + visible: _listView.count !== 0 + flat: true + onClicked: updator.upgrade() + } + + Item { + height: LingmoUI.Units.largeSpacing + } + } +} diff --git a/src/qml/SystemUpdate/UpdatingPage.qml b/src/qml/SystemUpdate/UpdatingPage.qml new file mode 100755 index 0000000..ca25d20 --- /dev/null +++ b/src/qml/SystemUpdate/UpdatingPage.qml @@ -0,0 +1,78 @@ +/* + * Copyright (C) 2024 LingmoOS Team. + * + * Author: Kate Leet + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Layouts 1.12 +import LingmoUI 1.0 as LingmoUI +import Lingmo.Settings 1.0 + +Item { + id: control + + ColumnLayout { + anchors.fill: parent + + LingmoUI.BusyIndicator { + width: 32 + height: 32 + Layout.alignment: Qt.AlignHCenter + } + + Item { + height: LingmoUI.Units.smallSpacing + } + + Label { + text: qsTr("Updating, please wait") + Layout.alignment: Qt.AlignHCenter + } + + ScrollView { + Layout.fillHeight: true + Layout.fillWidth: true + clip: true + + TextArea { + id: _textArea + text: updator.statusDetails + enabled: false + + background: Item { + Rectangle { + anchors.fill: parent + anchors.margins: LingmoUI.Units.largeSpacing + radius: LingmoUI.Theme.smallRadius + color: LingmoUI.Theme.secondBackgroundColor + } + } + + leftPadding: LingmoUI.Units.largeSpacing * 2 + rightPadding: LingmoUI.Units.largeSpacing * 2 + topPadding: LingmoUI.Units.largeSpacing * 2 + bottomPadding: LingmoUI.Units.largeSpacing * 2 + + // Auto scroll to bottom. + onTextChanged: { + _textArea.cursorPosition = _textArea.text.length - 1 + } + } + } + } +} diff --git a/src/qml/Touchpad/Main.qml b/src/qml/Touchpad/Main.qml index 0d44d5d..cd37148 100755 --- a/src/qml/Touchpad/Main.qml +++ b/src/qml/Touchpad/Main.qml @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/qml/Update/UpdateTitleBar.qml b/src/qml/Update/UpdateTitleBar.qml new file mode 100644 index 0000000..cde97e6 --- /dev/null +++ b/src/qml/Update/UpdateTitleBar.qml @@ -0,0 +1,116 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Layouts 1.12 +import LingmoUI 1.0 as LUI +import Lingmo.Settings 1.0 +import "../" + +RowLayout { + id: updatetitlebar + spacing: LUI.Units.largeSpacing + + signal sendCheckUpdate + signal requestDownloadandInstall(string name, string package_name, string url, string filename, int index) + + Item { + width: 80 + height: 80 + + Image { + visible: (!control.isupdating) && (!control.ischeckingupdate) + source: LUI.Theme.darkMode ? "qrc:/images/dark/changes-white" : "qrc:/images/light/changes" + width: parent.width + height: parent.height + fillMode: Image.PreserveAspectCrop + antialiasing: true + smooth: true + anchors.centerIn: parent + } + + LUI.BusyIndicator { + id: busyIndicator + width: parent.width + height: parent.height + visible: (control.isupdating) || (control.ischeckingupdate) + running: (control.isupdating) || (control.ischeckingupdate) + } + } + + Item { + Layout.fillWidth: true + Layout.fillHeight: true + + // Center promote text + ColumnLayout { + Layout.fillWidth: true + Layout.fillHeight: true + + Label { + id: updateText + text: { + if ((!control.isupdating) && (!control.hasupdate_) && (!control.has_error_)) { + return qsTr("You're up to date"); + } else if ((!control.isupdating) && (control.hasupdate_) && (!control.has_error_)) { + return qsTr("Updates available"); + } else if ((control.isupdating)) { + return qsTr("Installing updates"); + } else if ((control.ischeckingupdate)) { + return qsTr("Checking updates"); + } else { + return qsTr("Error occurs in updating"); + } + } + Layout.fillHeight: true + width: parent.width + font.pointSize: 20 + font.bold: true + verticalAlignment: Text.AlignVCenter + horizontalAlignment: Text.AlignLeft + } + + Label { + id: updateCheckTimeText + text: "The last inspection was already the latest" + Layout.fillHeight: true + width: parent.width + font.pointSize: 10 + font.bold: false + verticalAlignment: Text.AlignVCenter + horizontalAlignment: Text.AlignLeft + } + } + } + + + Button { + id: checkUpdateButton + width: 40 + text: qsTr("Check for updates") + visible: !control.hasupdate_ + enabled: !control.ischeckingupdate + onClicked: { + control.ischeckingupdate = true; + // 每次都需要connect 和 disconnect。否则会重复触发?? + control.mUpdateManager.onUpdateDataReply.connect(control.handle_update_data); + updatetitlebar.sendCheckUpdate(); + } + } + + Button { + id: installUpdateButton + width: 40 + text: qsTr("Update Now") + visible: control.hasupdate_ + enabled: !control.isupdating + onClicked: { + control.isupdating = true; + // 执行安装更新 + for (let index=0; index < control.updateListModel.count; index++) { + let item = control.updateListModel.get(index); + updatetitlebar.requestDownloadandInstall(item.name, item.package_name, item.download_link, item.filename, index); + } + } + } +} + + diff --git a/src/qml/Verticalabt.qml b/src/qml/Verticalabt.qml new file mode 100644 index 0000000..80cd137 --- /dev/null +++ b/src/qml/Verticalabt.qml @@ -0,0 +1,18 @@ +import QtQuick 2.4 +import QtQuick.Layouts 1.3 +import LingmoUI 1.0 as LingmoUI + +Item { + id: control + height: LingmoUI.Units.smallSpacing + + Layout.fillWidth: true + + Rectangle { + anchors.centerIn: parent + height: 10 + width: 1 + color: LingmoUI.Theme.disabledTextColor + opacity: LingmoUI.Theme.darkMode ? 0.7 : 0.5 + } +} diff --git a/src/qml/main.qml b/src/qml/main.qml index 6d06897..6d016ad 100755 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -108,8 +108,14 @@ LingmoUI.Window { onClosing: { //do something - close.accepted = false; - console.log("Close clicked!"); - Qt.callLater(Qt.quit); + if (rootWindow.updating) { + close.accepted = false + return } + + close.accepted = true + // close.accepted = false; + console.log("Close clicked!"); + Qt.callLater(Qt.quit); + } } diff --git a/src/resources.qrc b/src/resources.qrc index c27d989..60590f0 100755 --- a/src/resources.qrc +++ b/src/resources.qrc @@ -3,16 +3,30 @@ qml/main.qml qml/SideBar.qml qml/ItemPage.qml + qml/SysItem.qml images/dark/display-brightness-low-symbolic.svg images/dark/display-brightness-symbolic.svg images/light/display-brightness-low-symbolic.svg images/light/display-brightness-symbolic.svg + images/MundoDark.jpeg + images/MundoLight.jpeg qml/Scrollable.qml + qml/PCname.qml + qml/ChangeDialog.qml images/sensors-voltage-symbolic.svg qml/StandardItem.qml + qml/SystemUpdate/Main.qml + qml/SystemUpdate/FirstPage.qml + qml/SystemUpdate/UpdatePage.qml + qml/SystemUpdate/UpdatingPage.qml + qml/SystemUpdate/FinishedPage.qml + images/laptop.png + images/check_failed.svg + images/done.svg images/dark/nebula.png images/light/nebula.png - images/video.mp4 + images/dark/edit.svg + images/light/edit.svg images/OpenLingmo.png images/logo-rad.png images/logo.png diff --git a/src/touchpad.cpp b/src/touchpad.cpp index edddc2a..5e42e39 100755 --- a/src/touchpad.cpp +++ b/src/touchpad.cpp @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/touchpad.h b/src/touchpad.h index b92d67c..0776c8a 100755 --- a/src/touchpad.h +++ b/src/touchpad.h @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Lingmo OS Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/get_logs.sh b/tools/get_logs.sh new file mode 100644 index 0000000..03f6ff2 --- /dev/null +++ b/tools/get_logs.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +set -e + +URL="https://packages.lingmo.org/release/" +LOGS_TYPE="changelogs.md" +ALL_SAVE="/var/update/" +DEFAULT_LOGS_SAVE= "/var/update/cache/" + +SYS_LANGUAGE=echo $LANG + +if [ ! -f "$ALL_SAVE" ]; then + mkdir $ALL_SAVE + mkdir $DEFAULT_LOGS_SAVE +fi + +wget -P -O $DEFAULT_LOGS_SAVE $URL$SYS_LANGUAGE"/"$LOGS_TYPE \ No newline at end of file diff --git a/translations/ar_AA.ts b/translations/ar_AA.ts index b457860..b8a583e 100755 --- a/translations/ar_AA.ts +++ b/translations/ar_AA.ts @@ -49,6 +49,29 @@ البلوتوث متوقف + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About حول النظام @@ -109,52 +202,52 @@ إصدار النظام - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type نوع النظام - + Kernel Version إصدار النواة - + Processor وحدة المعالجة - + RAM الذاكرة - + Internal Storage مساحة التخزين - + Software Update @@ -978,6 +1071,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1139,12 +1237,6 @@ الفأرة - - System Update - - - - System & Update @@ -1278,6 +1370,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1339,6 +1449,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/az_AZ.ts b/translations/az_AZ.ts index dc83981..91a1959 100755 --- a/translations/az_AZ.ts +++ b/translations/az_AZ.ts @@ -49,6 +49,29 @@ + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -86,70 +109,85 @@ - LanguagePage + FinishedPage - - Language + + The update is complete and we recommend that you restart your computer. - - - Main - - About + + Update failed - - OS Version + + Exit - - System Release + + Reboot + + + FirstPage - - Desktop Version + + Has Update - - UI Version + + + Current Version: %1 - - System Type + + Check Update - - Kernel Version + + Discover new versions: - - Processor + + Update now + + + HomePage - - RAM + + Checking for updates... - - Internal Storage + + Check for update failure - - Software Update + + Recheck + + + + + LanguagePage + + + Language + + + Main Appearance @@ -962,6 +1000,66 @@ VPN + + + Update + + + + + About + + + + + PC Name + + + + + System Name + + + + + Desktop Version + + + + + UI Version + + + + + System Type + + + + + Kernel Version + + + + + Processor + + + + + RAM + + + + + Internal Storage + + + + + Software Update + + NewNetworkDialog @@ -1182,18 +1280,12 @@ Power - - - System Update - - About - System & Update @@ -1258,6 +1350,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1319,6 +1429,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/be_BY.ts b/translations/be_BY.ts index 52028d9..dab12b2 100755 --- a/translations/be_BY.ts +++ b/translations/be_BY.ts @@ -49,6 +49,29 @@ Bluetooth адключаны + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Аб сістэме @@ -109,52 +202,52 @@ Версія сістэмы - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Тып сістэмы - + Kernel Version Версія ядра - + Processor Працэсар - + RAM АЗП - + Internal Storage Унутраная памяць - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Сілкаванне - - - System Update - - About Аб сістэме - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/be_Latn.ts b/translations/be_Latn.ts index 6e5dc84..30cb135 100755 --- a/translations/be_Latn.ts +++ b/translations/be_Latn.ts @@ -14,6 +14,29 @@ + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -51,70 +74,85 @@ - LanguagePage + FinishedPage - - Language + + The update is complete and we recommend that you restart your computer. - - - Main - - About + + Update failed - - OS Version + + Exit - - System Release + + Reboot + + + FirstPage - - Desktop Version + + Has Update - - UI Version + + + Current Version: %1 - - System Type + + Check Update - - Kernel Version + + Discover new versions: - - Processor + + Update now + + + HomePage - - RAM + + Checking for updates... - - Internal Storage + + Check for update failure - - Software Update + + Recheck + + + + + LanguagePage + + + Language + + + Main Appearance @@ -927,6 +965,66 @@ VPN + + + Update + + + + + About + + + + + PC Name + + + + + System Name + + + + + Desktop Version + + + + + UI Version + + + + + System Type + + + + + Kernel Version + + + + + Processor + + + + + RAM + + + + + Internal Storage + + + + + Software Update + + NewNetworkDialog @@ -1147,18 +1245,12 @@ Power - - - System Update - - About - System & Update @@ -1223,6 +1315,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1284,6 +1394,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/bg_BG.ts b/translations/bg_BG.ts index a42df9f..40f8d0a 100755 --- a/translations/bg_BG.ts +++ b/translations/bg_BG.ts @@ -49,6 +49,29 @@ Bluetooth е изключен + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Относно @@ -109,52 +202,52 @@ Версия на Системата - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Вид на Системата - + Kernel Version Версия на Kernel - + Processor Процесор - + RAM RAM - + Internal Storage Вътрешна Памет - + Software Update @@ -978,6 +1071,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1139,12 +1237,6 @@ Мишка - - System Update - - - - System & Update @@ -1278,6 +1370,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1339,6 +1449,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/bs_BA.ts b/translations/bs_BA.ts index aa2cf7b..20dc522 100755 --- a/translations/bs_BA.ts +++ b/translations/bs_BA.ts @@ -49,6 +49,29 @@ Bluetooth je isključen + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About O sistemu @@ -109,52 +202,52 @@ Verzija sistema - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Vrsta sistema - + Kernel Version Verzija jezgre - + Processor Procesor - + RAM RAM - + Internal Storage Interna pohrana - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Snaga - - - System Update - - About O sistemu - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/cs_CZ.ts b/translations/cs_CZ.ts index 4ef9820..8e0e0ca 100755 --- a/translations/cs_CZ.ts +++ b/translations/cs_CZ.ts @@ -49,6 +49,29 @@ Bluetooth je vypnuté + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About O zařízení @@ -109,52 +202,52 @@ Verze systému - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Typ systému - + Kernel Version Verze jádra - + Processor Procesor - + RAM Operační paměť - + Internal Storage Interní úložiště - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Napájení - - - System Update - - About Informace - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/da_DK.ts b/translations/da_DK.ts index a5efabe..8bb7520 100755 --- a/translations/da_DK.ts +++ b/translations/da_DK.ts @@ -49,6 +49,29 @@ Bluetooth er deaktiveret + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Om @@ -109,52 +202,52 @@ Systemversion - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Systemtype - + Kernel Version Kerneversion - + Processor Processor - + RAM Hukommelse - + Internal Storage Internt lager - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Strøm - - - System Update - - About Om - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/de_DE.ts b/translations/de_DE.ts index feb2b05..6792008 100755 --- a/translations/de_DE.ts +++ b/translations/de_DE.ts @@ -49,6 +49,29 @@ Bluetooth ist deaktiviert + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Über @@ -109,52 +202,52 @@ Systemversion - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Systemtyp - + Kernel Version Kernel-Version - + Processor Prozessor - + RAM Arbeitsspeicher - + Internal Storage Interner Speicher - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Energieversorgung - - - System Update - - About Über - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/en_US.ts b/translations/en_US.ts index 1d4a671..0c38fa5 100755 --- a/translations/en_US.ts +++ b/translations/en_US.ts @@ -14,6 +14,29 @@ Bluetooth is disabled + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -50,6 +73,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -61,7 +154,7 @@ Main - + About About @@ -74,52 +167,52 @@ System Version - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type System Type - + Kernel Version Kernel Version - + Processor Processor - + RAM RAM - + Internal Storage Internal Storage - + Software Update @@ -935,6 +1028,11 @@ System Update + + + Update + + NewNetworkDialog @@ -1155,18 +1253,12 @@ Power - - - System Update - - About About - System & Update @@ -1231,6 +1323,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1292,6 +1402,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/eo_XX.ts b/translations/eo_XX.ts index f28efd7..ae7ae13 100755 --- a/translations/eo_XX.ts +++ b/translations/eo_XX.ts @@ -14,6 +14,29 @@ + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -51,70 +74,85 @@ - LanguagePage + FinishedPage - - Language + + The update is complete and we recommend that you restart your computer. - - - Main - - About + + Update failed - - OS Version + + Exit - - System Release + + Reboot + + + FirstPage - - Desktop Version + + Has Update - - UI Version + + + Current Version: %1 - - System Type + + Check Update - - Kernel Version + + Discover new versions: - - Processor + + Update now + + + HomePage - - RAM + + Checking for updates... - - Internal Storage + + Check for update failure - - Software Update + + Recheck + + + + + LanguagePage + + + Language + + + Main Appearance @@ -927,6 +965,66 @@ VPN + + + Update + + + + + About + + + + + PC Name + + + + + System Name + + + + + Desktop Version + + + + + UI Version + + + + + System Type + + + + + Kernel Version + + + + + Processor + + + + + RAM + + + + + Internal Storage + + + + + Software Update + + NewNetworkDialog @@ -1147,18 +1245,12 @@ Power - - - System Update - - About - System & Update @@ -1223,6 +1315,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1284,6 +1394,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/es_ES.ts b/translations/es_ES.ts index 56e4ab7..837a970 100755 --- a/translations/es_ES.ts +++ b/translations/es_ES.ts @@ -49,6 +49,29 @@ Bluetooth está desactivado + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Acerca de @@ -109,52 +202,52 @@ Versión del Sistema - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Tipo de sistema - + Kernel Version Versión del núcleo - + Processor Procesador - + RAM RAM - + Internal Storage Almacenamiento interno - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Energía - - - System Update - - About Acerca - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/es_MX.ts b/translations/es_MX.ts index 7e02915..91e7f00 100755 --- a/translations/es_MX.ts +++ b/translations/es_MX.ts @@ -49,6 +49,29 @@ Bluetooth desactivado + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Acerca de @@ -105,52 +198,52 @@ Versión del sistema - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Tipo de sistema - + Kernel Version Versión de Kernel - + Processor Procesador - + RAM RAM - + Internal Storage Almacenamiento interno - + Software Update @@ -978,6 +1071,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1198,18 +1296,12 @@ Power Energía - - - System Update - - About Acerca de - System & Update @@ -1274,6 +1366,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1335,6 +1445,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/fa_IR.ts b/translations/fa_IR.ts index 1159665..74c7ccb 100755 --- a/translations/fa_IR.ts +++ b/translations/fa_IR.ts @@ -49,6 +49,29 @@ بلوتوث غیرفعال است + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About درباره @@ -109,52 +202,52 @@ نسخه سیستم - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type نوع سیستم - + Kernel Version نسخه کرنل - + Processor پردازنده - + RAM حافظه رم - + Internal Storage حافظه داخلی - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power قدرت - - - System Update - - About درباره - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/fi_FI.ts b/translations/fi_FI.ts index 92d6226..35835ff 100755 --- a/translations/fi_FI.ts +++ b/translations/fi_FI.ts @@ -49,6 +49,29 @@ Bluetooth ei ole käytössä + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Tietoja @@ -105,52 +198,52 @@ Järjestelmän versio - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Järjestelmän tyyppi - + Kernel Version Ytimen versio - + Processor Suoritin - + RAM Keskusmuisti - + Internal Storage Sisäinen muisti - + Software Update @@ -974,6 +1067,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1194,18 +1292,12 @@ Power Virta - - - System Update - - About Tietoja - System & Update @@ -1270,6 +1362,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1331,6 +1441,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/fr_FR.ts b/translations/fr_FR.ts index e5ae3b0..d82d90e 100755 --- a/translations/fr_FR.ts +++ b/translations/fr_FR.ts @@ -49,6 +49,29 @@ Bluetooth désactivé + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About À propos @@ -109,52 +202,52 @@ Version du système - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Type de système - + Kernel Version Version du noyau - + Processor Processeur - + RAM Mémoire vive - + Internal Storage Stockage interne - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Alimentation - - - System Update - - About À propos - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/he_IL.ts b/translations/he_IL.ts index 61753dc..6ac7a59 100755 --- a/translations/he_IL.ts +++ b/translations/he_IL.ts @@ -49,6 +49,29 @@ Bluetooth לא פעיל + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About אודות @@ -109,52 +202,52 @@ גרסאת המערכת - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type סוג מערכת - + Kernel Version גרסת ה"ליבה" - + Processor מעבד - + RAM RAM - + Internal Storage אחסון פנימי - + Software Update @@ -974,6 +1067,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1135,12 +1233,6 @@ עכבר - - System Update - - - - System & Update @@ -1274,6 +1366,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1335,6 +1445,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/hi_IN.ts b/translations/hi_IN.ts index b026560..2cd7502 100755 --- a/translations/hi_IN.ts +++ b/translations/hi_IN.ts @@ -14,6 +14,29 @@ + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -51,70 +74,85 @@ - LanguagePage + FinishedPage - - Language + + The update is complete and we recommend that you restart your computer. - - - Main - - About + + Update failed - - OS Version + + Exit - - System Release + + Reboot + + + FirstPage - - Desktop Version + + Has Update - - UI Version + + + Current Version: %1 - - System Type + + Check Update - - Kernel Version + + Discover new versions: - - Processor + + Update now + + + HomePage - - RAM + + Checking for updates... - - Internal Storage + + Check for update failure - - Software Update + + Recheck + + + + + LanguagePage + + + Language + + + Main Appearance @@ -927,6 +965,66 @@ VPN + + + Update + + + + + About + + + + + PC Name + + + + + System Name + + + + + Desktop Version + + + + + UI Version + + + + + System Type + + + + + Kernel Version + + + + + Processor + + + + + RAM + + + + + Internal Storage + + + + + Software Update + + NewNetworkDialog @@ -1147,18 +1245,12 @@ Power - - - System Update - - About - System & Update @@ -1223,6 +1315,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1284,6 +1394,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/hu_HU.ts b/translations/hu_HU.ts index c77c0fe..e8b37e8 100755 --- a/translations/hu_HU.ts +++ b/translations/hu_HU.ts @@ -49,6 +49,29 @@ A Bluetooth ki van kapcsolva + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Rólunk @@ -109,52 +202,52 @@ Rendszer verziója - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Rendszer típusa - + Kernel Version Kernel verziója - + Processor Processzor - + RAM Memória - + Internal Storage Belső tároló - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Energiagazdálkodás - - - System Update - - About Bővebben - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/id_ID.ts b/translations/id_ID.ts index 8110902..7bc8737 100755 --- a/translations/id_ID.ts +++ b/translations/id_ID.ts @@ -49,6 +49,29 @@ Bluetooth mati + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Tentang @@ -109,52 +202,52 @@ Versi Sistem - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Tipe Sistem - + Kernel Version Versi Kernel - + Processor Prosesor - + RAM RAM - + Internal Storage Memori Internal - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Daya - - - System Update - - About Tentang - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/ie.ts b/translations/ie.ts index c1d7d3b..a71da3a 100755 --- a/translations/ie.ts +++ b/translations/ie.ts @@ -49,6 +49,29 @@ Bluetooth es ínactiv + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Pri @@ -109,52 +202,52 @@ Version del sistema - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Tip del sistema - + Kernel Version Version del nucleo - + Processor Processor - + RAM RAM - + Internal Storage - + Software Update @@ -970,6 +1063,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1194,18 +1292,12 @@ Power Energie - - - System Update - - About Pri - System & Update @@ -1270,6 +1362,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1331,6 +1441,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/it_IT.ts b/translations/it_IT.ts index fe2a15f..f8cfed0 100755 --- a/translations/it_IT.ts +++ b/translations/it_IT.ts @@ -49,6 +49,29 @@ Bluetooth disabilitato + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Informazioni @@ -109,52 +202,52 @@ Versione del sistema - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Tipo di sistema - + Kernel Version Versione del kernel - + Processor Processore - + RAM RAM - + Internal Storage Archiviazione interna - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Energia - - - System Update - - About Informazioni - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/ja_JP.ts b/translations/ja_JP.ts index 046f0e7..73b32a1 100755 --- a/translations/ja_JP.ts +++ b/translations/ja_JP.ts @@ -49,6 +49,29 @@ Bluetoothは無効です + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About バージョン情報 @@ -109,52 +202,52 @@ システムバージョン - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type システムタイプ - + Kernel Version カーネルバージョン - + Processor プロセッサー - + RAM メモリ - + Internal Storage 内部ストレージ - + Software Update @@ -970,6 +1063,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1131,12 +1229,6 @@ マウス - - System Update - - - - System & Update @@ -1270,6 +1362,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1331,6 +1441,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/lt_LT.ts b/translations/lt_LT.ts index d05d8bd..d7fe8ac 100755 --- a/translations/lt_LT.ts +++ b/translations/lt_LT.ts @@ -49,6 +49,29 @@ Bluetooth yra išjungtas + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Apie @@ -109,52 +202,52 @@ Sistemos versija - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Sistemos tipas - + Kernel Version Branduolio versija - + Processor Procesorius - + RAM - + Internal Storage - + Software Update @@ -974,6 +1067,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1135,12 +1233,6 @@ Pelė - - System Update - - - - System & Update @@ -1274,6 +1366,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1335,6 +1445,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/lv_LV.ts b/translations/lv_LV.ts index a90e5aa..e90e9c6 100755 --- a/translations/lv_LV.ts +++ b/translations/lv_LV.ts @@ -49,6 +49,29 @@ Bluetooth ir atslēgts + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Par @@ -109,52 +202,52 @@ Sistēmas Versija - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Sistēmas Tips - + Kernel Version Kodola Versija - + Processor Procesors - + RAM Operatīvā Atmiņa - + Internal Storage Iekšējā Krātuve - + Software Update @@ -974,6 +1067,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1135,12 +1233,6 @@ Pele - - System Update - - - - System & Update @@ -1274,6 +1366,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1335,6 +1445,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/mg.ts b/translations/mg.ts index 0cf2666..c0b33d0 100755 --- a/translations/mg.ts +++ b/translations/mg.ts @@ -14,6 +14,29 @@ Mijanona ny Bluetooth + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -50,6 +73,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -61,7 +154,7 @@ Main - + About Mahakasika @@ -74,52 +167,52 @@ Systeme Laharana faha- - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Karazan'ny systeme - + Kernel Version Noyau faha- - + Processor Processeur - + RAM Ram - + Internal Storage Haben'ny disque - + Software Update @@ -935,6 +1028,11 @@ System Update + + + Update + + NewNetworkDialog @@ -1155,18 +1253,12 @@ Power - - - System Update - - About Mahakasika - System & Update @@ -1231,6 +1323,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1292,6 +1402,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/ml_IN.ts b/translations/ml_IN.ts index 37ecd18..7f8fd9e 100755 --- a/translations/ml_IN.ts +++ b/translations/ml_IN.ts @@ -49,6 +49,29 @@ ബ്ലൂടൂത്ത് ഓഫ് ആണ് + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About എബൗട് @@ -109,52 +202,52 @@ system വേർഷൻ - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type സിസ്റ്റം ടൈപ്പ് - + Kernel Version Kernel വേർഷൻ - + Processor പ്രൊസസ്സർ - + RAM Ram - + Internal Storage ഇൻ്റേണൽ സ്റ്റോറേജ് - + Software Update @@ -970,6 +1063,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1131,12 +1229,6 @@ - - System Update - - - - System & Update @@ -1266,6 +1358,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1327,6 +1437,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/nb_NO.ts b/translations/nb_NO.ts index 25c90bc..1466d01 100755 --- a/translations/nb_NO.ts +++ b/translations/nb_NO.ts @@ -49,6 +49,29 @@ Blåtann avskrudd + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Om @@ -109,52 +202,52 @@ Systemversjon - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Systemtype - + Kernel Version Kjerneversjon - + Processor Prosessor - + RAM Minne - + Internal Storage Internlagring - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Strømstyring - - - System Update - - About Om - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/ne_NP.ts b/translations/ne_NP.ts index 7696be8..30600e9 100755 --- a/translations/ne_NP.ts +++ b/translations/ne_NP.ts @@ -49,6 +49,29 @@ ब्लूटुथ निश्कृय छ + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About बारे @@ -109,52 +202,52 @@ संस्करण - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type प्रणाली प्रकार - + Kernel Version केर्नल संस्करण - + Processor प्रोसेसर - + RAM र्‍याम - + Internal Storage आन्तरिक भण्डारण - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power पावर - - - System Update - - About बारेमा - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/pl_PL.ts b/translations/pl_PL.ts index f205626..8795ef4 100755 --- a/translations/pl_PL.ts +++ b/translations/pl_PL.ts @@ -49,6 +49,29 @@ Bluetooth jest wyłączony + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About O systemie @@ -109,52 +202,52 @@ Wersja systemu - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Typ systemu - + Kernel Version Wersja kernela - + Processor Procesor - + RAM RAM - + Internal Storage Pamięć wewnętrzna - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Zasilanie - - - System Update - - About O systemie - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/pt_BR.ts b/translations/pt_BR.ts index 42bb3df..efb145a 100755 --- a/translations/pt_BR.ts +++ b/translations/pt_BR.ts @@ -49,6 +49,29 @@ Bluetooth está desabilitado + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Sobre @@ -109,52 +202,52 @@ Versão do Sistema - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Tipo do Sistema - + Kernel Version Versão do Kernel - + Processor Processador - + RAM Memória - + Internal Storage Armazenamento Interno - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Energia - - - System Update - - About Sobre - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/pt_PT.ts b/translations/pt_PT.ts index 944aafa..2358f48 100755 --- a/translations/pt_PT.ts +++ b/translations/pt_PT.ts @@ -49,6 +49,29 @@ O Bluetooth está desativado + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Sobre @@ -109,52 +202,52 @@ Versão do Sistema - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Tipo de Sistema - + Kernel Version Versão do Kernel - + Processor Processador - + RAM RAM - + Internal Storage Armazenamento Interno - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Energia - - - System Update - - About Sobre - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/ro_RO.ts b/translations/ro_RO.ts index aa21df0..484e231 100755 --- a/translations/ro_RO.ts +++ b/translations/ro_RO.ts @@ -49,6 +49,29 @@ Bluetooth oprit + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Despre @@ -109,52 +202,52 @@ Versiunea sistemului - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Tip de sistem - + Kernel Version Versiunea Kernel - + Processor Procesor - + RAM RAM - + Internal Storage Stocare internă - + Software Update @@ -970,6 +1063,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1131,12 +1229,6 @@ - - System Update - - - - System & Update @@ -1266,6 +1358,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1327,6 +1437,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/ru_RU.ts b/translations/ru_RU.ts index 47f3464..d5012c1 100755 --- a/translations/ru_RU.ts +++ b/translations/ru_RU.ts @@ -49,6 +49,29 @@ Bluetooth выключен + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About О системе @@ -109,52 +202,52 @@ Версия системы - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Тип системы - + Kernel Version Версия ядра - + Processor Процессор - + RAM ОЗУ - + Internal Storage Внутренняя память - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Питание - - - System Update - - About О системе - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/si_LK.ts b/translations/si_LK.ts index d169983..41e92ba 100755 --- a/translations/si_LK.ts +++ b/translations/si_LK.ts @@ -49,6 +49,29 @@ බ්ලූටූත් අක්‍රීය කර ඇත + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About පිළිබඳව @@ -109,52 +202,52 @@ පද්ධතියේ අනුවාදය - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type පද්ධතියේ වර්ගය - + Kernel Version කර්නලයෙ අනුවාදය - + Processor Processor - + RAM RAM - + Internal Storage අභයන්තර ගබඩාව - + Software Update @@ -970,6 +1063,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1190,18 +1288,12 @@ Power - - - System Update - - About පිළිබඳව - System & Update @@ -1266,6 +1358,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1327,6 +1437,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/sk_SK.ts b/translations/sk_SK.ts index 9ebf055..0f20fb3 100755 --- a/translations/sk_SK.ts +++ b/translations/sk_SK.ts @@ -49,6 +49,29 @@ Bluetooth je vypnutý + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About O systéme @@ -109,52 +202,52 @@ Verzia systému - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Architektúra - + Kernel Version Verzia jadra Linux - + Processor CPU - + RAM RAM - + Internal Storage Vnútorné úložisko - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Napájanie - - - System Update - - About Podrobnosti - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/so.ts b/translations/so.ts index 3be4a7f..2dd3b91 100755 --- a/translations/so.ts +++ b/translations/so.ts @@ -49,6 +49,29 @@ Bluetooth wuu xiran yahay + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Ku saabsan @@ -109,52 +202,52 @@ Nuskhadda Nidaamka - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Nooca Nidaamka - + Kernel Version Nuskhadda Kernel-ka - + Processor Processor-ka - + RAM RAM-ka - + Internal Storage Mugga Gudaha - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Dabka - - - System Update - - About Ku saabsan - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/sr_RS.ts b/translations/sr_RS.ts index 58c0029..828b51b 100755 --- a/translations/sr_RS.ts +++ b/translations/sr_RS.ts @@ -49,6 +49,29 @@ Bluetooth je isključen + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About O sistemu @@ -109,52 +202,52 @@ Verzija sistema - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Vrsta Sistema - + Kernel Version Verzija jezgra - + Processor Procesor - + RAM RAM - + Internal Storage Interno skladište - + Software Update @@ -974,6 +1067,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1135,12 +1233,6 @@ Miš - - System Update - - - - System & Update @@ -1274,6 +1366,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1335,6 +1445,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/sv_SE.ts b/translations/sv_SE.ts index 1b9482b..0dcbd2d 100755 --- a/translations/sv_SE.ts +++ b/translations/sv_SE.ts @@ -49,6 +49,29 @@ Blåtand är inaktiverat + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Om @@ -109,52 +202,52 @@ System Version - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type System Typ - + Kernel Version Kärn-version - + Processor Processor - + RAM RAM - + Internal Storage Intern lagringsplats - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Ström - - - System Update - - About Om - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/sw.ts b/translations/sw.ts index b4921f2..16cb382 100755 --- a/translations/sw.ts +++ b/translations/sw.ts @@ -49,6 +49,29 @@ Bluetooth imezimwa + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Kuhusu @@ -109,52 +202,52 @@ Toleo la mufumo - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Aina la mufumo - + Kernel Version Toleo la Kernel - + Processor Processor - + RAM RAM - + Internal Storage Kuhifadhi yenye iko ndani - + Software Update @@ -978,6 +1071,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1139,12 +1237,6 @@ Panya la kompyuta - - System Update - - - - System & Update @@ -1278,6 +1370,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1339,6 +1449,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/ta_IN.ts b/translations/ta_IN.ts index 4f8ab2e..9748eab 100755 --- a/translations/ta_IN.ts +++ b/translations/ta_IN.ts @@ -49,6 +49,29 @@ புளூடூத் முடக்கப்பட்டுள்ளது + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About தகவல் @@ -109,52 +202,52 @@ கணினி பதிப்பு - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type கணினி வகை - + Kernel Version கர்னல் பதிப்பு - + Processor செயலி - + RAM ரேம் - + Internal Storage உள் சேமிப்பு - + Software Update @@ -970,6 +1063,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1190,18 +1288,12 @@ Power - - - System Update - - About தகவல் - System & Update @@ -1266,6 +1358,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1327,6 +1437,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/tr_TR.ts b/translations/tr_TR.ts index fa0845b..60db7e2 100755 --- a/translations/tr_TR.ts +++ b/translations/tr_TR.ts @@ -49,6 +49,29 @@ Bluetooth devre-dışı + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Hakkında @@ -109,52 +202,52 @@ Sistem Sürümü - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Sistem Tipi - + Kernel Version Kernel Sürümü - + Processor İşlemci - + RAM RAM - + Internal Storage Dahili Hafıza - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Güç - - - System Update - - About Hakkında - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/uk_UA.ts b/translations/uk_UA.ts index e101c2a..0a9d6ee 100755 --- a/translations/uk_UA.ts +++ b/translations/uk_UA.ts @@ -49,6 +49,29 @@ Bluetooth вимкнений + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Про систему @@ -109,52 +202,52 @@ Версія ОС - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Тип системи - + Kernel Version Версія ядра - + Processor Процесор - + RAM Оперативна пам'ять - + Internal Storage Внутрішня пам'ять - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Енергопостачання - - - System Update - - About Про систему - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/uz_UZ.ts b/translations/uz_UZ.ts index 8bdec39..45d73da 100755 --- a/translations/uz_UZ.ts +++ b/translations/uz_UZ.ts @@ -49,6 +49,29 @@ Bluetooth o'chirilgan + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About Haqida @@ -109,52 +202,52 @@ Tizim versiyasi - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Tizim turi - + Kernel Version Yadro versiyasi - + Processor Protsessor - + RAM Operativ Xotira - + Internal Storage Ichki xotira - + Software Update @@ -982,6 +1075,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1206,18 +1304,12 @@ Power Quvvat - - - System Update - - About Haqida - System & Update @@ -1282,6 +1374,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1343,6 +1453,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/vi_VN.ts b/translations/vi_VN.ts index 7a73506..3077622 100755 --- a/translations/vi_VN.ts +++ b/translations/vi_VN.ts @@ -14,6 +14,29 @@ Bluetooth đã bị tắt + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -50,6 +73,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -61,7 +154,7 @@ Main - + About Thông tin @@ -74,52 +167,52 @@ Phiên bản hệ thống - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type Kiểu hệ thống - + Kernel Version Phiên bản kernel - + Processor Vi xử lí - + RAM Bộ nhớ RAM - + Internal Storage Bộ nhớ trong - + Software Update @@ -939,6 +1032,11 @@ System Update + + + Update + + NewNetworkDialog @@ -985,6 +1083,13 @@ + + PCname + + OK + OK + + PairDialog @@ -1100,12 +1205,6 @@ - - System Update - - - - System & Update @@ -1243,6 +1342,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1304,6 +1421,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/zh_CN.ts b/translations/zh_CN.ts index 76de750..b1bf02a 100755 --- a/translations/zh_CN.ts +++ b/translations/zh_CN.ts @@ -14,6 +14,29 @@ 蓝牙已禁用 + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -50,6 +73,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -61,57 +154,65 @@ Main - + About 关于 - OS Version - 操作系统版本 + 操作系统版本 - System Release - 系统发行类型 + 系统发行类型 + + + + PC Name + + + + + System Name + - + Desktop Version 桌面环境版本 - + UI Version UI版本 - + System Type 系统类型 - + Kernel Version 内核版本 - + Processor 处理器 - + RAM 内存大小 - + Internal Storage 内部存储 - + Software Update 软件更新 @@ -959,6 +1060,11 @@ System Update + + + Update + + NewNetworkDialog @@ -1005,6 +1111,13 @@ 添加 + + PCname + + OK + 确认 + + PairDialog @@ -1179,18 +1292,12 @@ Power 电源 - - - System Update - - About 关于 - System & Update @@ -1255,6 +1362,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1316,6 +1441,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/zh_HK.ts b/translations/zh_HK.ts index 7688907..6752e5f 100755 --- a/translations/zh_HK.ts +++ b/translations/zh_HK.ts @@ -14,6 +14,29 @@ + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -51,70 +74,85 @@ - LanguagePage + FinishedPage - - Language + + The update is complete and we recommend that you restart your computer. - - - Main - - About + + Update failed - - OS Version + + Exit - - System Release + + Reboot + + + FirstPage - - Desktop Version + + Has Update - - UI Version + + + Current Version: %1 - - System Type + + Check Update - - Kernel Version + + Discover new versions: - - Processor + + Update now + + + HomePage - - RAM + + Checking for updates... - - Internal Storage + + Check for update failure - - Software Update + + Recheck + + + + + LanguagePage + + + Language + + + Main Appearance @@ -927,6 +965,66 @@ VPN + + + Update + + + + + About + + + + + PC Name + + + + + System Name + + + + + Desktop Version + + + + + UI Version + + + + + System Type + + + + + Kernel Version + + + + + Processor + + + + + RAM + + + + + Internal Storage + + + + + Software Update + + NewNetworkDialog @@ -1147,18 +1245,12 @@ Power - - - System Update - - About - System & Update @@ -1223,6 +1315,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1284,6 +1394,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem diff --git a/translations/zh_TW.ts b/translations/zh_TW.ts index 5d60bfc..292ff0f 100755 --- a/translations/zh_TW.ts +++ b/translations/zh_TW.ts @@ -49,6 +49,29 @@ 藍牙不可用 + + ChangeDialog + + + Device + + + + + Enter your new device name + + + + + New device name + + + + + Ok + + + ConnectDialog @@ -85,6 +108,76 @@ + + FinishedPage + + + The update is complete and we recommend that you restart your computer. + + + + + Update failed + + + + + Exit + + + + + Reboot + + + + + FirstPage + + + Has Update + + + + + + Current Version: %1 + + + + + Check Update + + + + + Discover new versions: + + + + + Update now + + + + + HomePage + + + Checking for updates... + + + + + Check for update failure + + + + + Recheck + + + LanguagePage @@ -96,7 +189,7 @@ Main - + About 關於 @@ -105,52 +198,52 @@ 系統版本 - - OS Version + + PC Name - - System Release + + System Name - + Desktop Version - + UI Version - + System Type 系統類型 - + Kernel Version 核心版本 - + Processor 处理器 - + RAM 記憶體 - + Internal Storage 內部儲存 - + Software Update @@ -978,6 +1071,11 @@ VPN + + + Update + + NewNetworkDialog @@ -1198,18 +1296,12 @@ Power 電源 - - - System Update - - About 關於 - System & Update @@ -1274,6 +1366,24 @@ + + UpdatePage + + + Your system is up to date + + + + + Current Version: %1 + + + + + Update now + + + UpdateTitleBar @@ -1335,6 +1445,14 @@ + + UpdatingPage + + + Updating, please wait + + + UserDelegateItem