diff -Nru lxqt-notificationd-0.14.1/autostart/translations/lxqt-notifications_gl.desktop lxqt-notificationd-0.15.0/autostart/translations/lxqt-notifications_gl.desktop --- lxqt-notificationd-0.14.1/autostart/translations/lxqt-notifications_gl.desktop 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/autostart/translations/lxqt-notifications_gl.desktop 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1 @@ +Name[gl]=Servizo de notificacións diff -Nru lxqt-notificationd-0.14.1/CHANGELOG lxqt-notificationd-0.15.0/CHANGELOG --- lxqt-notificationd-0.14.1/CHANGELOG 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/CHANGELOG 2020-04-23 18:22:38.000000000 +0000 @@ -1,3 +1,10 @@ +lxqt-notificationd-0.15.0 / 2020-04-22 +====================================== + * Bumped version to 0.15.0. + * Used nullptr. + * Removed (duplicated) string casts definitions. + * Use async calls to query server status information. + lxqt-notificationd-0.14.1 / 2019-02-25 ====================================== diff -Nru lxqt-notificationd-0.14.1/CMakeLists.txt lxqt-notificationd-0.15.0/CMakeLists.txt --- lxqt-notificationd-0.14.1/CMakeLists.txt 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/CMakeLists.txt 2020-04-23 18:22:38.000000000 +0000 @@ -17,8 +17,8 @@ option(LXQT_NOTIFICATION_BUILD_TESTS "Build LXQt Notification tests" OFF) set(KF5_MINIMUM_VERSION "5.36.0") -set(LXQT_MINIMUM_VERSION "0.14.1") -set(QT_MINIMUM_VERSION "5.7.1") +set(LXQT_MINIMUM_VERSION "0.15.0") +set(QT_MINIMUM_VERSION "5.10.0") find_package(Qt5DBus ${QT_MINIMUM_VERSION} REQUIRED) find_package(Qt5LinguistTools ${QT_MINIMUM_VERSION} REQUIRED) @@ -28,15 +28,11 @@ message(STATUS "Building with Qt${Qt5Core_VERSION}") # Patch Version -set(LXQT_NOTIFICATIOND_PATCH_VERSION 1) +set(LXQT_NOTIFICATIOND_PATCH_VERSION 0) set(LXQT_NOTIFICATIOND_VERSION ${LXQT_MAJOR_VERSION}.${LXQT_MINOR_VERSION}.${LXQT_NOTIFICATIOND_PATCH_VERSION}) add_definitions( "-DLXQT_NOTIFICATIOND_VERSION=\"${LXQT_NOTIFICATIOND_VERSION}\"" - "-DQT_NO_CAST_FROM_ASCII" - "-DQT_NO_CAST_TO_ASCII" - "-DQT_NO_URL_CAST_FROM_STRING" - "-DQT_NO_CAST_FROM_BYTEARRAY" ) include(LXQtPreventInSourceBuilds) diff -Nru lxqt-notificationd-0.14.1/config/advancedsettings.h lxqt-notificationd-0.15.0/config/advancedsettings.h --- lxqt-notificationd-0.14.1/config/advancedsettings.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/advancedsettings.h 2020-04-23 18:22:38.000000000 +0000 @@ -37,7 +37,7 @@ Q_OBJECT public: - explicit AdvancedSettings(LXQt::Settings* settings, QWidget* parent = 0); + explicit AdvancedSettings(LXQt::Settings* settings, QWidget* parent = nullptr); ~AdvancedSettings(); public slots: diff -Nru lxqt-notificationd-0.14.1/config/basicsettings.cpp lxqt-notificationd-0.15.0/config/basicsettings.cpp --- lxqt-notificationd-0.14.1/config/basicsettings.cpp 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/basicsettings.cpp 2020-04-23 18:22:38.000000000 +0000 @@ -25,6 +25,8 @@ * * END_COMMON_COPYRIGHT_HEADER */ +#include + #include #include "basicsettings.h" @@ -48,17 +50,34 @@ connect(bottomCenterRB, SIGNAL(clicked()), this, SLOT(updateNotification())); connect(bottomRightRB, SIGNAL(clicked()), this, SLOT(updateNotification())); - LXQt::Notification serverTest; - QString serverName = serverTest.serverInfo().name; - if (serverName != QL1S("lxqt-notificationd")) - { - if (serverName.isEmpty()) - warningLabel->setText(tr("Warning: No notifications daemon is running.\n" - "A fallback will be used.")); - else - warningLabel->setText(tr("Warning: A third-party notifications daemon (%1) is running.\n" - "These settings won't have any effect on it!").arg(serverName)); - } + LXQt::Notification *serverTest = new LXQt::Notification(QString(), this); + serverTest->queryServerInfo(); + + // Display some reasonable message if notification daemon is not responding for a while + QTimer *saneQueryTimeout = new QTimer(this); + saneQueryTimeout->setSingleShot(true); + saneQueryTimeout->start(200); + connect(saneQueryTimeout, &QTimer::timeout, [this]() { + warningLabel->setText(tr("Warning: notifications daemon is slow to respond.\n" + "Keep trying to connect…")); + }); + + connect(serverTest, &LXQt::Notification::serverInfoReady, [this, serverTest, saneQueryTimeout]() { + QString serverName = serverTest->serverInfo().name; + if (serverName != QL1S("lxqt-notificationd")) + { + if (serverName.isEmpty()) + warningLabel->setText(tr("Warning: No notifications daemon is running.\n" + "A fallback will be used.")); + else + warningLabel->setText(tr("Warning: A third-party notifications daemon (%1) is running.\n" + "These settings won't have any effect on it!").arg(serverName)); + } + serverTest->deleteLater(); + saneQueryTimeout->stop(); + saneQueryTimeout->deleteLater(); + + }); } BasicSettings::~BasicSettings() diff -Nru lxqt-notificationd-0.14.1/config/basicsettings.h lxqt-notificationd-0.15.0/config/basicsettings.h --- lxqt-notificationd-0.14.1/config/basicsettings.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/basicsettings.h 2020-04-23 18:22:38.000000000 +0000 @@ -37,7 +37,7 @@ { Q_OBJECT public: - explicit BasicSettings(LXQt::Settings* settings, QWidget* parent = 0); + explicit BasicSettings(LXQt::Settings* settings, QWidget* parent = nullptr); ~BasicSettings(); public slots: diff -Nru lxqt-notificationd-0.14.1/config/mainwindow.h lxqt-notificationd-0.15.0/config/mainwindow.h --- lxqt-notificationd-0.14.1/config/mainwindow.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/mainwindow.h 2020-04-23 18:22:38.000000000 +0000 @@ -36,7 +36,7 @@ Q_OBJECT public: - explicit MainWindow(QWidget* parent = 0); + explicit MainWindow(QWidget* parent = nullptr); ~MainWindow(); }; diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_arn.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_arn.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_arn.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_arn.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,128 @@ + + + + + AdvancedSettings + + + Sizes + + + + + Width: + + + + + + px + + + + + Spacing: + + + + + Duration + + + + + Some notifications set their own on-screen duration. + + + + + Default duration: + + + + + sec + + + + + Unattended Notifications + + + + + How many to save: + + + + + + Application name is on the top of notification. + + + + + Ignore these applications: + + + + + app1,app2,app3 + + + + + BasicSettings + + + Basic Settings + + + + + Position on screen + + + + + <b>Warning:</b> No notifications daemon is running. +A fallback will be used. + + + + + <b>Warning:</b> A third-party notifications daemon (%1) is running. +These settings won't have any effect on it! + + + + + Notification demo + + + + + This is a test notification. + All notifications will now appear here on LXQt. + + + + + MainWindow + + + Desktop Notifications + + + + + Basic Settings + + + + + Advanced Settings + + + + diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ar.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_ar.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ar.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_ar.ts 2020-04-23 18:22:38.000000000 +0000 @@ -52,18 +52,18 @@ How many to save: - + كم من واحد تريد أن يُحفظ: Application name is on the top of notification. - + يُعرض امس التطبيق أعلى الإخطار. Ignore these applications: - + تجاهَل التطبيقات الآتية: @@ -107,7 +107,7 @@ This is a test notification. All notifications will now appear here on LXQt. هذا إخطار تجريبي. -ستظهر كل الإخطارات هنا في لكسكيوت. +ستظهر كل الإخطارات هنا في «لكسكيوت». diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ast.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_ast.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ast.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_ast.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,128 @@ + + + + + AdvancedSettings + + + Sizes + + + + + Width: + + + + + + px + + + + + Spacing: + + + + + Duration + + + + + Some notifications set their own on-screen duration. + + + + + Default duration: + + + + + sec + + + + + Unattended Notifications + + + + + How many to save: + + + + + + Application name is on the top of notification. + + + + + Ignore these applications: + + + + + app1,app2,app3 + + + + + BasicSettings + + + Basic Settings + + + + + Position on screen + + + + + <b>Warning:</b> No notifications daemon is running. +A fallback will be used. + + + + + <b>Warning:</b> A third-party notifications daemon (%1) is running. +These settings won't have any effect on it! + + + + + Notification demo + + + + + This is a test notification. + All notifications will now appear here on LXQt. + + + + + MainWindow + + + Desktop Notifications + + + + + Basic Settings + + + + + Advanced Settings + + + + diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_cs.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_cs.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_cs.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_cs.ts 2020-04-23 18:22:38.000000000 +0000 @@ -52,7 +52,7 @@ How many to save: - Kolik uložit: + Kolik nejnovějších držet uložených: diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_da.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_da.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_da.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_da.ts 2020-04-23 18:22:38.000000000 +0000 @@ -32,7 +32,7 @@ Some notifications set their own on-screen duration. - Nogle notifikationer sætter deres egen varighed for hvor længe de blive vist på skærmen. + Nogle underretninger sætter deres egen varighed for hvor længe de blive vist på skærmen. @@ -47,7 +47,7 @@ Unattended Notifications - Notifikationer uden opsyn + Ikke-tilsete underretninger @@ -58,7 +58,7 @@ Application name is on the top of notification. - Programnavnet er øverst i notifikationen. + Programnavnet er øverst i underretningen. @@ -87,27 +87,27 @@ <b>Warning:</b> No notifications daemon is running. A fallback will be used. - <b>Advarsel:</b> der kører ikke noget notifikationsbaggrundsprogram. + <b>Advarsel:</b> der kører ikke noget underretningsbaggrundsprogram. En reserve vil blive brugt. <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! - <b>Advarsel:</b> der kører et tredjeparts notifikationsbaggrundsprogram (%1). + <b>Advarsel:</b> der kører et tredjeparts underretningsbaggrundsprogram (%1). Disse indstillinger vil ikke have nogen effekt på det! Notification demo - Notifikationsdemo + Underretningsdemo This is a test notification. All notifications will now appear here on LXQt. - Dette er en test-notifikation. - Alle notifikationer vises her i LXQt. + Dette er en test-underretning. + Alle underretninger vises her i LXQt. @@ -115,7 +115,7 @@ Desktop Notifications - Skrivebordsnotifikationer + Skrivebordsunderretninger diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_en_GB.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_en_GB.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_en_GB.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_en_GB.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,131 @@ + + + + + AdvancedSettings + + + Sizes + Sizes + + + + Width: + Width: + + + + + px + px + + + + Spacing: + Spacing: + + + + Duration + Duration + + + + Some notifications set their own on-screen duration. + Some notifications set their own on-screen duration. + + + + Default duration: + Default duration: + + + + sec + sec + + + + Unattended Notifications + Unattended Notifications + + + + How many to save: + How many to save: + + + + + Application name is on the top of notification. + Application name is on the top of notification. + + + + Ignore these applications: + Ignore these applications: + + + + app1,app2,app3 + app1,app2,app3 + + + + BasicSettings + + + Basic Settings + Basic Settings + + + + Position on screen + Position on screen + + + + <b>Warning:</b> No notifications daemon is running. +A fallback will be used. + <b>Warning:</b> No notifications daemon is running. +A fallback will be used. + + + + <b>Warning:</b> A third-party notifications daemon (%1) is running. +These settings won't have any effect on it! + <b>Warning:</b> A third-party notifications daemon (%1) is running. +These settings won't have any effect on it! + + + + Notification demo + Notification demo + + + + This is a test notification. + All notifications will now appear here on LXQt. + This is a test notification. + All notifications will now appear here on LXQt. + + + + MainWindow + + + Desktop Notifications + Desktop Notifications + + + + Basic Settings + Basic Settings + + + + Advanced Settings + Advanced Settings + + + diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_fr.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_fr.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_fr.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_fr.ts 2020-04-23 18:22:38.000000000 +0000 @@ -17,7 +17,7 @@ px - px(s) + px @@ -42,7 +42,7 @@ sec - seconde(s) + sec @@ -87,14 +87,14 @@ <b>Warning:</b> No notifications daemon is running. A fallback will be used. - <b>Attention :</b> Aucun daemon de notification n'est en cours d'exécution. -Un daemon par défaut sera utilisé. + <b>Attention :</b> Aucun processus de notification n'est en cours d'exécution. +Un processus par défaut sera utilisé. <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! - <b>Attention :</b> Un autre daemon de notification (%1) est actif. + <b>Attention :</b> Un autre processus de notification (%1) est actif. Ces réglages n'auront aucun effet sur lui ! diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_gl.desktop lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_gl.desktop --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_gl.desktop 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_gl.desktop 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,3 @@ +Name[gl]=Notificacións do escritorio +GenericName[gl]=Configuración das notificacións do LXQt +Comment[gl]=Configurar as notificacións do escritorio diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_gl.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_gl.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_gl.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_gl.ts 2020-04-23 18:22:38.000000000 +0000 @@ -58,12 +58,12 @@ Application name is on the top of notification. - O nome do aplicativo atópase na parte superior da notificación. + O nome da aplicación atópase na parte superior da notificación. Ignore these applications: - Ignorar estes aplicativos: + Ignorar estas aplicacións: diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_hu.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_hu.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_hu.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_hu.ts 2020-04-23 18:22:38.000000000 +0000 @@ -17,17 +17,17 @@ px - pixel + px Spacing: - Térköz: + Helyköz: Duration - Tartam + Időtartam @@ -37,7 +37,7 @@ Default duration: - Alapértelmezett tartam: + Alapértelmezett időtartam: @@ -47,28 +47,28 @@ Unattended Notifications - + Olvasatlan értesítések How many to save: - + Értesítési előzmények: Application name is on the top of notification. - + Az alkalmazás neve az értesítés tetején látható. Ignore these applications: - + Hagyja figyelmen kívül ezeket az alkalmazásokat: app1,app2,app3 - + alkalmazás1,alkalmazás2,alkalmazás3, @@ -81,14 +81,14 @@ Position on screen - Hely + Helyzet <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Figyelem:</b> Értesítő démon nem fut. -A vésztartalék használatos. +A tartalék használatos. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ja.desktop lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_ja.desktop --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ja.desktop 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_ja.desktop 2020-04-23 18:22:38.000000000 +0000 @@ -1,4 +1,4 @@ # Translations -GenericName[ja]=LXQtフリーデスクトップ通知の設定 -Name[ja]=LXQtフリーデスクトップ通知の設定 -Comment[ja]=LXQtデスクトップでフリーデスクトップ通知を設定 +Name[ja]=デスクトップ通知 +GenericName[ja]=デスクトップ通知 +Comment[ja]=LXQt デスクトップの通知を設定します diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ja.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_ja.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ja.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_ja.ts 2020-04-23 18:22:38.000000000 +0000 @@ -17,12 +17,12 @@ px - + ピクセル Spacing: - 空白: + 余白: @@ -47,28 +47,28 @@ Unattended Notifications - + 未確認の通知 How many to save: - + 保存する件数: Application name is on the top of notification. - + アプリケーションの名前は、表示された通知の一番上にあります。 Ignore these applications: - + 無視するアプリケーション: app1,app2,app3 - + app1,app2,app3 @@ -81,7 +81,7 @@ Position on screen - スクリーン上での位置 + 画面上での位置 @@ -95,7 +95,7 @@ <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>警告:</b> サードパーティーの通知デーモン (%1) が実行されています。 -これらの設定は影響をおよぼしません! +ここでの設定は影響をおよぼしません! @@ -107,7 +107,7 @@ This is a test notification. All notifications will now appear here on LXQt. これは通知のテストです。 - 全ての通知はLXQtデスクトップのこの場所に表示されます。 + 全ての通知は LXQt デスクトップのこの場所に表示されます。 @@ -125,7 +125,7 @@ Advanced Settings - 高度な設定 + 詳細設定 diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_nb_NO.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_nb_NO.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_nb_NO.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_nb_NO.ts 2020-04-23 18:22:38.000000000 +0000 @@ -17,7 +17,7 @@ px - pksl + pk @@ -52,7 +52,7 @@ How many to save: - Antall som lagres: + Hvor mange som lagres: diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_nl.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_nl.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_nl.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_nl.ts 2020-04-23 18:22:38.000000000 +0000 @@ -47,28 +47,28 @@ Unattended Notifications - + Niet afgehandelde notificaties How many to save: - + Aantal op te slaan: Application name is on the top of notification. - + Applicatienaam staat bovenaan de notificatie. Ignore these applications: - + Negeer deze applicaties: app1,app2,app3 - + app1,app2,app3 @@ -87,27 +87,27 @@ <b>Warning:</b> No notifications daemon is running. A fallback will be used. - <b>Waarschuwing:</b> er draait geen achtergronddienst voor kennisgevingen. + <b>Waarschuwing:</b> er draait geen achtergronddienst voor notificaties. Er zal een vervangende dienst worden gebruikt. <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! - <b>Waarschuwing:</b> er draait al een andere achtergrondddienst voor kennisgevingen (%1). + <b>Waarschuwing:</b> er draait al een andere achtergrondddienst voor notificaties (%1). Deze instellingen zullen daarop geen invloed hebben! Notification demo - Proefkennisgeving + Voorbeeldnotificatie This is a test notification. All notifications will now appear here on LXQt. - Dit is een proefkennisgeving. -Alle kennisgevingen zullen nu hier verschijnen op LXQt. + Dit is een voorbeeldnotificatie. +Alle notificaties zullen nu hier verschijnen op LXQt. @@ -115,7 +115,7 @@ Desktop Notifications - Bureaubladkennisgevingen + Bureaubladnotificaties diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_pt_BR.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_pt_BR.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_pt_BR.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_pt_BR.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,131 @@ + + + + + AdvancedSettings + + + Sizes + Tamanhos + + + + Width: + Largura: + + + + + px + px + + + + Spacing: + Espaçamento: + + + + Duration + Duração + + + + Some notifications set their own on-screen duration. + Algumas notificações definem as suas próprias durações na tela. + + + + Default duration: + Duração padrão: + + + + sec + seg + + + + Unattended Notifications + Notificações desconsideradas + + + + How many to save: + Quantas salvar: + + + + + Application name is on the top of notification. + Nome da aplicação como título da notificação. + + + + Ignore these applications: + Ignorar estas aplicações: + + + + app1,app2,app3 + app1,app2,app3 + + + + BasicSettings + + + Basic Settings + Configurações básicas + + + + Position on screen + Posição na tela + + + + <b>Warning:</b> No notifications daemon is running. +A fallback will be used. + <b>Atenção:</b> Nenhum daemon de notificações está sendo executado. +Um fallback será utilizado. + + + + <b>Warning:</b> A third-party notifications daemon (%1) is running. +These settings won't have any effect on it! + <b>Atenção:</b> Um daemon de notificação externo (%1) está sendo executado. +Estas configurações não surtirão efeito nele! + + + + Notification demo + Notificação de teste + + + + This is a test notification. + All notifications will now appear here on LXQt. + Esta é uma notificação para testes. + Todas as notificações no LXQt serão exibidas aqui. + + + + MainWindow + + + Desktop Notifications + Notificações do Desktop + + + + Basic Settings + Definições básicas + + + + Advanced Settings + Definições avançadas + + + diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_sk_SK.ts lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_sk_SK.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_sk_SK.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/config/translations/lxqt-config-notificationd_sk_SK.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,131 @@ + + + + + AdvancedSettings + + + Sizes + Veľkosti + + + + Width: + Šírka: + + + + + px + px + + + + Spacing: + Rozostup: + + + + Duration + Doba trvania + + + + Some notifications set their own on-screen duration. + Niektoré oznámenia si nastavujú vlastnú dobu trvania zobrazenia. + + + + Default duration: + Preddefinovaná doba trvania: + + + + sec + Sek + + + + Unattended Notifications + Nevidené oznámenia + + + + How many to save: + Koľko má byť uložených: + + + + + Application name is on the top of notification. + Názov aplikácie sa nachádza na začiatku oznámenia. + + + + Ignore these applications: + Ignorovať tieto aplikácie: + + + + app1,app2,app3 + apl1,apl2,apl3 + + + + BasicSettings + + + Basic Settings + Základné nastavenia + + + + Position on screen + Pozície na obrazovke + + + + <b>Warning:</b> No notifications daemon is running. +A fallback will be used. + <b>Varovanie:</b> Není spustená žiadna služba oznamovania. +Použije se náhrada. + + + + <b>Warning:</b> A third-party notifications daemon (%1) is running. +These settings won't have any effect on it! + <b>Varovanie:</b> Je spustená ďalšia služba oznamovania (od tretej strany) (%1). +Toto nastavenie na ňu nemá žiaden vplyv! + + + + Notification demo + Skúšobné oznámenie + + + + This is a test notification. + All notifications will now appear here on LXQt. + Toto je skúšobné oznámenie. +Všetky oznámenia sa teraz budú objavovať tu na LXQt. + + + + MainWindow + + + Desktop Notifications + Oznámenie na ploche + + + + Basic Settings + Základné nastavenia + + + + Advanced Settings + Pokročilé nastavenia + + + diff -Nru lxqt-notificationd-0.14.1/debian/changelog lxqt-notificationd-0.15.0/debian/changelog --- lxqt-notificationd-0.14.1/debian/changelog 2020-03-22 15:48:39.000000000 +0000 +++ lxqt-notificationd-0.15.0/debian/changelog 2020-06-04 19:03:55.000000000 +0000 @@ -1,8 +1,12 @@ -lxqt-notificationd (0.14.1-1ubuntu2) focal; urgency=medium +lxqt-notificationd (0.15.0-0ubuntu1) groovy; urgency=medium - * No-change rebuild for libgcc-s1 package name change. + * New upstream release. + - Update upstream signing key. + - Update LXQt build depends. + * Update Standards-version to 4.5.0, no changes needed. + * Migrate to using debhelper-compat. - -- Matthias Klose Sun, 22 Mar 2020 16:48:39 +0100 + -- Simon Quigley Thu, 04 Jun 2020 14:03:55 -0500 lxqt-notificationd (0.14.1-1ubuntu1) focal; urgency=medium diff -Nru lxqt-notificationd-0.14.1/debian/compat lxqt-notificationd-0.15.0/debian/compat --- lxqt-notificationd-0.14.1/debian/compat 2020-01-29 21:15:02.000000000 +0000 +++ lxqt-notificationd-0.15.0/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -12 diff -Nru lxqt-notificationd-0.14.1/debian/control lxqt-notificationd-0.15.0/debian/control --- lxqt-notificationd-0.14.1/debian/control 2020-01-29 21:15:02.000000000 +0000 +++ lxqt-notificationd-0.15.0/debian/control 2020-06-04 19:03:35.000000000 +0000 @@ -6,14 +6,14 @@ Andrew Lee (李健秋) Section: x11 Priority: optional -Build-Depends: debhelper (>= 12), +Build-Depends: debhelper-compat (= 12), libkf5windowsystem-dev, - liblxqt0-dev (>= 0.14.0~), + liblxqt0-dev (>= 0.15.0), libqt5svg5-dev, libqt5x11extras5-dev, libx11-dev, qtbase5-private-dev -Standards-Version: 4.3.0 +Standards-Version: 4.5.0 Vcs-Browser: https://phab.lubuntu.me/source/lxqt-notificationd/ Vcs-Git: https://phab.lubuntu.me/source/lxqt-notificationd.git XS-Debian-Vcs-Browser: https://salsa.debian.org/lxqt-team/lxqt-notificationd diff -Nru lxqt-notificationd-0.14.1/debian/upstream/signing-key.asc lxqt-notificationd-0.15.0/debian/upstream/signing-key.asc --- lxqt-notificationd-0.14.1/debian/upstream/signing-key.asc 2020-01-29 21:15:02.000000000 +0000 +++ lxqt-notificationd-0.15.0/debian/upstream/signing-key.asc 2020-06-04 19:03:35.000000000 +0000 @@ -1,50 +1,52 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- - -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 -=h7ww +-----BEGIN PGP PUBLIC KEY BLOCK----- + +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 +sw== +=gSIv -----END PGP PUBLIC KEY BLOCK----- diff -Nru lxqt-notificationd-0.14.1/src/notificationarea.h lxqt-notificationd-0.15.0/src/notificationarea.h --- lxqt-notificationd-0.14.1/src/notificationarea.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/notificationarea.h 2020-04-23 18:22:38.000000000 +0000 @@ -40,7 +40,7 @@ Q_OBJECT public: - explicit NotificationArea(QWidget *parent = 0); + explicit NotificationArea(QWidget *parent = nullptr); /*! An access to \c NotificationLayout to connect signals and slots in \c Notifyd */ diff -Nru lxqt-notificationd-0.14.1/src/notification.h lxqt-notificationd-0.15.0/src/notification.h --- lxqt-notificationd-0.14.1/src/notification.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/notification.h 2020-04-23 18:22:38.000000000 +0000 @@ -54,7 +54,7 @@ const QString &summary, const QString &body, const QString &icon, int timeout, const QStringList& actions, const QVariantMap& hints, - QWidget *parent = 0); + QWidget *parent = nullptr); /*! Set new values (update) for existing notification. * Parameters are described in \c Notifyd::Notify() @@ -140,7 +140,7 @@ { Q_OBJECT public: - NotificationTimer(QObject *parent=0); + NotificationTimer(QObject *parent = nullptr); public slots: void start(int msec); diff -Nru lxqt-notificationd-0.14.1/src/notifyd.h lxqt-notificationd-0.15.0/src/notifyd.h --- lxqt-notificationd-0.14.1/src/notifyd.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/notifyd.h 2020-04-23 18:22:38.000000000 +0000 @@ -48,7 +48,7 @@ Q_OBJECT public: - explicit Notifyd(QObject* parent = 0); + explicit Notifyd(QObject* parent = nullptr); virtual ~Notifyd(); public slots: diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_arn.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_arn.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_arn.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_arn.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,40 @@ + + + + + NotificationActionsComboWidget + + + Actions: + + + + + OK + + + + + Notifyd + + + Clear All + + + + + Options + + + + + + + %n Unattended Notification(s) + + + + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ar.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ar.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ar.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ar.ts 2020-04-23 18:22:38.000000000 +0000 @@ -11,7 +11,7 @@ OK - حسنا + حسنًا @@ -26,12 +26,19 @@ Options خيارات - + - - - %1 Unattended Notification(s) - $1 إشعارات غير مشاهدة + + + %n Unattended Notification(s) + + + + + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ast.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ast.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ast.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ast.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,40 @@ + + + + + NotificationActionsComboWidget + + + Actions: + + + + + OK + + + + + Notifyd + + + Clear All + + + + + Options + + + + + + + %n Unattended Notification(s) + + + + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ca.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ca.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ca.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ca.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options Opcions - + - - - %1 Unattended Notification(s) - %1 notificaci(ó/ons) desates(a/es) + + + %n Unattended Notification(s) + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_cs.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_cs.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_cs.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_cs.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,16 @@ Options Volby - + - - - %1 Unattended Notification(s) - %1 nespatřených oznámení + + + %n Unattended Notification(s) + + %n nepřečtené oznámení + %n nepřečtená oznámení + %n nepřečtených oznámení + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_cy.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_cy.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_cy.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_cy.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,18 @@ Options - + - - - %1 Unattended Notification(s) - + + + %n Unattended Notification(s) + + + + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_da.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_da.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_da.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_da.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options Valgmuligheder - + - - - %1 Unattended Notification(s) - %1 notifikation(er) uden opsyn + + + %n Unattended Notification(s) + + %n ikke-tilsete underretning + %n ikke-tilsete underretninger + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_de.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_de.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_de.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_de.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options Optionen - + - - - %1 Unattended Notification(s) - %1 Unbeaufsichtigte Benachrichtigung(en) + + + %n Unattended Notification(s) + + %n unbeaufsichtigte Benachrichtigung + %n unbeaufsichtigte Benachrichtigungen + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_el.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_el.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_el.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_el.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options Επιλογές - + - - - %1 Unattended Notification(s) - Ανεπίβλεπτες ειδοποιήσεις: %1 + + + %n Unattended Notification(s) + + %n Ανεπίβλεπτη-ες ειδοποίηση-εις + %n Ανεπίβλεπτη-ες ειδοποίηση-εις + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_en_GB.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_en_GB.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_en_GB.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_en_GB.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,40 @@ + + + + + NotificationActionsComboWidget + + + Actions: + Actions: + + + + OK + OK + + + + Notifyd + + + Clear All + Clear All + + + + Options + Options + + + + + + %n Unattended Notification(s) + + + + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_es.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_es.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_es.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_es.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options Opciones - + - - - %1 Unattended Notification(s) - Hay %1 notificaciones desatendidas + + + %n Unattended Notification(s) + + %n notificación desatendida + %n notificaciones desatendidas + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_fr.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_fr.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_fr.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_fr.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options Options - + - - - %1 Unattended Notification(s) - %1 Notification(s) sans surveillance + + + %n Unattended Notification(s) + + %n Nouvelle(s) notificattion(s) + %n Nouvelles notifications + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_gl.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_gl.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_gl.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_gl.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options Opcións - + - - - %1 Unattended Notification(s) - %1 notificación/s) desatendida(s) + + + %n Unattended Notification(s) + + %n notificación desatendida + %n notificacións desatendidas + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_he.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_he.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_he.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_he.ts 2020-04-23 18:22:38.000000000 +0000 @@ -19,19 +19,22 @@ Clear All - + לפנות הכול Options - + אפשרויות - + - - - %1 Unattended Notification(s) - + + + %n Unattended Notification(s) + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_hu.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_hu.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_hu.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_hu.ts 2020-04-23 18:22:38.000000000 +0000 @@ -6,7 +6,7 @@ Actions: - Akciók: + Műveletek: @@ -19,19 +19,22 @@ Clear All - + Tisztítás Options - + Beállítások - + - - - %1 Unattended Notification(s) - + + + %n Unattended Notification(s) + + %n olvasatlan értesítés + %n olvasatlan értesítés + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_id.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_id.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_id.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_id.ts 2020-04-23 18:22:38.000000000 +0000 @@ -19,19 +19,21 @@ Clear All - Bersihkan Semua + Hapus Semua Options Plihan - + - - - %1 Unattended Notification(s) - %1 Pemberitahuan yang tidak diawasi + + + %n Unattended Notification(s) + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_it.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_it.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_it.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_it.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options Opzioni - + - - - %1 Unattended Notification(s) - %1 Notifica(e) non vista + + + %n Unattended Notification(s) + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ja.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ja.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ja.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ja.ts 2020-04-23 18:22:38.000000000 +0000 @@ -19,19 +19,21 @@ Clear All - 全てクリア + すべてを消去する Options オプション - + - - - %1 Unattended Notification(s) - %1個の未読通知 + + + %n Unattended Notification(s) + + 未確認の通知が %n 件あります + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_lt.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_lt.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_lt.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_lt.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,16 @@ Options Parinktys - + - - - %1 Unattended Notification(s) - %1 neperžiūrėti pranešimai + + + %n Unattended Notification(s) + + %n nepastebėtas pranešimas + %n nepastebėti pranešimai + %n nepastebėtų pranešimų + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_lv.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_lv.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_lv.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_lv.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,16 @@ Options - + - - - %1 Unattended Notification(s) - + + + %n Unattended Notification(s) + + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_nb_NO.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_nb_NO.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_nb_NO.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_nb_NO.ts 2020-04-23 18:22:38.000000000 +0000 @@ -6,12 +6,12 @@ Actions: - + Handlinger: OK - + Okei @@ -26,12 +26,15 @@ Options Valg - + - - - %1 Unattended Notification(s) - %1 varsler som kjører av seg selv + + + %n Unattended Notification(s) + + %n varsel som ikke er sett + %n varsler som ikke er sett + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_nl.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_nl.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_nl.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_nl.ts 2020-04-23 18:22:38.000000000 +0000 @@ -11,7 +11,7 @@ OK - OK + Oké @@ -19,19 +19,22 @@ Clear All - + Wis alles Options - + Opties - + - - - %1 Unattended Notification(s) - + + + %n Unattended Notification(s) + + %n onafgehandelde notificatie(s) + %n onafgehandelde notificaties + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_pl.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_pl.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_pl.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_pl.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,16 @@ Options Opcje - + - - - %1 Unattended Notification(s) - %1 pominięte powiadomienie (-a) + + + %n Unattended Notification(s) + + %n Nieodczytane powiadomienie + %n Nieodczytane powiadomienia + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_pt_BR.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_pt_BR.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_pt_BR.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_pt_BR.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,40 @@ + + + + + NotificationActionsComboWidget + + + Actions: + Ações: + + + + OK + OK + + + + Notifyd + + + Clear All + Limpar tudo + + + + Options + Opções + + + + + + %n Unattended Notification(s) + + %n Notificação Autônoma + %n Notificações Autônomas + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_pt.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_pt.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_pt.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_pt.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options Opções - + - - - %1 Unattended Notification(s) - %1 novas notificações + + + %n Unattended Notification(s) + + %n notificação pendente + %n notificações pendentes + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ru_RU.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ru_RU.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ru_RU.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ru_RU.ts 2020-04-23 18:22:38.000000000 +0000 @@ -19,19 +19,23 @@ Clear All - + Очистить всё Options - + Опции - + - - - %1 Unattended Notification(s) - + + + %n Unattended Notification(s) + + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ru.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ru.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ru.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_ru.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,16 @@ Options Параметры - + - - - %1 Unattended Notification(s) - %1 непрочитанных уведомлений + + + %n Unattended Notification(s) + + %n непрочитанное уведомление + %n непрочитанных уведомления + %n непрочитанных уведомлений + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_sk_SK.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_sk_SK.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_sk_SK.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_sk_SK.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,41 @@ + + + + + NotificationActionsComboWidget + + + Actions: + Akcia: + + + + OK + OK + + + + Notifyd + + + Clear All + Vyčistiť všetko + + + + Options + Nastavenia + + + + + + %n Unattended Notification(s) + + %n neprečítaný oznam + %n neprečítaných oznámení + %n neprečítané oznámenia + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_sv.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_sv.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_sv.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_sv.ts 2020-04-23 18:22:38.000000000 +0000 @@ -0,0 +1,40 @@ + + + + + NotificationActionsComboWidget + + + Actions: + Åtgärder: + + + + OK + OK + + + + Notifyd + + + Clear All + Rensa allt + + + + Options + Inställningar + + + + + + %n Unattended Notification(s) + + + + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_tr.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_tr.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_tr.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_tr.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options Seçenekler - + - - - %1 Unattended Notification(s) - %1 Katılımsız Bildirim(ler) + + + %n Unattended Notification(s) + + %n Görülmemiş Bildirim + %n Görülmemiş Bildirimler + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,15 @@ Options - + - - - %1 Unattended Notification(s) - + + + %n Unattended Notification(s) + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_uk.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_uk.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_uk.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_uk.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,16 @@ Options - + - - - %1 Unattended Notification(s) - + + + %n Unattended Notification(s) + + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_zh_CN.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_zh_CN.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_zh_CN.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_zh_CN.ts 2020-04-23 18:22:38.000000000 +0000 @@ -26,12 +26,14 @@ Options 选项 - + - - - %1 Unattended Notification(s) - %1 个未读通知 + + + %n Unattended Notification(s) + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_zh_TW.ts lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_zh_TW.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_zh_TW.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/src/translations/lxqt-notificationd_zh_TW.ts 2020-04-23 18:22:38.000000000 +0000 @@ -19,19 +19,21 @@ Clear All - + 全部清除 Options - + 選項 - + - - - %1 Unattended Notification(s) - + + + %n Unattended Notification(s) + + + diff -Nru lxqt-notificationd-0.14.1/test/mainwindow.h lxqt-notificationd-0.15.0/test/mainwindow.h --- lxqt-notificationd-0.14.1/test/mainwindow.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.15.0/test/mainwindow.h 2020-04-23 18:22:38.000000000 +0000 @@ -40,7 +40,7 @@ Q_OBJECT public: - explicit MainWindow(QWidget* parent = 0); + explicit MainWindow(QWidget* parent = nullptr); ~MainWindow(); public slots: