diff -Nru lxqt-notificationd-0.14.1/autostart/translations/lxqt-notifications_gl.desktop lxqt-notificationd-0.16.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.16.0/autostart/translations/lxqt-notifications_gl.desktop 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1 @@ +Name[gl]=Servizo de notificacións diff -Nru lxqt-notificationd-0.14.1/autostart/translations/lxqt-notifications_hr.desktop lxqt-notificationd-0.16.0/autostart/translations/lxqt-notifications_hr.desktop --- lxqt-notificationd-0.14.1/autostart/translations/lxqt-notifications_hr.desktop 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.16.0/autostart/translations/lxqt-notifications_hr.desktop 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1,2 @@ +# Translations +Name[hr]=Demon za obavijesti diff -Nru lxqt-notificationd-0.14.1/CHANGELOG lxqt-notificationd-0.16.0/CHANGELOG --- lxqt-notificationd-0.14.1/CHANGELOG 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/CHANGELOG 2020-11-02 09:35:42.000000000 +0000 @@ -1,3 +1,16 @@ +lxqt-notificationd-0.16.0 / 2020-11-01 +====================================== + * Avoided container detachment. + * Dropped deprecated QProcess method. + * Added an option for showing notifications in the screen with the mouse pointer. + +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.16.0/CMakeLists.txt --- lxqt-notificationd-0.14.1/CMakeLists.txt 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/CMakeLists.txt 2020-11-02 09:35:42.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.16.0") +set(QT_MINIMUM_VERSION "5.12.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.cpp lxqt-notificationd-0.16.0/config/advancedsettings.cpp --- lxqt-notificationd-0.14.1/config/advancedsettings.cpp 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/advancedsettings.cpp 2020-11-02 09:35:42.000000000 +0000 @@ -43,6 +43,7 @@ connect(widthBox, QOverload::of(&QSpinBox::valueChanged), this, &AdvancedSettings::save); connect(unattendedBox, QOverload::of(&QSpinBox::valueChanged), this, &AdvancedSettings::save); connect(blackListEdit, &QLineEdit::editingFinished, this, &AdvancedSettings::save); + connect(mousebtn, &QCheckBox::clicked, this, &AdvancedSettings::save); } AdvancedSettings::~AdvancedSettings() @@ -60,6 +61,19 @@ widthBox->setValue(mSettings->value(QL1S("width"), 300).toInt()); unattendedBox->setValue(mSettings->value(QL1S("unattendedMaxNum"), 10).toInt()); blackListEdit->setText(mSettings->value(QL1S("blackList")).toStringList().join (QL1S(","))); + + // true -> Screen with mouse + // false -> Default, notification will show up on primary screen + bool screenNotification = mSettings->value(QL1S("screenWithMouse"), false).toBool(); + + // TODO: it would be nice to put more options here such as: + // fixed screen to display notification + // notification shows in all screens (is it worthy the increased ram usage?) + + if (screenNotification) + mousebtn->setChecked(true); + else + mousebtn->setChecked(false); } void AdvancedSettings::save() @@ -68,6 +82,12 @@ mSettings->setValue(QL1S("spacing"), spacingBox->value()); mSettings->setValue(QL1S("width"), widthBox->value()); mSettings->setValue(QL1S("unattendedMaxNum"), unattendedBox->value()); + + if (mousebtn->isChecked()) + mSettings->setValue(QL1S("screenWithMouse"),true); + else + mSettings->setValue(QL1S("screenWithMouse"),false); + QString blackList = blackListEdit->text(); if (!blackList.isEmpty()) { diff -Nru lxqt-notificationd-0.14.1/config/advancedsettings.h lxqt-notificationd-0.16.0/config/advancedsettings.h --- lxqt-notificationd-0.14.1/config/advancedsettings.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/advancedsettings.h 2020-11-02 09:35:42.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/advancedsettings.ui lxqt-notificationd-0.16.0/config/advancedsettings.ui --- lxqt-notificationd-0.14.1/config/advancedsettings.ui 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/advancedsettings.ui 2020-11-02 09:35:42.000000000 +0000 @@ -7,10 +7,60 @@ 0 0 350 - 301 + 407 + + + + Unattended Notifications + + + + + + + + How many to save: + + + + + + + + + + + + + + Application name is on the top of notification. + + + Ignore these applications: + + + + + + + Application name is on the top of notification. + + + app1,app2,app3 + + + true + + + + + + + + @@ -108,7 +158,7 @@ - + Qt::Vertical @@ -121,52 +171,21 @@ - - + + - Unattended Notifications + Screen - + - - - - - How many to save: - - - - - - - - - - - - - - Application name is on the top of notification. - - - Ignore these applications: - - - - - - - Application name is on the top of notification. - - - app1,app2,app3 - - - true - - - - + + + When unchecked the notification will always show on primary screen + + + Show notifications on screen with the mouse + + diff -Nru lxqt-notificationd-0.14.1/config/basicsettings.cpp lxqt-notificationd-0.16.0/config/basicsettings.cpp --- lxqt-notificationd-0.14.1/config/basicsettings.cpp 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/basicsettings.cpp 2020-11-02 09:35:42.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.16.0/config/basicsettings.h --- lxqt-notificationd-0.14.1/config/basicsettings.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/basicsettings.h 2020-11-02 09:35:42.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.16.0/config/mainwindow.h --- lxqt-notificationd-0.14.1/config/mainwindow.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/mainwindow.h 2020-11-02 09:35:42.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.16.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.16.0/config/translations/lxqt-config-notificationd_arn.ts 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1,149 @@ + + + + + AdvancedSettings + + + Sizes + + + + + Width: + + + + + + px + + + + + Spacing: + + + + + Duration + + + + + Some notifications set their own on-screen duration. + + + + + Default duration: + + + + + sec + + + + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + + 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> notifications daemon is slow to respond. +Keep trying to connect… + + + + + <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.16.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.16.0/config/translations/lxqt-config-notificationd_ar.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes المقاسات - + Width: العرض: - - + + px بكسل - + Spacing: التباعد: - + Duration المدة - + Some notifications set their own on-screen duration. تضبط بعض الإخطارات مدة عرضها على الشاشة بنفسها. - + Default duration: المدة المبدئية: - + sec ثا - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications - + How many to save: - + كم من واحد تريد أن يُحفظ: - - + + Application name is on the top of notification. - + يُعرض امس التطبيق أعلى الإخطار. - + Ignore these applications: - + تجاهَل التطبيقات الآتية: - + app1,app2,app3 @@ -84,30 +99,36 @@ المكان على الشاشة - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>تحذير:</b> لا عفريت إخطارات يعمل. سأستخدم أحد الاحتياطيين. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>تحذير:</b> هناك عفريت من طرف ثالث (%1) يعمل. لن تؤثّر هذه الإعدادات عليه! - + Notification demo نموذج لإخطار - + 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.16.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.16.0/config/translations/lxqt-config-notificationd_ast.ts 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1,149 @@ + + + + + AdvancedSettings + + + Sizes + + + + + Width: + + + + + + px + + + + + Spacing: + + + + + Duration + + + + + Some notifications set their own on-screen duration. + + + + + Default duration: + + + + + sec + + + + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + + 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> notifications daemon is slow to respond. +Keep trying to connect… + + + + + <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_ca.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_ca.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ca.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_ca.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Mides - + Width: Amplada: - - + + px px - + Spacing: Espaiat: - + Duration Durada - + Some notifications set their own on-screen duration. Algunes notificacions estableixen la seva pròpia durada en pantalla. - + Default duration: Durada predeterminada: - + sec s - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Notificacions desateses - + How many to save: Quantes se n'han de desar: - - + + Application name is on the top of notification. El nom de l'aplicació es troba a la part superior de la notificació. - + Ignore these applications: Ignora aquestes aplicacions: - + app1,app2,app3 apl1,apl2,apl3 @@ -84,26 +99,32 @@ Posició en pantalla - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Advertència:</b> No hi ha cap dimoni de notificacions en execució. S'utilitzarà una retroacció. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Advertència:</b> S'està executant un dimoni de notificacions de tercers (%1). Els ajusts no prendran cap efecte! - + Notification demo Demostració de notificació - + This is a test notification. All notifications will now appear here on LXQt. Aquest és un text de notificació. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_cs.ts lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_cs.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Velikosti - + Width: Šířka: - - + + px px - + Spacing: Rozestup: - + Duration Doba trvání - + Some notifications set their own on-screen duration. Některá oznámení si nastavují svojí vlastní dobu trvání zobrazení. - + Default duration: Výchozí doba trvání: - + sec s - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Nespatřená oznámení - + How many to save: - Kolik uložit: + Kolik nejnovějších držet uložených: - - + + Application name is on the top of notification. Název aplikace se nachází na začátku oznámení. - + Ignore these applications: Ignorovat tyto aplikace: - + app1,app2,app3 apl1,apl2,apl3 @@ -84,26 +99,32 @@ Pozice na obrazovce - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Varování:</b> Není spuštěná žádná služba oznamování. 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>Varování:</b> Je spuštěná další služba oznamování (od třetí strany) (%1). Tato nastavení na ni nemají žádný vliv! - + Notification demo Zkušební oznámení - + This is a test notification. All notifications will now appear here on LXQt. Toto je zkušební oznámení. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_cy.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_cy.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_cy.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_cy.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes - + Width: - - + + px - + Spacing: - + Duration - + Some notifications set their own on-screen duration. - + Default duration: - + sec - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications - + How many to save: - - + + Application name is on the top of notification. - + Ignore these applications: - + app1,app2,app3 @@ -84,24 +99,30 @@ - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <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. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_da.ts lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_da.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Størrelser - + Width: Bredde: - - + + px px - + Spacing: Afstand: - + Duration Varighed - + 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. - + Default duration: Standardvarighed: - + sec sek. - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications - Notifikationer uden opsyn + Ikke-tilsete underretninger - + How many to save: Hvor mange der skal gemmes: - - + + Application name is on the top of notification. - Programnavnet er øverst i notifikationen. + Programnavnet er øverst i underretningen. - + Ignore these applications: Ignorer programmerne: - + app1,app2,app3 program1,program2,program3 @@ -84,30 +99,36 @@ Placering på skærmen - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <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 +136,7 @@ Desktop Notifications - Skrivebordsnotifikationer + Skrivebordsunderretninger diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_de.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_de.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_de.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_de.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Größen - + Width: Breite: - - + + px px - + Spacing: Abstand: - + Duration Dauer - + Some notifications set their own on-screen duration. Einige Benachrichtigungen setzen ihre eigene Anzeigedauer. - + Default duration: Standarddauer: - + sec Sek - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Unbeaufsichtigte Benachrichtigungen - + How many to save: Wie viele sollen gespeichert werden: - - + + Application name is on the top of notification. Anwendungsname steht oben in der Benachrichtigung. - + Ignore these applications: Diese Anwendungen ignorieren: - + app1,app2,app3 App1,App2,App3 @@ -84,26 +99,32 @@ Position auf dem Bildschirm - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Warnung:</b> Es läuft kein Benachrichtigungsdaemon. Ein Ersatz wird verwendet. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Warnung:</b> Ein Benachrichtigungsdaemon (%1) von Drittanbietern läuft. Diese Einstellungen wirken sich auf ihn nicht aus! - + Notification demo Testbenachrichtigung - + This is a test notification. All notifications will now appear here on LXQt. Dies ist eine Testbenachrichtigung. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_el.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_el.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_el.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_el.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Μεγέθη - + Width: Πλάτος: - - + + px εικ - + Spacing: Διαπόσταση: - + Duration Διάρκεια - + Some notifications set their own on-screen duration. Μερικές ειδοποιήσεις καθορίζουν τη δική τους διάρκεια εμφάνισης. - + Default duration: Διάρκεια εξ ορισμού: - + sec δευτ - + + Screen + Οθόνη + + + + When unchecked the notification will always show on primary screen + Όταν δεν είναι επιλεγμένο η ειδοποίηση θα εμφανίζεται πάντα στην κυρίως οθόνη + + + + Show notifications on screen with the mouse + Εμφάνιση των ειδοποιήσεων στην οθόνη με το ποντίκι + + + Unattended Notifications Ανεπίβλεπτες ειδοποιήσεις - + How many to save: Αριθμός αποθηκευμένων ειδοποιήσεων: - - + + Application name is on the top of notification. Το όνομα της εφαρμογής είναι στην κορυφή την ειδοποίησης. - + Ignore these applications: Αγνόηση αυτών των εφαρμογών: - + app1,app2,app3 εφαρμ1,εφαρμ2,εφαρμ3 @@ -84,26 +99,33 @@ Θέση στην οθόνη - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + <b>Προειδοποίηση:</b> ο δαίμονας ειδοποιήσεων αργεί να ανταποκριθεί. +Συνεχίζεται η προσπάθεια σύνδεσης… + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Προειδοποίηση:</b> Δεν εκτελείται κάποιος δαίμονας ειδοποιήσεων Θα χρησιμοποιηθεί η ανακατεύθυνση. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Προειδοποίηση:</b> Εκτελείται ένας δαίμονας ειδοποιήσεων τρίτων (%1). Αυτές οι ρυθμίσεις δεν θα έχουν κάποια επίδραση σε αυτόν! - + Notification demo Επίδειξη ειδοποιήσεων - + 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_en_GB.ts lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_en_GB.ts 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1,152 @@ + + + + + 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 + + + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + + 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> notifications daemon is slow to respond. +Keep trying to connect… + + + + + <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_es.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_es.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_es.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_es.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Medidas - + Width: Ancho: - - + + px px - + Spacing: Espaciado: - + Duration Duración - + Some notifications set their own on-screen duration. Algunas notificaciones establecen su propia duración en pantalla. - + Default duration: Duración por defecto: - + sec s - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Notificaciones desatendidas - + How many to save: Cuántas se guardan: - - + + Application name is on the top of notification. El nombre de la aplicación está en la parte superior de la notificación. - + Ignore these applications: Ignorar estas aplicaciones: - + app1,app2,app3 aplicación1,aplicación2,aplicación3 @@ -84,26 +99,32 @@ Posición en la pantalla - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Aviso:</b> no hay ningún demonio de notificaciones en ejecución. Se usará un medio alternativo. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Aviso:</b> un demonio de notificaciones de terceros (%1) está en ejecución. ¡Estos ajustes no tendrán ningún efecto sobre él! - + Notification demo Prueba de notificación - + This is a test notification. All notifications will now appear here on LXQt. Esto es una notificación de prueba diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_fr.ts lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_fr.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Tailles - + Width: Largeur : - - + + px - px(s) + px - + Spacing: Espace : - + Duration Durée - + Some notifications set their own on-screen duration. Certaines notifications possèdent leur propre durée. - + Default duration: Durée par défaut : - + sec - seconde(s) + sec + + + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + - + Unattended Notifications Notifications sans surveillance - + How many to save: Combien à sauvegarder : - - + + Application name is on the top of notification. Le nom de l'application est en haut de la notification. - + Ignore these applications: Ignorer ces applications : - + app1,app2,app3 app1, app2, app3 @@ -84,26 +99,32 @@ Position à l'écran - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <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 ! - + Notification demo Démo de notification - + This is a test notification. All notifications will now appear here on LXQt. Ceci est un test de notification. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_gl.desktop lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_gl.desktop 2020-11-02 09:35:42.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.16.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.16.0/config/translations/lxqt-config-notificationd_gl.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Medidas - + Width: Largo: - - + + px - + Spacing: Espazado: - + Duration Duración - + Some notifications set their own on-screen duration. Algunhas notificacións estabelecen a súa propia duración en pantalla. - + Default duration: Duración predeterminada: - + sec seg - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Notificacións desatendidas - + How many to save: Cantos hai para gardar: - - + + 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: - + app1,app2,app3 apli1,apli2,apli3 @@ -84,26 +99,32 @@ Posición na pantalla - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Aviso:</b> Non hai ningún servizo de notificación en execución. Empregarase un método alternativo. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Aviso:</b> Hai un servizo de notificacións de terceiros (%1) en execución. Estes axustes non lle afectarán! - + Notification demo Proba de notificación - + This is a test notification. All notifications will now appear here on LXQt. Isto é unha notificación de proba. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_hr.desktop lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_hr.desktop --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_hr.desktop 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_hr.desktop 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1,4 @@ +# Translations +Name[hr]=Obavijesti radne površine +GenericName[hr]=LXQt postavke obavijesti +Comment[hr]=Konfiguriraj obavijesti radne površine diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_hr.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_hr.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_hr.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_hr.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,71 +4,86 @@ AdvancedSettings - + Width: - + Širina: - + Spacing: - + Razmaci: - + Duration - + Trajanje - + Some notifications set their own on-screen duration. - + Neke obavijesti postavljaju vlastita trajanja prikaza. - + Default duration: - + Standardno trajanje: - + sec - sek + s - + Unattended Notifications - + Nepročitane obavijesti - + How many to save: - + Broj spremljenih obavijesti: - - + + Application name is on the top of notification. - + Ime programa se nalazi pri vrhu obavijesti. - + Ignore these applications: - + Zanemari ove programe: - + app1,app2,app3 - + program1,program2,program3 - + Sizes - Veličine + Veličine - - + + px - px + px + + + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + @@ -76,35 +91,44 @@ Basic Settings - Osnovne postavke + Osnovne postavke Position on screen + Položaj na ekranu + + + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… - + <b>Warning:</b> No notifications daemon is running. A fallback will be used. - + <b>Upozorenje:</b> Nijedan demon za obavijesti nije pokrenut. +Koristit će se rezervni. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! - + <b>Upozorenje:</b> Pokrenut je jedan strani demon za obavijesti (%1). +Ove postavke na njega ne utječu! - + Notification demo - + Demonstracija obavijesti - + This is a test notification. All notifications will now appear here on LXQt. - + Ovo je testna obavijest. +Sve obavijesti će se sada ovdje pojaviti na LXQt-u. @@ -112,17 +136,17 @@ Desktop Notifications - Obavijesti radne površine + Obavijesti radne površine Basic Settings - Osnovne postavke + Osnovne postavke Advanced Settings - Napredne postavke + Napredne postavke diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_hu.desktop lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_hu.desktop --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_hu.desktop 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_hu.desktop 2020-11-02 09:35:42.000000000 +0000 @@ -1,4 +1,4 @@ # Translations -GenericName[hu]=Az asztali értesítések beállítása -Name[hu]=LXQt értesítések beállítása +GenericName[hu]=Az LXQt értesítések beállítása +Name[hu]=Értesítések Comment[hu]=A felbukkanó értesítések beállítása diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_hu.ts lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_hu.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,71 +4,86 @@ AdvancedSettings - + Sizes Méret - + Width: Szélesség: - - + + px - pixel + px - + Spacing: - Térköz: + Helyköz: - + Duration - Tartam + Időtartam - + Some notifications set their own on-screen duration. Egyes értesítések megjelenési ideje. - + Default duration: - Alapértelmezett tartam: + Alapértelmezett időtartam: - + sec mp - + + Screen + Képernyő + + + + When unchecked the notification will always show on primary screen + Ha nincs bejelölve, az értesítés mindig az elődleges képernyőn jelenik meg + + + + Show notifications on screen with the mouse + Értesítés megjelenítése azon a képernyőn, ahol az egér van + + + 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,29 +96,36 @@ Position on screen - Hely + Helyzet + + + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + <b> Figyelmeztetés: </b> az értesítési démon lassan reagál. +Kísérlet a csatlakozásra… - + <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 lesz használva. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! - <b>Figyelem:</b> Egy másik, a (%1) értesítésfigyelő már fut. -Ezek a beállítások arra már hatástalanok! + <b>Figyelem:</b> Egy másik, a (%1) értesítésdémon már fut. +Ezek a beállítások arra nincsenek hatással! - + Notification demo Értesítés bemutató - + This is a test notification. All notifications will now appear here on LXQt. Értesítési teszt. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_id.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_id.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_id.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_id.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Ukuran - + Width: Lebar: - - + + px px - + Spacing: Spasi: - + Duration Durasi - + Some notifications set their own on-screen duration. Beberapa notifikasi menetapkan durasi mereka sendiri dilayar. - + Default duration: Durasi standar: - + sec dtk - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Pemberitahuan tanpa pengawasan - + How many to save: Berapa banyak yang harus disimpan: - - + + Application name is on the top of notification. Nama aplikasi ada di bagian atas notifikasi. - + Ignore these applications: Abaikan aplikasi ini: - + app1,app2,app3 app1,app2,app3 @@ -84,26 +99,32 @@ Posisi pada layar - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Peringatan:</b> Tidak ada daemon (layanan) notifikasi yang berjalan. Fallback akan digunakan. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Peringatan:</b> Daemon notifikasi pihak ketiga (%1) sedang berjalan. Pengaturan ini tidak akan berpengaruh padanya! - + Notification demo Demo notifikasi - + This is a test notification. All notifications will now appear here on LXQt. Ini adalah tes notifikasi. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_it.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_it.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_it.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_it.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,72 +4,87 @@ AdvancedSettings - + Width: Larghezza: - + Spacing: Distanza: - + Duration Durata - + Some notifications set their own on-screen duration. Alcune notifiche impostano una durata propria. - + Default duration: Durata di default: - + sec sec - + Unattended Notifications Notifiche automatiche - + How many to save: Quante da salvare: - - + + Application name is on the top of notification. Il nome dell'applicazione è sopra la notifica. - + Ignore these applications: Ignora queste applicazioni: - + app1,app2,app3 app1,app2,app3 - + Sizes Dimensioni - - + + px px + + + Screen + Monitor + + + + When unchecked the notification will always show on primary screen + Se non è spuntata le notifiche appariranno sempre sul monitor primario + + + + Show notifications on screen with the mouse + Mostra le notifiche sul monitor con il cursore + BasicSettings @@ -84,26 +99,33 @@ Posizione sullo schermo - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + <b>Attenzione:</b> il demone delle notifiche è lento a rispondere +Provando a connettere… + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Attenzione:</b> Nessun demone di notifiche è in esecuzione. Sarà usato un sistema di riserva. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Avviso:</b> Un altro demone di notifiche (%1) è attivo. Queste impostazioni non avranno effetto per esso! - + Notification demo Anteprima notifiche - + This is a test notification. All notifications will now appear here on LXQt. Questo è una notifica di test. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ja.desktop lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_ja.desktop 2020-11-02 09:35:42.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.16.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.16.0/config/translations/lxqt-config-notificationd_ja.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,71 +4,86 @@ AdvancedSettings - + Sizes サイズ - + Width: 幅: - - + + px - + ピクセル - + Spacing: - 空白: + 余白: - + Duration 表示時間 - + Some notifications set their own on-screen duration. 通知の種類によっては独自に表示時間が設定されます。 - + Default duration: 既定の表示時間: - + sec - + + Screen + 画面 + + + + When unchecked the notification will always show on primary screen + チェックがオフの場合、通知は常に主モニターに表示します + + + + Show notifications on screen with the mouse + マウスのある画面上に表示する + + + Unattended Notifications - + 未確認の通知 - + How many to save: - + 保存する件数: - - + + Application name is on the top of notification. - + アプリケーションの名前は、表示された通知の一番上にあります。 - + Ignore these applications: - + 無視するアプリケーション: - + app1,app2,app3 - + app1,app2,app3 @@ -81,33 +96,40 @@ Position on screen - スクリーン上での位置 + 画面上での位置 + + + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + 警告: 通知デーモンの応答に時間がかかっています。 +接続しようと続けています… - + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>警告:</b> 通知デーモンが実行されていません。 以前のバージョンのものが使用されます。 - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>警告:</b> サードパーティーの通知デーモン (%1) が実行されています。 -これらの設定は影響をおよぼしません! +ここでの設定は影響をおよぼしません! - + Notification demo 通知のデモ - + This is a test notification. All notifications will now appear here on LXQt. これは通知のテストです。 - 全ての通知はLXQtデスクトップのこの場所に表示されます。 + 全ての通知は LXQt デスクトップのこの場所に表示されます。 @@ -125,7 +147,7 @@ Advanced Settings - 高度な設定 + 詳細設定 diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_lt.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_lt.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_lt.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_lt.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Dydžiai - + Width: Plotis: - - + + px piks - + Spacing: Atstumas: - + Duration Trukmė - + Some notifications set their own on-screen duration. Kai kurie pranešimai patys nusistato savo trukmę ekrane. - + Default duration: Numatytoji trukmė: - + sec sek. - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Neperžiūrėti pranešimai - + How many to save: Kiek įrašyti: - - + + Application name is on the top of notification. Programos pavadinimas yra pranešimo viršuje. - + Ignore these applications: Nepaisyti šių programų: - + app1,app2,app3 programa1,programa2,programa3 @@ -84,26 +99,32 @@ Pozicija ekrane - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Įspėjimas:</b> Nėra vykdoma jokia pranešimų tarnyba. Bus naudojamas surogatas. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Įspėjimas:</b> Yra vykdoma trečiosios šalies pranešimų tarnyba (%1). Šie nustatymai niekaip jos neįtakos! - + Notification demo Pranešimo demonstracija - + This is a test notification. All notifications will now appear here on LXQt. Tai yra bandomasis pranešimas. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_lv.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_lv.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_lv.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_lv.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Izmēri - + Width: Platums: - - + + px px - + Spacing: Atstarpe: - + Duration Ilgums - + Some notifications set their own on-screen duration. Daži paziņōjumi uzstāda paši savu rādīšanas ilgumu. - + Default duration: Noklusējuma ilgums: - + sec sek - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications - + How many to save: - - + + Application name is on the top of notification. - + Ignore these applications: - + app1,app2,app3 @@ -84,26 +99,32 @@ Novietojums uz ekrāna - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Brīdinājums:</b> Paziņojumu process nav palaists. Tiks lietots aizstājējs. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Brīdinājums:</b>Darbojas paziņojumu process (%1). Šiem iestatījumiem nebūs rezultāta! - + Notification demo Paziņojuma demonstrācija - + This is a test notification. All notifications will now appear here on LXQt. Šis ir paraugdemonstrējums. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_nb_NO.ts lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_nb_NO.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Størrelser - + Width: Bredde: - - + + px - pksl + pk - + Spacing: Avstand: - + Duration Varighet - + Some notifications set their own on-screen duration. Noen varsler bestemmer selv hvor lenge de vises. - + Default duration: Standard varighet: - + sec sek - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Varsler som kommer av seg selv - + How many to save: - Antall som lagres: + Hvor mange som lagres: - - + + Application name is on the top of notification. Programnavnet er øverst på varselet. - + Ignore these applications: Ignorer disse programmene: - + app1,app2,app3 program1,program2,program3 @@ -84,26 +99,32 @@ Plassering på skjermen - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Advarsel:</b> Ingen daemon for varsler kjører. En nødløsning vil brukes. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Advarsel:</b> En tredjeparts daemon (%1) kjører. Disse innstillingene har ingen effekt på den! - + Notification demo Varselsdemonstrasjon - + This is a test notification. All notifications will now appear here on LXQt. Dette er et testvarsel. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_nl.ts lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_nl.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,71 +4,86 @@ AdvancedSettings - + Sizes Groottes - + Width: Breedte: - - + + px px - + Spacing: Afstand: - + Duration Duur - + Some notifications set their own on-screen duration. Enkele kennisgevingen gebruiken hun eigen schermduur. - + Default duration: Standaardduur: - + sec sec - - Unattended Notifications + + Screen - - How many to save: + + When unchecked the notification will always show on primary screen - - - Application name is on the top of notification. + + Show notifications on screen with the mouse - + + 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 @@ -84,30 +99,36 @@ Positie op scherm - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <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 +136,7 @@ Desktop Notifications - Bureaubladkennisgevingen + Bureaubladnotificaties diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_pl.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_pl.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_pl.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_pl.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Rozmiar - + Width: Szerokość: - - + + px px - + Spacing: Odstęp: - + Duration Czas trwania - + Some notifications set their own on-screen duration. Niektóre powiadomienia mają swój własny czas trwania. - + Default duration: Domyślny czas trwania: - + sec sek - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Pominięte powiadomienia - + How many to save: Ile zapisać: - - + + Application name is on the top of notification. Nazwa aplikacji jest na górze powiadomienia. - + Ignore these applications: Ignoruj te aplikacje: - + app1,app2,app3 app1,app2,app3 @@ -84,26 +99,32 @@ Pozycja na ekranie - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Uwaga:</b> Żadna usługa powiadomień nie jest uruchomiona. Zostanie użyty zamiennik. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Uwaga:</b> Inny daemon powiadomień (%1) jest uruchomiony. Te ustawienia nie będą miały żadnego wpływu na jego działanie! - + Notification demo Podgląd powiadomienia - + This is a test notification. All notifications will now appear here on LXQt. To jest testowe powiadomienie. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_pt_BR.ts lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_pt_BR.ts 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1,153 @@ + + + + + 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 + + + + Screen + Tela + + + + When unchecked the notification will always show on primary screen + Quando desmarcada, a notificação sempre será exibida na tela principal + + + + Show notifications on screen with the mouse + Exibir notificações na tela com o mouse + + + + 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> notifications daemon is slow to respond. +Keep trying to connect… + <b>Atenção:</b> o daemon de notificações demora para responder. +Continua tentando se conectar… + + + + <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_pt.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_pt.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_pt.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_pt.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,72 +4,87 @@ AdvancedSettings - + Width: Largura: - + Spacing: Espaçamento: - + Duration Duração - + Some notifications set their own on-screen duration. Algumas notificações definem sua própria duração no ecrã. - + Default duration: Duração padrão: - + sec seg - + Unattended Notifications Notificações por ler - + How many to save: Notificações a guardar: - - + + Application name is on the top of notification. Nome da aplicação no topo da notificação. - + Ignore these applications: Ignorar estas aplicações: - + app1,app2,app3 app1,app2,app3 - + Sizes Tamanhos - - + + px px + + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + BasicSettings @@ -84,26 +99,32 @@ Posição no ecrã - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Atenção:</b>não existe qualquer serviço de notificações ativo. Será usada uma solução alternativa. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Atenção:</b>está a ser executado um serviço de terceiros (%1). Estas definições não produzirão qualquer efeito! - + Notification demo Demonstração de notificação - + This is a test notification. All notifications will now appear here on LXQt. Esta é uma notificação de teste. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ru.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_ru.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_ru.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_ru.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Размеры - + Width: Ширина: - - + + px пикс - + Spacing: Расстояние: - + Duration Длительность - + Some notifications set their own on-screen duration. Некоторые уведомления сами устанавливают свою длительность на экране. - + Default duration: Длительность по умолчанию: - + sec сек - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Непрочитанные уведомления - + How many to save: Сколько сохранять: - - + + Application name is on the top of notification. Имя приложения находится вверху уведомления. - + Ignore these applications: Игнорировать приложения: - + app1,app2,app3 app1,app2,app3 @@ -84,26 +99,32 @@ Расположение на экране - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Внимание:</b> Демон уведомлений не запущен. Будет использован резервный вариант. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Внимание:</b> Запущен сторонний демон уведомлений (%1). Эти настройки не будут иметь никакого эффекта для него! - + Notification demo Тестовое уведомление - + 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_sk_SK.ts lxqt-notificationd-0.16.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.16.0/config/translations/lxqt-config-notificationd_sk_SK.ts 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1,152 @@ + + + + + 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 + + + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + + 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> notifications daemon is slow to respond. +Keep trying to connect… + + + + + <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/config/translations/lxqt-config-notificationd_tr.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_tr.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_tr.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_tr.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Boyutlar - + Width: Genişlik: - - + + px px - + Spacing: Boşluk: - + Duration Ekranda Kalma Süresi - + Some notifications set their own on-screen duration. Bazı birdirimler kendi ekranda kalma süresini ayarlar. - + Default duration: Öntanımlı süre: - + sec sn - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications Katılımsız bildirimler - + How many to save: Kaydetme sayısı: - - + + Application name is on the top of notification. Uygulama adı, bildirimin üstündedir. - + Ignore these applications: Bu uygulamaları yoksay: - + app1,app2,app3 uyg1,uyg2,uyg3 @@ -84,14 +99,20 @@ Ekrandaki konumu - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Uyarı:</b> Çalışan bir bildirim programı yok. Bir geri dönüş kullanılacaktır. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Uyarı:</b> Üçüncü parti bir bildirim programı (%1) çalışıyor. @@ -99,12 +120,12 @@ Bu ayarlar onu etkilemeyecek! - + Notification demo Bildirim deneme - + This is a test notification. All notifications will now appear here on LXQt. Bu bir test bildirimidir. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes - + Width: - - + + px - + Spacing: - + Duration - + Some notifications set their own on-screen duration. - + Default duration: - + sec - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications - + How many to save: - - + + Application name is on the top of notification. - + Ignore these applications: - + app1,app2,app3 @@ -84,24 +99,30 @@ - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <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. diff -Nru lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_uk.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_uk.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_uk.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_uk.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes Розміри - + Width: Ширина: - - + + px пт - + Spacing: Пропуски: - + Duration Тривалість - + Some notifications set their own on-screen duration. Деякі повідомлення мають власну тривалість показу на екрані. - + Default duration: Типова тривалість: - + sec сек - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications - + How many to save: - - + + Application name is on the top of notification. - + Ignore these applications: - + app1,app2,app3 @@ -84,26 +99,32 @@ Позиція на екрані - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>Попередження:</b> Жодного демону повідомлень не запущено. Буде використаний аварійний. - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>Попередження</b> Інший демон повідомлень (%1) запущено. Ці налаштування не мають впливу на нього! - + Notification demo Демонстрація попереджень - + 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_zh_CN.ts lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_zh_CN.ts --- lxqt-notificationd-0.14.1/config/translations/lxqt-config-notificationd_zh_CN.ts 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/config/translations/lxqt-config-notificationd_zh_CN.ts 2020-11-02 09:35:42.000000000 +0000 @@ -4,69 +4,84 @@ AdvancedSettings - + Sizes 大小 - + Width: 宽度: - - + + px - + Spacing: 间距: - + Duration 持续时间 - + Some notifications set their own on-screen duration. 有些通知有自己的持续时间。 - + Default duration: 默认持续时间: - + sec - + + Screen + + + + + When unchecked the notification will always show on primary screen + + + + + Show notifications on screen with the mouse + + + + Unattended Notifications 未读通知 - + How many to save: 要保存的数量: - - + + Application name is on the top of notification. 应用程序名称位于通知顶部。 - + Ignore these applications: 忽略这些应用程序: - + app1,app2,app3 程序1,程序2,程序3 @@ -84,26 +99,32 @@ 在屏幕上的位置 - + + <b>Warning:</b> notifications daemon is slow to respond. +Keep trying to connect… + + + + <b>Warning:</b> No notifications daemon is running. A fallback will be used. <b>警告:</b> 没有运行通知守护进程 已使用默认值。 - + <b>Warning:</b> A third-party notifications daemon (%1) is running. These settings won't have any effect on it! <b>警告:</b> 正在运行第三方的通知守护进程(%1) 这些设置不会有任何效果! - + Notification demo 通知示例 - + This is a test notification. All notifications will now appear here on LXQt. 这是一则测试通知 diff -Nru lxqt-notificationd-0.14.1/debian/changelog lxqt-notificationd-0.16.0/debian/changelog --- lxqt-notificationd-0.14.1/debian/changelog 2020-03-22 15:48:39.000000000 +0000 +++ lxqt-notificationd-0.16.0/debian/changelog 2021-01-10 21:48:28.000000000 +0000 @@ -1,47 +1,46 @@ -lxqt-notificationd (0.14.1-1ubuntu2) focal; urgency=medium +lxqt-notificationd (0.16.0-0~ppa1) focal; urgency=medium - * No-change rebuild for libgcc-s1 package name change. + * Sync with debian. - -- Matthias Klose Sun, 22 Mar 2020 16:48:39 +0100 + -- Julien Lavergne Sun, 10 Jan 2021 22:48:28 +0100 -lxqt-notificationd (0.14.1-1ubuntu1) focal; urgency=medium +lxqt-notificationd (0.16.0-1) unstable; urgency=medium - * Update build depends according to merge from debian. - - -- Raman Sarda Thu, 30 Jan 2020 02:45:02 +0530 - -lxqt-notificationd (0.14.1-0ubuntu1) disco; urgency=medium + [ Alf Gaida ] + * Switched to gbp + * Bumped Standards-Version to 4.4.0, no changes needed + [ Andrew Lee (李健秋) ] * New upstream release. - * Run wrap-and-sort. - -- Simon Quigley Sat, 09 Mar 2019 13:08:37 -0600 + -- Andrew Lee (李健秋) Wed, 06 Jan 2021 17:26:15 +0800 -lxqt-notificationd (0.14.0-0ubuntu1) disco; urgency=medium +lxqt-notificationd (0.14.1-1) unstable; urgency=medium - * New upstream release. - - Bump build dependencies. - - Remove reverse-applicable patches. - * Bump Standards-version to 4.3.0, no changes needed. - * Bump debhelper compat to 12, no changes needed. - * Add a lxqt-notificationd-l10n package. + * Cherry-picking new upstream version 0.14.1. + * Bumped minimum version liblxqt0-dev (>= 0.14.1~) - -- Simon Quigley Sat, 26 Jan 2019 00:22:05 -0600 + -- Alf Gaida Tue, 26 Feb 2019 01:52:36 +0100 -lxqt-notificationd (0.13.0-0ubuntu2) cosmic; urgency=medium +lxqt-notificationd (0.14.0-1) unstable; urgency=medium - * Bump Standards-version to 4.1.5, no changes needed. - * Keep notification height when others are added and/or removed. + * Cherry-picking new upstream version 0.14.0. + * Bumped Standards to 4.3.0, no changes needed + * Dropped d/compat, use debhelper-compat = 12, no changes needed + * Fixed years in d/copyright + * Bumped minimum version liblxqt0-dev (>= 0.14.0~) + * Removed obsolete PULL_TRANSLATIONS= OFF from dh_auto_configure + * Added l10n-package, moved from lxqt-l10n + * Added d/upstream/metadata - -- Simon Quigley Sat, 14 Jul 2018 01:45:12 -0500 + -- Alf Gaida Sun, 27 Jan 2019 12:41:20 +0100 -lxqt-notificationd (0.13.0-0ubuntu1) cosmic; urgency=medium +lxqt-notificationd (0.13.0-1) unstable; urgency=medium - * New upstream release. - * Update Vcs-* and Maintainer to Lubuntu values. - * Update build dependencies. + * Cherry-picking new upstream version 0.13.0. + * Bumped build dependency liblxqt0-dev to >= 0.13.0~ - -- Simon Quigley Tue, 22 May 2018 23:38:43 -0500 + -- Alf Gaida Thu, 24 May 2018 21:45:09 +0200 lxqt-notificationd (0.12.0-4) unstable; urgency=medium diff -Nru lxqt-notificationd-0.14.1/debian/compat lxqt-notificationd-0.16.0/debian/compat --- lxqt-notificationd-0.14.1/debian/compat 2020-01-29 21:15:02.000000000 +0000 +++ lxqt-notificationd-0.16.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.16.0/debian/control --- lxqt-notificationd-0.14.1/debian/control 2020-01-29 21:15:02.000000000 +0000 +++ lxqt-notificationd-0.16.0/debian/control 2021-01-10 21:45:46.000000000 +0000 @@ -1,29 +1,28 @@ Source: lxqt-notificationd -Maintainer: Lubuntu Developers -XSBC-Original-Maintainer: LXQt Packaging Team +Maintainer: LXQt Packaging Team Uploaders: Alf Gaida , ChangZhuo Chen (陳昌倬) , 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.16.0~), libqt5svg5-dev, libqt5x11extras5-dev, libx11-dev, qtbase5-private-dev -Standards-Version: 4.3.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 -XS-Debian-Vcs-Git: https://salsa.debian.org/lxqt-team/lxqt-notificationd.git +Standards-Version: 4.4.0 +Vcs-Browser: https://salsa.debian.org/lxqt-team/lxqt-notificationd +Vcs-Git: https://salsa.debian.org/lxqt-team/lxqt-notificationd.git Homepage: https://github.com/lxqt/lxqt-notificationd Package: lxqt-notificationd Architecture: any -Depends: ${misc:Depends}, ${shlibs:Depends} -Recommends: lxqt-notificationd-l10n, lxqt-qtplugin +Depends: ${misc:Depends}, + ${shlibs:Depends} +Recommends: lxqt-notificationd-l10n, + lxqt-qtplugin Breaks: lxqt-common (<< 0.12.0) Replaces: lxqt-common (<< 0.12.0) Provides: notification-daemon @@ -36,8 +35,9 @@ Architecture: all Multi-Arch: foreign Section: localization -Depends: qttranslations5-l10n, ${misc:Depends} +Depends: ${misc:Depends}, + qttranslations5-l10n Breaks: lxqt-notificationd (<< 0.11.0) Replaces: lxqt-notificationd (<< 0.11.0) Description: Language package for lxqt-notificationd - This package contains the l10n files needed by lxqt-notificationd. + This package contains the l10n files needed by the lxqt-notificationd. diff -Nru lxqt-notificationd-0.14.1/debian/copyright lxqt-notificationd-0.16.0/debian/copyright --- lxqt-notificationd-0.14.1/debian/copyright 2020-01-29 21:15:02.000000000 +0000 +++ lxqt-notificationd-0.16.0/debian/copyright 2021-01-10 21:45:46.000000000 +0000 @@ -3,12 +3,12 @@ Source: https://github.com/lxqt/lxqt-notificationd Files: * -Copyright: 2012-2018 LXQt team +Copyright: 2012-2019 LXQt team 2010-2012 Razor team License: LGPL-2.1+ Files: debian/* -Copyright: 2014-2018 Alf Gaida +Copyright: 2014-2019 Alf Gaida 2015 Andrew Lee (李健秋) License: LGPL-2.1+ diff -Nru lxqt-notificationd-0.14.1/debian/gbp.conf lxqt-notificationd-0.16.0/debian/gbp.conf --- lxqt-notificationd-0.14.1/debian/gbp.conf 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.16.0/debian/gbp.conf 2021-01-10 21:45:46.000000000 +0000 @@ -0,0 +1,6 @@ +[DEFAULT] +debian-branch = debian/sid +upstream-branch = upstream/latest +pristine-tar = True +compression = xz + diff -Nru lxqt-notificationd-0.14.1/debian/lxqt-notificationd.install lxqt-notificationd-0.16.0/debian/lxqt-notificationd.install --- lxqt-notificationd-0.14.1/debian/lxqt-notificationd.install 2020-01-29 21:15:02.000000000 +0000 +++ lxqt-notificationd-0.16.0/debian/lxqt-notificationd.install 2021-01-10 21:45:46.000000000 +0000 @@ -1,4 +1,5 @@ etc/xdg/autostart/lxqt-notifications.desktop -usr/bin/lxqt-config-notificationd -usr/bin/lxqt-notificationd usr/share/applications/lxqt-config-notificationd.desktop +usr/bin/lxqt-notificationd +usr/bin/lxqt-config-notificationd + diff -Nru lxqt-notificationd-0.14.1/debian/rules lxqt-notificationd-0.16.0/debian/rules --- lxqt-notificationd-0.14.1/debian/rules 2020-01-29 21:15:02.000000000 +0000 +++ lxqt-notificationd-0.16.0/debian/rules 2021-01-10 21:45:46.000000000 +0000 @@ -8,8 +8,10 @@ %: dh ${@} --buildsystem cmake +override_dh_missing: + dh_missing --fail-missing + override_dh_auto_configure: dh_auto_configure -- \ - -DPULL_TRANSLATIONS=OFF \ -DUPDATE_TRANSLATIONS=OFF \ -DCMAKE_BUILD_TYPE=RelWithDebInfo diff -Nru lxqt-notificationd-0.14.1/debian/upstream/metadata lxqt-notificationd-0.16.0/debian/upstream/metadata --- lxqt-notificationd-0.14.1/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.16.0/debian/upstream/metadata 2021-01-10 21:45:46.000000000 +0000 @@ -0,0 +1,7 @@ +Name: lxqt-notificationd +Bug-Database: https://github.com/lxqt/lxqt-notificationd/issues +Bug-Submit: https://github.com/lxqt/lxqt-notificationd/issues/new +Changelog: https://github.com/lxqt/lxqt-notificationd/blob/master/CHANGELOG +Repository: https://github.com/lxqt/lxqt-notificationd +Repository-Browser: https://github.com/lxqt/lxqt-notificationd + diff -Nru lxqt-notificationd-0.14.1/README.md lxqt-notificationd-0.16.0/README.md --- lxqt-notificationd-0.14.1/README.md 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/README.md 2020-11-02 09:35:42.000000000 +0000 @@ -25,11 +25,9 @@ ### Compiling source code Runtime dependencies are KWindowSystem, [liblxqt](https://github.com/lxqt/liblxqt) -and [lxqt-common](https://github.com/lxqt/lxqt-common). +and [lxqt-session](https://github.com/lxqt/lxqt-session). Additional build dependencies are CMake and optionally Git to pull latest VCS -checkouts. The localization files were outsourced to repository -[lxqt-l10n](https://github.com/lxqt/lxqt-l10n) so the corresponding dependencies -are needed, too. Please refer to this repository's `README.md` for further information. +checkouts. Code configuration is handled by CMake. CMake variable `CMAKE_INSTALL_PREFIX` has to be set to `/usr` on most operating systems. @@ -40,7 +38,7 @@ ### Binary packages Official binary packages are provided by all major Linux distributions like Arch -Linux, Debian (as of Debian stretch only), Fedora and openSUSE. Just use your +Linux, Debian, Fedora and openSUSE. Just use your package manager to search for string `lxqt-notificationd`. ## Configuration, Usage @@ -56,12 +54,10 @@ [Configuration Center](https://github.com/lxqt/lxqt-config#configuration-center) of [lxqt-config](https://github.com/lxqt/lxqt-config) as well. -## Translation (Weblate) +## Translations - -Translation status - +Translations can be done in [LXQt-Weblate](https://translate.lxqt-project.org/projects/lxqt-configuration/lxqt-notificationd) - -Translation status + +Translation status diff -Nru lxqt-notificationd-0.14.1/src/notificationarea.cpp lxqt-notificationd-0.16.0/src/notificationarea.cpp --- lxqt-notificationd-0.14.1/src/notificationarea.cpp 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/src/notificationarea.cpp 2020-11-02 09:35:42.000000000 +0000 @@ -25,8 +25,9 @@ * * END_COMMON_COPYRIGHT_HEADER */ -#include #include +#include +#include #include #include #include "notificationarea.h" @@ -34,7 +35,8 @@ NotificationArea::NotificationArea(QWidget *parent) : QScrollArea(parent), - m_spacing(-1) + m_spacing(-1), + m_screenWithMouse(false) { setObjectName(QSL("NotificationArea")); @@ -59,7 +61,26 @@ connect(m_layout, &NotificationLayout::allNotificationsClosed, this, &NotificationArea::close); connect(m_layout, &NotificationLayout::notificationAvailable, this, &NotificationArea::show); connect(m_layout, &NotificationLayout::heightChanged, this, &NotificationArea::setHeight); - connect(qApp->desktop(), &QDesktopWidget::workAreaResized, this, &NotificationArea::setHeight); + + connect(qApp, &QGuiApplication::screenAdded, this, [this] (QScreen* newScreen) { + connect(newScreen, &QScreen::availableGeometryChanged, this, &NotificationArea::availableGeometryChanged); + }); + connect(qApp, &QGuiApplication::screenRemoved, this, [this] (QScreen* oldScreen) { + // do not wait until the screen is really removed + disconnect(oldScreen, &QScreen::availableGeometryChanged, this, &NotificationArea::availableGeometryChanged); + }); + const auto screens = qApp->screens(); + for (const auto& screen : screens) + { + connect(screen, &QScreen::availableGeometryChanged, this, &NotificationArea::availableGeometryChanged); + } +} + +void NotificationArea::availableGeometryChanged(const QRect& /*availableGeometry*/) +{ + // adjust geometry if the available geometry changes while a notification is visible + if (isVisible()) + setHeight(); } void NotificationArea::setHeight(int contentHeight) @@ -71,14 +92,25 @@ return; } + QScreen *widgetScreen = nullptr; + if (m_screenWithMouse) + { + if (isVisible() && contentHeight == -1) // called by availableGeometryChanged() + { + if (QWindow *win = windowHandle()) + widgetScreen = win->screen(); + } + if (widgetScreen == nullptr) + widgetScreen = QGuiApplication::screenAt(QCursor::pos()); + } + + if (widgetScreen == nullptr) + widgetScreen = qApp->primaryScreen(); + if (contentHeight == -1) contentHeight = height(); - // FIXME: Qt does not seem to update QDesktopWidget::primaryScreen(). - // After we change the primary screen with xrandr, Qt still returns the same value. - // I think it's a bug of Qt. - QRect workArea = qApp->desktop()->availableGeometry(qApp->desktop()->primaryScreen()); - + QRect workArea = widgetScreen->availableGeometry(); workArea -= QMargins(m_spacing, m_spacing, m_spacing, m_spacing); QRect notif_rect = workArea.normalized(); notif_rect.setWidth(width()); @@ -121,8 +153,7 @@ ensureVisible(0, contentHeight, 0, 0); } -void NotificationArea::setSettings(const QString &placement, int width, int spacing, int unattendedMaxNum, const QStringList &blackList) -{ +void NotificationArea::setSettings(const QString &placement, int width, int spacing, int unattendedMaxNum, bool screenWithMouse, const QStringList &blackList) { m_placement = placement; setMaximumWidth(width); @@ -131,6 +162,8 @@ m_spacing = spacing; m_layout->setSizes(m_spacing, width); + m_screenWithMouse = screenWithMouse; + this->setHeight(widget()->height()); m_layout->setUnattendedMaxNum(unattendedMaxNum); diff -Nru lxqt-notificationd-0.14.1/src/notificationarea.h lxqt-notificationd-0.16.0/src/notificationarea.h --- lxqt-notificationd-0.14.1/src/notificationarea.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/src/notificationarea.h 2020-11-02 09:35:42.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 */ @@ -54,19 +54,24 @@ * \param unattendedMaxNum the max. number of unattended notifications to be saved * \param blackList the list of apps whose unattended notifications aren't saved */ - void setSettings(const QString &placement, int width, int spacing, int unattendedMaxNum, const QStringList &blackList); + void setSettings(const QString &placement, int width, int spacing, int unattendedMaxNum, bool screenWithMouse, const QStringList &blackList); private: NotificationLayout *m_layout; QString m_placement; int m_spacing; - + bool m_screenWithMouse; private slots: /*! Recalculate widget size and visibility. Slot is called from \c Notificationlayout * on demand (notification appear or is closed). */ void setHeight(int contentHeight = -1); + /*! Adjust the widget geometry if the available geometry changes + * while a notification is visible. + */ + void availableGeometryChanged(const QRect& availableGeometry); + }; #endif // NOTIFICATIONAREA_H diff -Nru lxqt-notificationd-0.14.1/src/notification.cpp lxqt-notificationd-0.16.0/src/notification.cpp --- lxqt-notificationd-0.14.1/src/notification.cpp 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/src/notification.cpp 2020-11-02 09:35:42.000000000 +0000 @@ -91,11 +91,20 @@ // - "image-data" // - "image-path" // - app_icon parameter - // - for compatibility reason, "icon_data" - if (!hints[QL1S("image_data")].isNull()) + // - for compatibility reason, "icon_data", "image_data" and "image_path" + + if (!hints[QL1S("image-data")].isNull()) + { + m_pixmap = getPixmapFromHint(hints[QL1S("image-data")]); + } + else if (!hints[QL1S("image_data")].isNull()) { m_pixmap = getPixmapFromHint(hints[QL1S("image_data")]); } + else if (!hints[QL1S("image-path")].isNull()) + { + m_pixmap = getPixmapFromHint(hints[QL1S("image-path")]); + } else if (!hints[QL1S("image_path")].isNull()) { m_pixmap = getPixmapFromString(hints[QL1S("image_path")].toString()); @@ -317,7 +326,8 @@ return; } - for (WId i : KWindowSystem::stackingOrder()) + const auto ids = KWindowSystem::stackingOrder(); + for (const WId &i : ids) { KWindowInfo info = KWindowInfo(i, NET::WMName | NET::WMVisibleName); appName = info.name(); diff -Nru lxqt-notificationd-0.14.1/src/notification.h lxqt-notificationd-0.16.0/src/notification.h --- lxqt-notificationd-0.14.1/src/notification.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/src/notification.h 2020-11-02 09:35:42.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/notificationwidgets.cpp lxqt-notificationd-0.16.0/src/notificationwidgets.cpp --- lxqt-notificationd-0.14.1/src/notificationwidgets.cpp 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/src/notificationwidgets.cpp 2020-11-02 09:35:42.000000000 +0000 @@ -74,7 +74,7 @@ QButtonGroup *group = new QButtonGroup(this); - for (auto const & action : m_actions) + for (const auto &action : qAsConst(m_actions)) { QPushButton *b = new QPushButton(action.second, this); b->setObjectName(action.first); diff -Nru lxqt-notificationd-0.14.1/src/notifyd.cpp lxqt-notificationd-0.16.0/src/notifyd.cpp --- lxqt-notificationd-0.14.1/src/notifyd.cpp 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/src/notifyd.cpp 2020-11-02 09:35:42.000000000 +0000 @@ -155,6 +155,7 @@ m_settings->value(QSL("width"), 300).toInt(), m_settings->value(QSL("spacing"), 6).toInt(), maxNum, + m_settings->value(QSL("screenWithMouse"),false).toBool(), m_settings->value(QSL("blackList")).toStringList()); if (maxNum > 0 && m_trayIcon.isNull()) @@ -203,7 +204,7 @@ QAction *action = nullptr; // add items for notification, starting from the oldest one and from bottom to top - for (const QString date : qAsConst(dates)) + for (const QString &date : qAsConst(dates)) { list.beginGroup(date); // "DATE_AND_TIME - APP: SUMMARY" @@ -233,7 +234,7 @@ // "Options" action = m_trayMenu->addAction(QIcon::fromTheme(QSL("preferences-system")), tr("Options")); connect(action, &QAction::triggered, m_trayMenu, [] { - QProcess::startDetached(QSL("lxqt-config-notificationd")); + QProcess::startDetached(QSL("lxqt-config-notificationd"), QStringList()); }); m_trayIcon->setContextMenu(m_trayMenu); diff -Nru lxqt-notificationd-0.14.1/src/notifyd.h lxqt-notificationd-0.16.0/src/notifyd.h --- lxqt-notificationd-0.14.1/src/notifyd.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/src/notifyd.h 2020-11-02 09:35:42.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.16.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.16.0/src/translations/lxqt-notificationd_arn.ts 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + 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.16.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.16.0/src/translations/lxqt-notificationd_ar.ts 2020-11-02 09:35:42.000000000 +0000 @@ -11,27 +11,34 @@ OK - حسنا + حسنًا Notifyd - + Clear All امسح الكل - + 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.16.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.16.0/src/translations/lxqt-notificationd_ast.ts 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + 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.16.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.16.0/src/translations/lxqt-notificationd_ca.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All Neteja-ho tot - + 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.16.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.16.0/src/translations/lxqt-notificationd_cs.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,25 @@ Notifyd - + Clear All Vyčistit vše - + 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.16.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.16.0/src/translations/lxqt-notificationd_cy.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,27 @@ Notifyd - + Clear All - + 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.16.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.16.0/src/translations/lxqt-notificationd_da.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All Ryd alle - + 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.16.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.16.0/src/translations/lxqt-notificationd_de.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All Alles löschen - + 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.16.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.16.0/src/translations/lxqt-notificationd_el.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All Εκκαθάριση όλων - + 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.16.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.16.0/src/translations/lxqt-notificationd_en_GB.ts 2020-11-02 09:35:42.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.16.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.16.0/src/translations/lxqt-notificationd_es.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All Limpiar todo - + 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.16.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.16.0/src/translations/lxqt-notificationd_fr.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All Tout effacer - + 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.16.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.16.0/src/translations/lxqt-notificationd_gl.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All Limpar todo - + 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.16.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.16.0/src/translations/lxqt-notificationd_he.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All - + לפנות הכול - + Options - + אפשרויות - - - - - %1 Unattended Notification(s) - + + + + + %n Unattended Notification(s) + + %n התראות שלא התייחסת אליהן + %n התראות שלא התייחסת אליהן + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_hr.ts lxqt-notificationd-0.16.0/src/translations/lxqt-notificationd_hr.ts --- lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_hr.ts 1970-01-01 00:00:00.000000000 +0000 +++ lxqt-notificationd-0.16.0/src/translations/lxqt-notificationd_hr.ts 2020-11-02 09:35:42.000000000 +0000 @@ -0,0 +1,41 @@ + + + + + NotificationActionsComboWidget + + + Actions: + Radnje: + + + + OK + U redu + + + + Notifyd + + + Clear All + Izbriši sve + + + + Options + Opcije + + + + + + %n Unattended Notification(s) + + %n nepročitana obavijest + %n nepročitane obavijesti + %n nepročitanih obavijesti + + + + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_hu.ts lxqt-notificationd-0.16.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.16.0/src/translations/lxqt-notificationd_hu.ts 2020-11-02 09:35:42.000000000 +0000 @@ -6,32 +6,34 @@ Actions: - Akciók: + Műveletek: OK - + OK Notifyd - + Clear All - + Törlés - + Options - + Beállítások - - - - - %1 Unattended Notification(s) - + + + + + %n Unattended Notification(s) + + %n olvasatlan értesítés + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_id.ts lxqt-notificationd-0.16.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.16.0/src/translations/lxqt-notificationd_id.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,23 @@ Notifyd - + 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.16.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.16.0/src/translations/lxqt-notificationd_it.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All Elimina tutti - + Options Opzioni - - - - - %1 Unattended Notification(s) - %1 Notifica(e) non vista + + + + + %n Unattended Notification(s) + + %n Notifica non vista + %n Notifiche non viste + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ja.ts lxqt-notificationd-0.16.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.16.0/src/translations/lxqt-notificationd_ja.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,23 @@ Notifyd - + 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.16.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.16.0/src/translations/lxqt-notificationd_lt.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,25 @@ Notifyd - + Clear All Išvalyti visus - + 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.16.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.16.0/src/translations/lxqt-notificationd_lv.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,25 @@ Notifyd - + Clear All - + 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.16.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.16.0/src/translations/lxqt-notificationd_nb_NO.ts 2020-11-02 09:35:42.000000000 +0000 @@ -6,32 +6,35 @@ Actions: - + Handlinger: OK - + Okei Notifyd - + Clear All Fjern alt - + 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.16.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.16.0/src/translations/lxqt-notificationd_nl.ts 2020-11-02 09:35:42.000000000 +0000 @@ -11,27 +11,30 @@ OK - OK + Oké Notifyd - + 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.16.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.16.0/src/translations/lxqt-notificationd_pl.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,25 @@ Notifyd - + Clear All Wyczyszczenie wszystkie - + 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.16.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.16.0/src/translations/lxqt-notificationd_pt_BR.ts 2020-11-02 09:35:42.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.16.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.16.0/src/translations/lxqt-notificationd_pt.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All Limpar tudo - + 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.16.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.16.0/src/translations/lxqt-notificationd_ru_RU.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ - - - - - NotificationActionsComboWidget - - - Actions: - Действия: - - - - OK - OK - - - - Notifyd - - - Clear All - - - - - Options - - - - - - - %1 Unattended Notification(s) - - - - diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd_ru.ts lxqt-notificationd-0.16.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.16.0/src/translations/lxqt-notificationd_ru.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,25 @@ Notifyd - + Clear All Очистить все - + 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.16.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.16.0/src/translations/lxqt-notificationd_sk_SK.ts 2020-11-02 09:35:42.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.16.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.16.0/src/translations/lxqt-notificationd_sv.ts 2020-11-02 09:35:42.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.16.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.16.0/src/translations/lxqt-notificationd_tr.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,23 @@ Notifyd - + Clear All Tümünü Temizle - + Options Seçenekler - - - - - %1 Unattended Notification(s) - %1 Katılımsız Bildirim(ler) + + + + + %n Unattended Notification(s) + + %n Görülmemiş Bildirim + diff -Nru lxqt-notificationd-0.14.1/src/translations/lxqt-notificationd.ts lxqt-notificationd-0.16.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.16.0/src/translations/lxqt-notificationd.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,24 @@ Notifyd - + Clear All - + 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.16.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.16.0/src/translations/lxqt-notificationd_uk.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,25 @@ Notifyd - + Clear All - + 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.16.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.16.0/src/translations/lxqt-notificationd_zh_CN.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,23 @@ Notifyd - + Clear All 全部清除 - + 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.16.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.16.0/src/translations/lxqt-notificationd_zh_TW.ts 2020-11-02 09:35:42.000000000 +0000 @@ -17,21 +17,23 @@ Notifyd - + Clear All - + 全部清除 - + Options - + 選項 - - - - - %1 Unattended Notification(s) - + + + + + %n Unattended Notification(s) + + + diff -Nru lxqt-notificationd-0.14.1/test/mainwindow.h lxqt-notificationd-0.16.0/test/mainwindow.h --- lxqt-notificationd-0.14.1/test/mainwindow.h 2019-02-25 22:10:55.000000000 +0000 +++ lxqt-notificationd-0.16.0/test/mainwindow.h 2020-11-02 09:35:42.000000000 +0000 @@ -40,7 +40,7 @@ Q_OBJECT public: - explicit MainWindow(QWidget* parent = 0); + explicit MainWindow(QWidget* parent = nullptr); ~MainWindow(); public slots: