Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package liblxqt for openSUSE:Factory checked in at 2021-04-17 00:01:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/liblxqt (Old) and /work/SRC/openSUSE:Factory/.liblxqt.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "liblxqt" Sat Apr 17 00:01:47 2021 rev:16 rq:885931 version:0.17.0 Changes: -------- --- /work/SRC/openSUSE:Factory/liblxqt/liblxqt.changes 2020-11-04 18:32:54.296079515 +0100 +++ /work/SRC/openSUSE:Factory/.liblxqt.new.12324/liblxqt.changes 2021-04-17 00:01:58.301613612 +0200 @@ -1,0 +2,7 @@ +Fri Apr 16 06:36:15 UTC 2021 - Michael Vetter <[email protected]> + +- Update to 0.17.0: + * Fixed dbus errors with invalid QVariant data sent over it. + * Modernized and cleaned up the code. + +------------------------------------------------------------------- Old: ---- liblxqt-0.16.0.tar.xz liblxqt-0.16.0.tar.xz.asc New: ---- liblxqt-0.17.0.tar.xz liblxqt-0.17.0.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ liblxqt.spec ++++++ --- /var/tmp/diff_new_pack.ZoKy7n/_old 2021-04-17 00:01:59.673615776 +0200 +++ /var/tmp/diff_new_pack.ZoKy7n/_new 2021-04-17 00:01:59.677615782 +0200 @@ -1,7 +1,7 @@ # # spec file for package liblxqt # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: liblxqt -Version: 0.16.0 +Version: 0.17.0 Release: 0 Summary: Core utility library for LXQt License: LGPL-2.1-or-later @@ -29,14 +29,13 @@ BuildRequires: cmake >= 3.1.0 BuildRequires: fdupes BuildRequires: gcc-c++ -BuildRequires: libqt5xdg-devel >= 3.5.0 -BuildRequires: lxqt-build-tools-devel >= 0.8.0 +BuildRequires: lxqt-build-tools-devel >= 0.9.0 BuildRequires: pkgconfig BuildRequires: cmake(KF5WindowSystem) >= 5.36.0 BuildRequires: pkgconfig(Qt5DBus) BuildRequires: pkgconfig(Qt5UiTools) BuildRequires: pkgconfig(Qt5X11Extras) -BuildRequires: pkgconfig(Qt5Xdg) >= 3.5.0 +BuildRequires: pkgconfig(Qt5Xdg) >= 3.7.0 BuildRequires: pkgconfig(polkit-qt5-1) BuildRequires: pkgconfig(x11) BuildRequires: pkgconfig(xscrnsaver) ++++++ liblxqt-0.16.0.tar.xz -> liblxqt-0.17.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/CHANGELOG new/liblxqt-0.17.0/CHANGELOG --- old/liblxqt-0.16.0/CHANGELOG 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/CHANGELOG 2021-04-10 09:24:13.000000000 +0200 @@ -1,3 +1,13 @@ +liblxqt-0.17.0 / 2021-04-15 +=========================== + * Used Qt5.15's Qt::SplitBehavior. + * Fixed dbus errors with invalid QVariant data sent over it. + * Made GlobalSettings public (exported symbols) in lxqtsettings. + * Modernized some headers. + * Modernize the trivial destructors. + * Used "handle quit signals" constructor in lxqtsingleapplication. + * Replaced the deprecated constructor of QWheelEvent. + liblxqt-0.16.0 / 2020-11-01 =========================== * Use QFlags default constructor diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/CMakeLists.txt new/liblxqt-0.17.0/CMakeLists.txt --- old/liblxqt-0.16.0/CMakeLists.txt 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/CMakeLists.txt 2021-04-10 09:24:13.000000000 +0200 @@ -7,15 +7,15 @@ project(liblxqt) -set(LXQTBT_MINIMUM_VERSION "0.8.0") +set(LXQTBT_MINIMUM_VERSION "0.9.0") set(KF5_MINIMUM_VERSION "5.36.0") set(QT_MINIMUM_VERSION "5.12.0") -set(QTXDG_MINIMUM_VERSION "3.5.0") +set(QTXDG_MINIMUM_VERSION "3.7.0") # Major LXQt Version, belong to all components set(LXQT_MAJOR_VERSION 0) # Minor LXQt Version, belong to all components -set(LXQT_MINOR_VERSION 16) +set(LXQT_MINOR_VERSION 17) # # Patch Version, belong *only* to the component # LXQt is 0.13 - liblxqt is at patch version 0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/configdialog/lxqtconfigdialog.cpp new/liblxqt-0.17.0/configdialog/lxqtconfigdialog.cpp --- old/liblxqt-0.16.0/configdialog/lxqtconfigdialog.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/configdialog/lxqtconfigdialog.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -189,6 +189,4 @@ mSettings->sync(); } -ConfigDialog::~ConfigDialog() -{ -} +ConfigDialog::~ConfigDialog() = default; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/configdialog/lxqtconfigdialogcmdlineoptions.cpp new/liblxqt-0.17.0/configdialog/lxqtconfigdialogcmdlineoptions.cpp --- old/liblxqt-0.16.0/configdialog/lxqtconfigdialogcmdlineoptions.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/configdialog/lxqtconfigdialogcmdlineoptions.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -36,9 +36,7 @@ { } -ConfigDialogCmdLineOptions::~ConfigDialogCmdLineOptions() -{ -} +ConfigDialogCmdLineOptions::~ConfigDialogCmdLineOptions() = default; bool ConfigDialogCmdLineOptions::setCommandLine(QCommandLineParser *parser) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/configdialog/lxqtpageselectwidget.cpp new/liblxqt-0.17.0/configdialog/lxqtpageselectwidget.cpp --- old/liblxqt-0.16.0/configdialog/lxqtpageselectwidget.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/configdialog/lxqtpageselectwidget.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -124,9 +124,7 @@ /************************************************ ************************************************/ -PageSelectWidget::~PageSelectWidget() -{ -} +PageSelectWidget::~PageSelectWidget() = default; /************************************************ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqtgridlayout.cpp new/liblxqt-0.17.0/lxqtgridlayout.cpp --- old/liblxqt-0.16.0/lxqtgridlayout.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqtgridlayout.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -28,7 +28,7 @@ #include "lxqtgridlayout.h" #include <QDebug> -#include <math.h> +#include <cmath> #include <QWidget> #include <QVariantAnimation> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqthtmldelegate.cpp new/liblxqt-0.17.0/lxqthtmldelegate.cpp --- old/liblxqt-0.16.0/lxqthtmldelegate.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqthtmldelegate.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -40,9 +40,7 @@ { } -HtmlDelegate::~HtmlDelegate() -{ -} +HtmlDelegate::~HtmlDelegate() = default; /************************************************ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqtnotification.cpp new/liblxqt-0.17.0/lxqtnotification.cpp --- old/liblxqt-0.16.0/lxqtnotification.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqtnotification.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -145,9 +145,7 @@ this, &NotificationPrivate::handleAction); } -NotificationPrivate::~NotificationPrivate() -{ -} +NotificationPrivate::~NotificationPrivate() = default; void NotificationPrivate::update() { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqtpower/lxqtpower.cpp new/liblxqt-0.17.0/lxqtpower/lxqtpower.cpp --- old/liblxqt-0.16.0/lxqtpower/lxqtpower.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqtpower/lxqtpower.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -51,9 +51,7 @@ } -Power::~Power() -{ -} +Power::~Power() = default; bool Power::canAction(Power::Action action) const diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqtpower/lxqtpowerproviders.cpp new/liblxqt-0.17.0/lxqtpower/lxqtpowerproviders.cpp --- old/liblxqt-0.16.0/lxqtpower/lxqtpowerproviders.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqtpower/lxqtpowerproviders.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -32,7 +32,7 @@ #include <QProcess> #include <QDebug> #include "lxqtnotification.h" -#include <signal.h> // for kill() +#include <csignal> // for kill() #define UPOWER_SERVICE "org.freedesktop.UPower" #define UPOWER_PATH "/org/freedesktop/UPower" @@ -141,7 +141,7 @@ return false; } - QDBusMessage msg = dbus.call(method, needBoolArg ? QVariant(true) : QVariant()); + QDBusMessage msg = needBoolArg ? dbus.call(method, QVariant(true)) : dbus.call(method); if (!msg.errorName().isEmpty()) { @@ -214,9 +214,7 @@ } -PowerProvider::~PowerProvider() -{ -} +PowerProvider::~PowerProvider() = default; @@ -229,9 +227,7 @@ } -UPowerProvider::~UPowerProvider() -{ -} +UPowerProvider::~UPowerProvider() = default; bool UPowerProvider::canAction(Power::Action action) const @@ -313,9 +309,7 @@ } -ConsoleKitProvider::~ConsoleKitProvider() -{ -} +ConsoleKitProvider::~ConsoleKitProvider() = default; bool ConsoleKitProvider::canAction(Power::Action action) const @@ -403,9 +397,7 @@ } -SystemdProvider::~SystemdProvider() -{ -} +SystemdProvider::~SystemdProvider() = default; bool SystemdProvider::canAction(Power::Action action) const @@ -493,9 +485,7 @@ } -LXQtProvider::~LXQtProvider() -{ -} +LXQtProvider::~LXQtProvider() = default; bool LXQtProvider::canAction(Power::Action action) const @@ -559,9 +549,7 @@ } -LxSessionProvider::~LxSessionProvider() -{ -} +LxSessionProvider::~LxSessionProvider() = default; bool LxSessionProvider::canAction(Power::Action action) const @@ -601,9 +589,7 @@ } -HalProvider::~HalProvider() -{ -} +HalProvider::~HalProvider() = default; bool HalProvider::canAction(Power::Action action) const @@ -629,9 +615,7 @@ { } -CustomProvider::~CustomProvider() -{ -} +CustomProvider::~CustomProvider() = default; bool CustomProvider::canAction(Power::Action action) const { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqtprogramfinder.cpp new/liblxqt-0.17.0/lxqtprogramfinder.cpp --- old/liblxqt-0.16.0/lxqtprogramfinder.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqtprogramfinder.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -39,7 +39,11 @@ } const QString path = QFile::decodeName(qgetenv("PATH")); +#if (QT_VERSION >= QT_VERSION_CHECK(5,15,0)) + const QStringList dirs = path.split(QL1C(':'), Qt::SkipEmptyParts); +#else const QStringList dirs = path.split(QL1C(':'), QString::SkipEmptyParts); +#endif for (const QString& dirName : dirs) { const QFileInfo fi(QDir(dirName), program); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqtrotatedwidget.cpp new/liblxqt-0.17.0/lxqtrotatedwidget.cpp --- old/liblxqt-0.16.0/lxqtrotatedwidget.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqtrotatedwidget.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -115,7 +115,7 @@ return size; } -QPoint RotatedWidget::adjustedPoint(QPoint point) const +QPointF RotatedWidget::adjustedPoint(QPointF point) const { switch (mOrigin) { @@ -125,7 +125,7 @@ case Qt::TopRightCorner: case Qt::BottomLeftCorner: - point = QPoint(point.y(), point.x()); + point = QPointF(point.y(), point.x()); break; } @@ -269,7 +269,11 @@ return; cascadeCall = true; +#if (QT_VERSION >= QT_VERSION_CHECK(5,14,0)) + QWheelEvent contentEvent(adjustedPoint(event->position()), event->globalPosition(), event->pixelDelta(), event->angleDelta(), event->buttons(), event->modifiers(), event->phase(), false); +#else QWheelEvent contentEvent(adjustedPoint(event->pos()), event->globalPos(), event->delta(), event->buttons(), event->modifiers(), event->orientation()); +#endif QApplication::sendEvent(mContent, &contentEvent); cascadeCall = false; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqtrotatedwidget.h new/liblxqt-0.17.0/lxqtrotatedwidget.h --- old/liblxqt-0.16.0/lxqtrotatedwidget.h 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqtrotatedwidget.h 2021-04-10 09:24:13.000000000 +0200 @@ -65,7 +65,7 @@ QSize sizeHint() const override; QSize adjustedSize(QSize) const; - QPoint adjustedPoint(QPoint) const; + QPointF adjustedPoint(QPointF) const; bool transferMousePressEvent() const { return mTransferMousePressEvent; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqtsettings.cpp new/liblxqt-0.17.0/lxqtsettings.cpp --- old/liblxqt-0.16.0/lxqtsettings.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqtsettings.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -436,9 +436,7 @@ /************************************************ ************************************************/ -LXQtTheme::~LXQtTheme() -{ -} +LXQtTheme::~LXQtTheme() = default; /************************************************ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqtsettings.h new/liblxqt-0.17.0/lxqtsettings.h --- old/liblxqt-0.16.0/lxqtsettings.h 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqtsettings.h 2021-04-10 09:24:13.000000000 +0200 @@ -191,7 +191,7 @@ class GlobalSettingsPrivate; -class GlobalSettings: public Settings +class LXQT_API GlobalSettings : public Settings { Q_OBJECT public: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/lxqtsingleapplication.cpp new/liblxqt-0.17.0/lxqtsingleapplication.cpp --- old/liblxqt-0.16.0/lxqtsingleapplication.cpp 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/lxqtsingleapplication.cpp 2021-04-10 09:24:13.000000000 +0200 @@ -36,7 +36,7 @@ using namespace LXQt; SingleApplication::SingleApplication(int &argc, char **argv, StartOptions options) - : Application(argc, argv), + : Application(argc, argv, true), mActivationWindow(nullptr) { QString service = @@ -78,9 +78,7 @@ } } -SingleApplication::~SingleApplication() -{ -} +SingleApplication::~SingleApplication() = default; void SingleApplication::setActivationWindow(QWidget *w) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/translations/liblxqt_bg.ts new/liblxqt-0.17.0/translations/liblxqt_bg.ts --- old/liblxqt-0.16.0/translations/liblxqt_bg.ts 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/translations/liblxqt_bg.ts 2021-04-10 09:24:13.000000000 +0200 @@ -14,12 +14,12 @@ <message> <location filename="../lxqtpowermanager.cpp" line="76"/> <source>LXQt Power Manager Error</source> - <translation>???????????? ?? LXQt Power Manager</translation> + <translation>???????????? ?? LXQt ???????????????????? ???? ????????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="76"/> <source>Hibernate failed.</source> - <translation>???????????????????????? ?? ??????????????????.</translation> + <translation>???????????????????????? ??????????????????.</translation> </message> </context> <context> @@ -27,7 +27,7 @@ <message> <location filename="../lxqtnotification.cpp" line="163"/> <source>Notifications Fallback</source> - <translation>???????????????? ????????????????</translation> + <translation>???????????????????????????? ???? ????????????????</translation> </message> </context> <context> @@ -35,17 +35,17 @@ <message> <location filename="../lxqtpowermanager.cpp" line="108"/> <source>Hibernate</source> - <translation>????????????????????</translation> + <translation>????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="115"/> <source>Suspend</source> - <translation>??????????????</translation> + <translation>????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="122"/> <source>Reboot</source> - <translation>??????????????</translation> + <translation>????????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="129"/> @@ -55,73 +55,73 @@ <message> <location filename="../lxqtpowermanager.cpp" line="136"/> <source>Logout</source> - <translation>????????????????</translation> + <translation>?????????????????? ???? ??????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="148"/> <source>LXQt Session Suspend</source> - <translation>???????????????????????? ???? LXQt ??????????</translation> + <translation>????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="149"/> <source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source> - <translation>???????????? ???? ???????????????? ???? ???????????? ?????????????????? ????? <p> ?????????? ?????????????????? ?? ?????????????????? ???? ?????????? ???????????????????? ???? ??????????????. ?????????????????????? ???? ?????????????????? ???? ???? ??????????????, ?????? ???????????????????????? ?? ????????????????.</translation> + <translation>???????????????? ???? ???????????? ???? ???????????????? ?????????????????? ????? <p> ???????????????????? ?????????????????? ?? ?????????? ???? ?????????? ?????????????????? ??????????????????????. ?????????????????????? ???? ?????????????????? ???? ???? ??????????????, ?????? ???????????????????????? ???? ????????????????.</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="158"/> <source>LXQt Session Hibernate</source> - <translation>???????????????????? ???? LXQt ??????????</translation> + <translation>????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="159"/> <source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source> - <translation>???????????? ???? ???????????????? ???? ?????????????????????? ?????????????????? ????? <p> ???????????????????? ???? ?????????????????? ?? ?????????? ?????????????????? ???? ??????????????. ?????????????????????? ???? ?????????????????? ???? ?????????????? ?????? ???????????? ???? ??????????????.</translation> + <translation>???????????????? ???? ???????????? ???? ???????????? ?????????????????? ????? <p> ???????????????????? ?????????????? ???????????????? ?????????? ???? ?????????? ?? ???? ????????????????. ?????????????? ???? ???????????????????????? ???????????? ?????? ????????????????????.</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="168"/> <source>LXQt Session Reboot</source> - <translation>???????????????????????? ???? LXQt ??????????</translation> + <translation>????????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="169"/> <source>Do you want to really restart your computer? All unsaved work will be lost...</source> - <translation>???????????? ???? ???????????????? ???? ???????????????????????? ?????????????????? ????? ???????????????? ???? ???????????????? ???????????? ???? ???????? ????????????????...</translation> + <translation>???????????????? ???? ???????????? ???? ???????????????????????? ?????????????????? ????? <p> ???????????????? ???????????????????? ???????????????????? ???? ??????????????...</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="178"/> <source>LXQt Session Shutdown</source> - <translation>???????????????????? ???? LXQt ??????????</translation> + <translation>????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="179"/> <source>Do you want to really switch off your computer? All unsaved work will be lost...</source> - <translation>???????????? ???? ???????????????? ???? ?????????????????? ?????????????????? ????? ???????????????? ???? ???????????????? ???????????? ???? ???????? ????????????????...</translation> + <translation>???????????????? ???? ???????????? ???? ?????????????????? ?????????????????? ????? <p> ???????????????? ???????????????????? ???????????????????? ???? ??????????????...</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="188"/> <source>LXQt Session Logout</source> - <translation>?????????? ???? ?????????? ???? LXQt</translation> + <translation>???????????????? ???? ??????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="189"/> <source>Do you want to really logout? All unsaved work will be lost...</source> - <translation>???????????? ???? ???????????????? ???? ????????????????? ???????????????? ???? ???????????????? ???????????? ???? ???????? ????????????????...</translation> + <translation>???????????????? ???? ???????????? ???? ?????????????????? ??????????????? <p> ???????????????? ???????????????????? ???????????????????? ???? ??????????????...</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="197"/> <location filename="../lxqtpowermanager.cpp" line="202"/> <source>LXQt Power Manager Error</source> - <translation>???????????? ?? LXQt Power Manager</translation> + <translation>???????????? ?? LXQt ???????????????????? ???? ????????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="197"/> <source>Hibernate failed.</source> - <translation>???????????????????????? ?? ??????????????????.</translation> + <translation>???????????????????????? ??????????????????.</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="202"/> <source>Suspend failed.</source> - <translation>?????????????????? ???? ???? ??????????????.</translation> + <translation>???????????????????????? ??????????????????.</translation> </message> </context> <context> @@ -129,22 +129,22 @@ <message> <location filename="../lxqtscreensaver.cpp" line="160"/> <source>Failed to run "%1". Ensure you have a locker/screensaver compatible with xdg-screensaver installed and running.</source> - <translation>???? ???????? ???? ???? ???????????????? ???% 1???. ?????????????? ????, ???? ?????????? ???????????? / ????????????????????????, ???????????????????? ?? xdg-????????????????????????, ???????????????????? ?? ??????????????.</translation> + <translation>?????????????????? ???????????????????? ???? ???% 1???. ?????????????? ????, ???? ?????????? ???????????????????? ?? ?????????????? ????????????????????????, ?????????????????? ?? xdg-screensaver.</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="164"/> <source>Failed to run "%1". Ensure the specified locker/screensaver is installed and running.</source> - <translation>???? ???????? ???? ???? ???????????????? ???% 1???. ?????????????? ????, ???? ???????????????????????? ???????????? / ???????????????????????? ?? ?????????????????????? ?? ????????????.</translation> + <translation>?????????????????? ???????????????????? ???? ???% 1???. ?????????????? ????, ???? ???????????????????? ???????????????????????? ?? ???????????????????? ?? ??????????????.</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="242"/> <source>Lock Screen</source> - <translation>?????????????????? ??????????</translation> + <translation>???????????????????? ???? ????????????</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="155"/> <source>Screen Saver Error</source> - <translation>???????????? ?? ??????????????????</translation> + <translation>???????????? ???? ??????????????????????????</translation> </message> </context> <context> @@ -152,7 +152,7 @@ <message> <location filename="../configdialog/lxqtconfigdialogcmdlineoptions.cpp" line="49"/> <source>Choose the page to be shown.</source> - <translation>???????????????? ????????????????????, ?????????? ???? ???????? ????????????????.</translation> + <translation>???????????? ???????????????????? ???? ??????????????????.</translation> </message> </context> <context> @@ -161,7 +161,7 @@ <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="87"/> <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="137"/> <source>Power Manager Error</source> - <translation>???????????? ?? Power Manager</translation> + <translation>???????????? ?? ???????????????????? ???? ????????????????????????</translation> </message> <message> <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="88"/> @@ -173,7 +173,7 @@ <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="102"/> <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="152"/> <source>Power Manager Error (D-BUS call)</source> - <translation>???????????? ?? Power Manager (D-BUS call)</translation> + <translation>???????????? ?? ???????????????????? ???? ???????????????????????? (D-BUS call)</translation> </message> </context> </TS> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/translations/liblxqt_et.ts new/liblxqt-0.17.0/translations/liblxqt_et.ts --- old/liblxqt-0.16.0/translations/liblxqt_et.ts 1970-01-01 01:00:00.000000000 +0100 +++ new/liblxqt-0.17.0/translations/liblxqt_et.ts 2021-04-10 09:24:13.000000000 +0200 @@ -0,0 +1,179 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="et"> +<context> + <name>ConfigDialog</name> + <message> + <location filename="../configdialog/lxqtconfigdialog.ui" line="14"/> + <source>Dialog</source> + <translation>Valikuaken</translation> + </message> +</context> +<context> + <name>LXQt::MessageBox</name> + <message> + <location filename="../lxqtpowermanager.cpp" line="76"/> + <source>LXQt Power Manager Error</source> + <translation>LXQt toitehalduri viga</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="76"/> + <source>Hibernate failed.</source> + <translation>Talveunne j????mine ei ??nnestunud.</translation> + </message> +</context> +<context> + <name>LXQt::NotificationPrivate</name> + <message> + <location filename="../lxqtnotification.cpp" line="163"/> + <source>Notifications Fallback</source> + <translation>Teavituste tagavaralahendus</translation> + </message> +</context> +<context> + <name>LXQt::PowerManager</name> + <message> + <location filename="../lxqtpowermanager.cpp" line="108"/> + <source>Hibernate</source> + <translation>Talveunne</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="115"/> + <source>Suspend</source> + <translation>Uinakusse</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="122"/> + <source>Reboot</source> + <translation>Taask??ivita</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="129"/> + <source>Shutdown</source> + <translation>Seiska</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="136"/> + <source>Logout</source> + <translation>Logi v??lja</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="148"/> + <source>LXQt Session Suspend</source> + <translation>LXQt sessiooni talletamine m??llu</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="149"/> + <source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source> + <translation>Kas sa kindlasti soovid oma arvuti sessiooni talletada m??llu?<p>Tegemist on v??hese voolutarbega olekuga, kuid toite kadumisel kaovad ka andmed.</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="158"/> + <source>LXQt Session Hibernate</source> + <translation>LXQt sessioni salvetamine andmekandjale</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="159"/> + <source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source> + <translation>Kas sa kindlasti soovid oma arvuti sessiooni talletada andmekandjale?<p>Tegemist on v??hese voolutarbega olekuga ja toite kadumisel ei kaovad salvestatud andmed.</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="168"/> + <source>LXQt Session Reboot</source> + <translation>LXQt sessioni taask??ivitus</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="169"/> + <source>Do you want to really restart your computer? All unsaved work will be lost...</source> + <translation>Kas sa kindlasti soovid arvuti uuesti k??ivitada? K??ik salvestamata t???? l??heb kaotsi...</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="178"/> + <source>LXQt Session Shutdown</source> + <translation>LXQt sessiooni seiskamine</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="179"/> + <source>Do you want to really switch off your computer? All unsaved work will be lost...</source> + <translation>Kas sa kindlasti soovid arvuti sulgeda? K??ik salvestamata t???? l??heb kaotsi...</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="188"/> + <source>LXQt Session Logout</source> + <translation>V??ljalogimine LXQt sessioonist</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="189"/> + <source>Do you want to really logout? All unsaved work will be lost...</source> + <translation>Kas sa kindlasti soovid v??lja logida? K??ik salvestamata t???? l??heb kaotsi...</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="197"/> + <location filename="../lxqtpowermanager.cpp" line="202"/> + <source>LXQt Power Manager Error</source> + <translation>LXQt toitehalduri viga</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="197"/> + <source>Hibernate failed.</source> + <translation>Talveunne j????mine ei ??nnestunud.</translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="202"/> + <source>Suspend failed.</source> + <translation>Sessiooni salvestamine m??llu ei ??nnestunud.</translation> + </message> +</context> +<context> + <name>LXQt::ScreenSaver</name> + <message> + <location filename="../lxqtscreensaver.cpp" line="160"/> + <source>Failed to run "%1". Ensure you have a locker/screensaver compatible with xdg-screensaver installed and running.</source> + <translation>???%1??? k??ivitamine ei ??nnestunud. Kontrolli, et arvutisse on paigaldatud xdg-screensaver standardit j??rgiv ekraanilukustaja/ekraanis????stja ja t????tab ka.</translation> + </message> + <message> + <location filename="../lxqtscreensaver.cpp" line="164"/> + <source>Failed to run "%1". Ensure the specified locker/screensaver is installed and running.</source> + <translation>???%1??? k??ivitamine ei ??nnestunud. Kontrolli, et arvutisse on paigaldatud m????ratletud ekraanilukustaja/ekraanis????stja ning ta t????tab ka.</translation> + </message> + <message> + <location filename="../lxqtscreensaver.cpp" line="242"/> + <source>Lock Screen</source> + <translation>Lukusta ekraan</translation> + </message> + <message> + <location filename="../lxqtscreensaver.cpp" line="155"/> + <source>Screen Saver Error</source> + <translation>Ekraanis????stja viga</translation> + </message> +</context> +<context> + <name>QCoreApplication</name> + <message> + <location filename="../configdialog/lxqtconfigdialogcmdlineoptions.cpp" line="49"/> + <source>Choose the page to be shown.</source> + <translation>Vali n??idatav leht.</translation> + </message> +</context> +<context> + <name>QObject</name> + <message> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="87"/> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="137"/> + <source>Power Manager Error</source> + <translation>Toitehalduri viga</translation> + </message> + <message> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="88"/> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="138"/> + <source>QDBusInterface is invalid</source> + <translation>QDBusInterface on vigane</translation> + </message> + <message> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="102"/> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="152"/> + <source>Power Manager Error (D-BUS call)</source> + <translation>Toitehalduri viga (D-BUS'i p??ring)</translation> + </message> +</context> +</TS> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/translations/liblxqt_fr.ts new/liblxqt-0.17.0/translations/liblxqt_fr.ts --- old/liblxqt-0.16.0/translations/liblxqt_fr.ts 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/translations/liblxqt_fr.ts 2021-04-10 09:24:13.000000000 +0200 @@ -40,7 +40,7 @@ <message> <location filename="../lxqtpowermanager.cpp" line="115"/> <source>Suspend</source> - <translation>Suspendre</translation> + <translation>Mettre en veille</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="122"/> @@ -60,12 +60,12 @@ <message> <location filename="../lxqtpowermanager.cpp" line="148"/> <source>LXQt Session Suspend</source> - <translation>Suspendre la session LXQt</translation> + <translation>Mettre la session LXQt en veille</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="149"/> <source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source> - <translation>Souhaitez-vous vraiment suspendre votre ordinateur ?<p>Votre ordinateur consommera un peu d'??nergie. L'??tat du syst??me ne sera pas pr??serv?? en cas de coupure de courant.</translation> + <translation>Souhaitez-vous vraiment mettre en veille votre ordinateur ?<p>Votre ordinateur consommera un peu d'??nergie. L'??tat du syst??me ne sera pas pr??serv?? en cas de coupure de courant.</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="158"/> @@ -121,7 +121,7 @@ <message> <location filename="../lxqtpowermanager.cpp" line="202"/> <source>Suspend failed.</source> - <translation>??chec de la suspension.</translation> + <translation>??chec de mise en veille.</translation> </message> </context> <context> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/translations/liblxqt_hu.ts new/liblxqt-0.17.0/translations/liblxqt_hu.ts --- old/liblxqt-0.16.0/translations/liblxqt_hu.ts 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/translations/liblxqt_hu.ts 2021-04-10 09:24:13.000000000 +0200 @@ -6,7 +6,7 @@ <message> <location filename="../configdialog/lxqtconfigdialog.ui" line="14"/> <source>Dialog</source> - <translation>P??rbesz??dablak</translation> + <translation>P??rbesz??dpanel</translation> </message> </context> <context> @@ -14,12 +14,12 @@ <message> <location filename="../lxqtpowermanager.cpp" line="76"/> <source>LXQt Power Manager Error</source> - <translation>LXQt Energiakezel?? hiba</translation> + <translation>LXQt energiakezel?? hiba</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="76"/> <source>Hibernate failed.</source> - <translation>M??lyk??szenl??t sikertelen.</translation> + <translation>A hibern??l??s sikertelen.</translation> </message> </context> <context> @@ -27,7 +27,7 @@ <message> <location filename="../lxqtnotification.cpp" line="163"/> <source>Notifications Fallback</source> - <translation>V??szhiteles??t??s</translation> + <translation>Tartal??k ??rtes??t??sek</translation> </message> </context> <context> @@ -35,7 +35,7 @@ <message> <location filename="../lxqtpowermanager.cpp" line="108"/> <source>Hibernate</source> - <translation>M??lyk??szenl??t</translation> + <translation>Hibern??l??s</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="115"/> @@ -50,7 +50,7 @@ <message> <location filename="../lxqtpowermanager.cpp" line="129"/> <source>Shutdown</source> - <translation>Kikapcsol??s</translation> + <translation>Le??ll??t??s</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="136"/> @@ -65,17 +65,17 @@ <message> <location filename="../lxqtpowermanager.cpp" line="149"/> <source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source> - <translation>K??szenl??ti ??llapotba akarja helyezni a g??pet?<p>A kis energiasz??ks??glet?? ??llapotban fesz??lts??gkimarad??skor a fel??bred??s nem biztos.</translation> + <translation>Biztos k??szenl??ti ??llapotba szeretn?? helyezni a sz??m??t??g??pet?<p>A rendszer ??llapot??t nem lehet meg??rizni ??ramkimarad??skor.</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="158"/> <source>LXQt Session Hibernate</source> - <translation>Az LXQt m??lyk??szenl??te</translation> + <translation>Hibern??l??s</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="159"/> <source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source> - <translation>M??lyk??szenl??tbe akarja helyezni a g??pet?<p>A kis energiasz??ks??glet?? alv?? ??llapotban fesz??lts??gkimarad??skor a fel??bred??s nem biztos.</translation> + <translation>Biztos hibern??lni szeretn?? a sz??m??t??g??pet?<p>??ramkimarad??skor a rendszer ??llapota megmarad.</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="168"/> @@ -85,17 +85,17 @@ <message> <location filename="../lxqtpowermanager.cpp" line="169"/> <source>Do you want to really restart your computer? All unsaved work will be lost...</source> - <translation>??jra akarja ind??tani a g??pet? Minden mentetlen munka elv??sz...</translation> + <translation>Biztos ??jra szeretn?? ind??tani a sz??m??t??g??pet? Minden mentetlen munka elv??sz...</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="178"/> <source>LXQt Session Shutdown</source> - <translation>Kikapcsol??s</translation> + <translation>Le??ll??t??s</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="179"/> <source>Do you want to really switch off your computer? All unsaved work will be lost...</source> - <translation>Ki akarja kapcsolni a g??pet? Minden mentetlen munka elv??sz...</translation> + <translation>Biztos le szeretn?? ??ll??tani a sz??m??t??g??pet? Minden mentetlen munka elv??sz...</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="188"/> @@ -105,7 +105,7 @@ <message> <location filename="../lxqtpowermanager.cpp" line="189"/> <source>Do you want to really logout? All unsaved work will be lost...</source> - <translation>Kijelentkezik? Minden mentetlen munka elv??sz...</translation> + <translation>Biztos ki szeretne jelentkezni? Minden mentetlen munka elv??sz...</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="197"/> @@ -116,12 +116,12 @@ <message> <location filename="../lxqtpowermanager.cpp" line="197"/> <source>Hibernate failed.</source> - <translation>M??lyk??szenl??t sikertelen.</translation> + <translation>A hibern??l??s sikertelen.</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="202"/> <source>Suspend failed.</source> - <translation>K??szenl??t sikertelen.</translation> + <translation>A k??szenl??t sikertelen.</translation> </message> </context> <context> @@ -129,12 +129,12 @@ <message> <location filename="../lxqtscreensaver.cpp" line="160"/> <source>Failed to run "%1". Ensure you have a locker/screensaver compatible with xdg-screensaver installed and running.</source> - <translation>Nem siker??lt elind??tani: "%1". Gy??z??dj??n meg arr??l, hogy telep??tve van ??s fut az xdg-screensaver kompatibilis z??rol??/k??perny??v??d??.</translation> + <translation>Nem siker??lt elind??tani: "%1". Gy??z??dj??n meg arr??l, hogy telep??tve van ??s fut egy xdg-screensaver kompatibilis z??rol??/k??perny??v??d??.</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="164"/> <source>Failed to run "%1". Ensure the specified locker/screensaver is installed and running.</source> - <translation type="unfinished">Nem siker??lt futtatni: "%1". Gy??z??dj meg r??la, hogy a megfelel?? z??rol?? alkalmaz??s/k??perny??v??d?? telep??tve van ??s fut.</translation> + <translation>Nem siker??lt futtatni: "%1". Gy??z??dj??n meg r??la, hogy a megfelel?? z??rol?? alkalmaz??s/k??perny??v??d?? telep??tve van ??s fut.</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="242"/> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/translations/liblxqt_ja.ts new/liblxqt-0.17.0/translations/liblxqt_ja.ts --- old/liblxqt-0.16.0/translations/liblxqt_ja.ts 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/translations/liblxqt_ja.ts 2021-04-10 09:24:13.000000000 +0200 @@ -14,12 +14,12 @@ <message> <location filename="../lxqtpowermanager.cpp" line="76"/> <source>LXQt Power Manager Error</source> - <translation>LXQt ?????????????????????</translation> + <translation>LXQt ????????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="76"/> <source>Hibernate failed.</source> - <translation>??????????????????????????????????????????</translation> + <translation>??????????????????????????????????????????</translation> </message> </context> <context> @@ -60,42 +60,42 @@ <message> <location filename="../lxqtpowermanager.cpp" line="148"/> <source>LXQt Session Suspend</source> - <translation>LXQt ?????????????????????????????????</translation> + <translation>LXQt ??????????????? ???????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="149"/> <source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source> - <translation>???????????????????????????????????????????????????????????????<P>????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????</translation> + <translation>???????????????????????????????????????????????????????????????<P>????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="158"/> <source>LXQt Session Hibernate</source> - <translation>LXQt ????????????????????????????????????</translation> + <translation>LXQt ??????????????? ??????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="159"/> <source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source> - <translation>?????????????????????????????????????????????????????????????????????<P>????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????</translation> + <translation>??????????????????????????????????????????????????????????????????<P>????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="168"/> <source>LXQt Session Reboot</source> - <translation>LXQt ???????????????????????????</translation> + <translation>LXQt ??????????????? ?????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="169"/> <source>Do you want to really restart your computer? All unsaved work will be lost...</source> - <translation>????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????...</translation> + <translation>????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????...</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="178"/> <source>LXQt Session Shutdown</source> - <translation>LXQt ???????????????????????????????????????</translation> + <translation>LXQt ??????????????? ?????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="179"/> <source>Do you want to really switch off your computer? All unsaved work will be lost...</source> - <translation>?????????????????????????????????????????????????????? ????????????????????????????????????????????????????????????...</translation> + <translation>??????????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????...</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="188"/> @@ -105,7 +105,7 @@ <message> <location filename="../lxqtpowermanager.cpp" line="189"/> <source>Do you want to really logout? All unsaved work will be lost...</source> - <translation>??????????????????????????????????????? ????????????????????????????????????????????????????????????...</translation> + <translation>??????????????????????????????????????? ??????????????????????????????????????????????????????...</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="197"/> @@ -116,12 +116,12 @@ <message> <location filename="../lxqtpowermanager.cpp" line="197"/> <source>Hibernate failed.</source> - <translation>??????????????????????????????????????????</translation> + <translation>??????????????????????????????????????????</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="202"/> <source>Suspend failed.</source> - <translation>???????????????????????????????????????</translation> + <translation>???????????????????????????????????????</translation> </message> </context> <context> @@ -129,17 +129,17 @@ <message> <location filename="../lxqtscreensaver.cpp" line="160"/> <source>Failed to run "%1". Ensure you have a locker/screensaver compatible with xdg-screensaver installed and running.</source> - <translation>"%1" ????????????????????????????????? xdg-screensaver ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????</translation> + <translation>"%1" ????????????????????????????????? xdg-screensaver ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="164"/> <source>Failed to run "%1". Ensure the specified locker/screensaver is installed and running.</source> - <translation>"%1" ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????</translation> + <translation>"%1" ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="242"/> <source>Lock Screen</source> - <translation>??????????????????</translation> + <translation>???????????????</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="155"/> @@ -152,7 +152,7 @@ <message> <location filename="../configdialog/lxqtconfigdialogcmdlineoptions.cpp" line="49"/> <source>Choose the page to be shown.</source> - <translation>???????????????????????????????????????????????????</translation> + <translation>????????????????????????????????????????????????</translation> </message> </context> <context> @@ -161,7 +161,7 @@ <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="87"/> <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="137"/> <source>Power Manager Error</source> - <translation>?????????????????????</translation> + <translation>????????????????????????</translation> </message> <message> <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="88"/> @@ -173,7 +173,7 @@ <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="102"/> <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="152"/> <source>Power Manager Error (D-BUS call)</source> - <translation>?????????????????????(D-BUS ?????????)</translation> + <translation>????????????????????????(D-BUS ?????????)</translation> </message> </context> </TS> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/translations/liblxqt_nl.ts new/liblxqt-0.17.0/translations/liblxqt_nl.ts --- old/liblxqt-0.16.0/translations/liblxqt_nl.ts 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/translations/liblxqt_nl.ts 2021-04-10 09:24:13.000000000 +0200 @@ -6,7 +6,7 @@ <message> <location filename="../configdialog/lxqtconfigdialog.ui" line="14"/> <source>Dialog</source> - <translation>Dialoog</translation> + <translation>Dialoogvenster</translation> </message> </context> <context> @@ -14,7 +14,7 @@ <message> <location filename="../lxqtpowermanager.cpp" line="76"/> <source>LXQt Power Manager Error</source> - <translation>Fout van LXQt-Energiebeheerder</translation> + <translation>Foutmelding van LXQt-energiebeheer</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="76"/> @@ -60,58 +60,58 @@ <message> <location filename="../lxqtpowermanager.cpp" line="148"/> <source>LXQt Session Suspend</source> - <translation>LXQt-Sessie-pauzestand</translation> + <translation>LXQt-pauzestand</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="149"/> <source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source> - <translation>Wilt u uw computer echt in pauzestand brengen?<p>Pauzestand brengt de computer in een energiespaarstand. De systeemstatus blijft niet behouden wanneer de stroomtoevoer wordt verbroken.</translation> + <translation>Weet u zeker dat u uw computer in de pauzestand wilt zetten?<p>De pauzestand zet de computer in een energiespaarstand. Geopende programma's en bestanden worden niet bewaard als de stroomtoevoer wordt onderbroken.</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="158"/> <source>LXQt Session Hibernate</source> - <translation>LXQt-Sessie-slaapstand</translation> + <translation>LXQt-slaapstand</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="159"/> <source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source> - <translation>Wilt u uw computer echt in slaapstand brengen?<p>Slaapstand brengt de computer in een energiespaarstand. De systeemstatus blijft behouden wanneer de stroomtoevoer wordt verbroken.</translation> + <translation>Weet u zeker dat u uw computer in de slaapstand wilt zetten?<p>De slaapstand zet de computer in een energiespaarstand. Geopende programma's en bestanden worden bewaard als de stroomtoevoer wordt onderbroken.</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="168"/> <source>LXQt Session Reboot</source> - <translation>LXQt-Sessie-herstarten</translation> + <translation>LXQt herstarten</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="169"/> <source>Do you want to really restart your computer? All unsaved work will be lost...</source> - <translation>Wilt u uw computer echt herstarten? Al uw niet-opgeslagen werk zal verloren gaan...</translation> + <translation>Weet u zeker dat u uw computer wilt herstarten? Al uw onopgeslagen werk wordt niet bewaard???</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="178"/> <source>LXQt Session Shutdown</source> - <translation>LXQt-Sessie-afsluiten</translation> + <translation>LXQt afsluiten</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="179"/> <source>Do you want to really switch off your computer? All unsaved work will be lost...</source> - <translation>Wilt u uw computer echt afsluiten? Al uw niet-opgeslagen werk zal verloren gaan...</translation> + <translation>Weet u zeker dat u uw computer wilt afsluiten? Al uw onopgeslagen werk wordt niet bewaard???</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="188"/> <source>LXQt Session Logout</source> - <translation>Meld LXQt-sessie af</translation> + <translation>LXQt afmelden</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="189"/> <source>Do you want to really logout? All unsaved work will be lost...</source> - <translation>Wilt u zich echt afmelden? Al uw niet-opgeslagen werk zal verloren gaan...</translation> + <translation>Weet u zeker dat u wilt afmelden? Al uw onopgeslagen werk wordt niet bewaard???</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="197"/> <location filename="../lxqtpowermanager.cpp" line="202"/> <source>LXQt Power Manager Error</source> - <translation>Fout van LXQt-energiebeheerder</translation> + <translation>Foutmelding van LXQt-energiebeheer</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="197"/> @@ -129,22 +129,22 @@ <message> <location filename="../lxqtscreensaver.cpp" line="160"/> <source>Failed to run "%1". Ensure you have a locker/screensaver compatible with xdg-screensaver installed and running.</source> - <translation>Mislukt om "%1" te runnen. Controleer of je een schermbeveiliging hebt die compatibel is met de ge??nstalleerde en runnende xdg-screensaver.</translation> + <translation>'%1' kan niet worden uitgevoerd. Zorg dat u over een schermbeveiliging beschikt die compatibel is met xdg-screensaver en dat deze actief is.</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="164"/> <source>Failed to run "%1". Ensure the specified locker/screensaver is installed and running.</source> - <translation>Mislukt om "%1" te runnen. Controleer of de aangegeven schermbeveiliging is ge??nstalleerd en runt.</translation> + <translation>'%1" kan niet worden uitgevoerd. Zorg dat de opgegeven schermbeveiliging ge??nstalleerd en actief is.</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="242"/> <source>Lock Screen</source> - <translation>Vergrendel scherm</translation> + <translation>Scherm vergrendelen</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="155"/> <source>Screen Saver Error</source> - <translation>Fout van schermbeveiliging</translation> + <translation>Schermbeveiligingsfout</translation> </message> </context> <context> @@ -152,7 +152,7 @@ <message> <location filename="../configdialog/lxqtconfigdialogcmdlineoptions.cpp" line="49"/> <source>Choose the page to be shown.</source> - <translation>Kies de weer te geven bladzijde.</translation> + <translation>Kies de te tonen pagina.</translation> </message> </context> <context> @@ -161,7 +161,7 @@ <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="87"/> <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="137"/> <source>Power Manager Error</source> - <translation>Fout van energiebeheerder</translation> + <translation>Energiebeheerfout</translation> </message> <message> <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="88"/> @@ -173,7 +173,7 @@ <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="102"/> <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="152"/> <source>Power Manager Error (D-BUS call)</source> - <translation>Fout van energiebeheerder (D-BUS-oproep)</translation> + <translation>Energiebeheerfout (D-BUS-aanroep)</translation> </message> </context> </TS> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/translations/liblxqt_si.ts new/liblxqt-0.17.0/translations/liblxqt_si.ts --- old/liblxqt-0.16.0/translations/liblxqt_si.ts 1970-01-01 01:00:00.000000000 +0100 +++ new/liblxqt-0.17.0/translations/liblxqt_si.ts 2021-04-10 09:24:13.000000000 +0200 @@ -0,0 +1,179 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.1" language="si"> +<context> + <name>ConfigDialog</name> + <message> + <location filename="../configdialog/lxqtconfigdialog.ui" line="14"/> + <source>Dialog</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LXQt::MessageBox</name> + <message> + <location filename="../lxqtpowermanager.cpp" line="76"/> + <source>LXQt Power Manager Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="76"/> + <source>Hibernate failed.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LXQt::NotificationPrivate</name> + <message> + <location filename="../lxqtnotification.cpp" line="163"/> + <source>Notifications Fallback</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LXQt::PowerManager</name> + <message> + <location filename="../lxqtpowermanager.cpp" line="108"/> + <source>Hibernate</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="115"/> + <source>Suspend</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="122"/> + <source>Reboot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="129"/> + <source>Shutdown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="136"/> + <source>Logout</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="148"/> + <source>LXQt Session Suspend</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="149"/> + <source>Do you want to really suspend your computer?<p>Suspends the computer into a low power state. System state is not preserved if the power is lost.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="158"/> + <source>LXQt Session Hibernate</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="159"/> + <source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="168"/> + <source>LXQt Session Reboot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="169"/> + <source>Do you want to really restart your computer? All unsaved work will be lost...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="178"/> + <source>LXQt Session Shutdown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="179"/> + <source>Do you want to really switch off your computer? All unsaved work will be lost...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="188"/> + <source>LXQt Session Logout</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="189"/> + <source>Do you want to really logout? All unsaved work will be lost...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="197"/> + <location filename="../lxqtpowermanager.cpp" line="202"/> + <source>LXQt Power Manager Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="197"/> + <source>Hibernate failed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpowermanager.cpp" line="202"/> + <source>Suspend failed.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>LXQt::ScreenSaver</name> + <message> + <location filename="../lxqtscreensaver.cpp" line="160"/> + <source>Failed to run "%1". Ensure you have a locker/screensaver compatible with xdg-screensaver installed and running.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtscreensaver.cpp" line="164"/> + <source>Failed to run "%1". Ensure the specified locker/screensaver is installed and running.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtscreensaver.cpp" line="242"/> + <source>Lock Screen</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtscreensaver.cpp" line="155"/> + <source>Screen Saver Error</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>QCoreApplication</name> + <message> + <location filename="../configdialog/lxqtconfigdialogcmdlineoptions.cpp" line="49"/> + <source>Choose the page to be shown.</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>QObject</name> + <message> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="87"/> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="137"/> + <source>Power Manager Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="88"/> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="138"/> + <source>QDBusInterface is invalid</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="102"/> + <location filename="../lxqtpower/lxqtpowerproviders.cpp" line="152"/> + <source>Power Manager Error (D-BUS call)</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblxqt-0.16.0/translations/liblxqt_uk.ts new/liblxqt-0.17.0/translations/liblxqt_uk.ts --- old/liblxqt-0.16.0/translations/liblxqt_uk.ts 2020-10-30 14:19:39.000000000 +0100 +++ new/liblxqt-0.17.0/translations/liblxqt_uk.ts 2021-04-10 09:24:13.000000000 +0200 @@ -75,7 +75,7 @@ <message> <location filename="../lxqtpowermanager.cpp" line="159"/> <source>Do you want to really hibernate your computer?<p>Hibernates the computer into a low power state. System state is preserved if the power is lost.</source> - <translation>???????????? ???????????????? ????????????????????<p>???? ???????????????? ???????? ?? ?????????? ?????????????????? ????????????????????????????????. ?????? ???????????? ???????????????? ???????? ?????????????? ??????????????????????.</translation> + <translation>???????????? ???????????????? ????????????????????<p>???? ???????????????? ???????? ?? ?????????? ?????????????????? ????????????????????????????????. ???? ???????????? ???????????????? ???????? ?????????????? ??????????????????????.</translation> </message> <message> <location filename="../lxqtpowermanager.cpp" line="168"/> @@ -129,12 +129,12 @@ <message> <location filename="../lxqtscreensaver.cpp" line="160"/> <source>Failed to run "%1". Ensure you have a locker/screensaver compatible with xdg-screensaver installed and running.</source> - <translation type="unfinished"></translation> + <translation>???? ?????????????? ?????????????????? ??%1??. ??????????????????????????, ???? ?????????????????????? ???? ???????????????? ????????????????, ?????????????? ?? xdg-??????????????????.</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="164"/> <source>Failed to run "%1". Ensure the specified locker/screensaver is installed and running.</source> - <translation type="unfinished"></translation> + <translation>???? ?????????????? ?????????????????? ??%1??. ??????????????????????????, ???? ?????????????? ???????????????? ?????????????????????? ???? ????????????????.</translation> </message> <message> <location filename="../lxqtscreensaver.cpp" line="242"/> @@ -144,7 +144,7 @@ <message> <location filename="../lxqtscreensaver.cpp" line="155"/> <source>Screen Saver Error</source> - <translation>?????????????? ?????????????????? ????????????</translation> + <translation>?????????????? ?????????????????? ????????????</translation> </message> </context> <context> @@ -152,7 +152,7 @@ <message> <location filename="../configdialog/lxqtconfigdialogcmdlineoptions.cpp" line="49"/> <source>Choose the page to be shown.</source> - <translation type="unfinished"></translation> + <translation>???????????????? ???????????????? ?????? ????????????.</translation> </message> </context> <context>
