aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/kdenotify
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/kdenotify')
-rw-r--r--src/plugins/General/kdenotify/CMakeLists.txt31
-rw-r--r--src/plugins/General/kdenotify/kdenotifyfactory.cpp5
-rw-r--r--src/plugins/General/kdenotify/kdenotifyfactory.h5
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_bg.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_cs.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_de.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_el.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_en.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_es.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_fi.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_fr.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_gl_ES.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_he.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_hu.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_id.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_it.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_ja.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_kk.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_lt.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_nl.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_pl_PL.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_pt.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_pt_BR.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_ru.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_sk.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_BA.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_RS.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_tr.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_uk_UA.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_CN.ts6
-rw-r--r--src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_TW.ts6
31 files changed, 94 insertions, 115 deletions
diff --git a/src/plugins/General/kdenotify/CMakeLists.txt b/src/plugins/General/kdenotify/CMakeLists.txt
index e24ae1711..abfab62d0 100644
--- a/src/plugins/General/kdenotify/CMakeLists.txt
+++ b/src/plugins/General/kdenotify/CMakeLists.txt
@@ -1,22 +1,5 @@
project(libkdenotify)
-
-SET (QT_USE_QTDBUS TRUE)
-
-INCLUDE(FindQt4)
-
-include(${QT_USE_FILE})
-
-# qt plugin
-ADD_DEFINITIONS( -Wall )
-ADD_DEFINITIONS(${QT_DEFINITIONS})
-ADD_DEFINITIONS(-DQT_PLUGIN)
-ADD_DEFINITIONS(-DQT_NO_DEBUG)
-ADD_DEFINITIONS(-DQT_SHARED)
-ADD_DEFINITIONS(-DQT_THREAD)
-
-
-
include_directories(${CMAKE_CURRENT_BINARY_DIR})
# libqmmpui & libqmmp
@@ -32,25 +15,23 @@ SET(libkdenotify_SRCS
SET(libkdenotify_RCCS translations/translations.qrc)
-QT4_ADD_RESOURCES(libkdenotify_RCC_SRCS ${libkdenotify_RCCS})
+QT5_ADD_RESOURCES(libkdenotify_RCC_SRCS ${libkdenotify_RCCS})
# user interface
SET(libkdenotify_UIS
settingsdialog.ui
)
-QT4_WRAP_UI(libkdenotify_UIS_H ${libkdenotify_UIS})
+QT5_WRAP_UI(libkdenotify_UIS_H ${libkdenotify_UIS})
-# QT4_WRAP_UI(libkdenotify_UIS_H ${libkdenotify_UIS})
+# QT5_WRAP_UI(libkdenotify_UIS_H ${libkdenotify_UIS})
# Don't forget to include output directory, otherwise
# the UI file won't be wrapped!
include_directories(${CMAKE_CURRENT_BINARY_DIR})
ADD_LIBRARY(kdenotify MODULE ${libkdenotify_SRCS} ${libkdenotify_RCC_SRCS} ${libkdenotify_UIS_H})
add_dependencies(kdenotify qmmpui)
-target_link_libraries(kdenotify ${QT_LIBRARIES} qmmpui libqmmp)
+target_link_libraries(kdenotify Qt5::Widgets Qt5::DBus -lqmmpui -lqmmp)
install(TARGETS kdenotify DESTINATION ${LIB_DIR}/qmmp/General)
-IF(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
- install(FILES images/empty_cover.png DESTINATION share/qmmp/images)
- install(FILES images/app_icon.png DESTINATION share/qmmp/images)
-ENDIF()
+install(FILES images/empty_cover.png DESTINATION share/qmmp/images)
+install(FILES images/app_icon.png DESTINATION share/qmmp/images)
diff --git a/src/plugins/General/kdenotify/kdenotifyfactory.cpp b/src/plugins/General/kdenotify/kdenotifyfactory.cpp
index 557c9f024..2de043e0f 100644
--- a/src/plugins/General/kdenotify/kdenotifyfactory.cpp
+++ b/src/plugins/General/kdenotify/kdenotifyfactory.cpp
@@ -19,13 +19,12 @@
***************************************************************************/
#include <QMessageBox>
-#include <QTranslator>
-#include <QtPlugin>
#include "kdenotifyfactory.h"
#include "kdenotify.h"
#include "settingsdialog.h"
+
const GeneralProperties KdeNotifyFactory::properties() const
{
GeneralProperties properties;
@@ -61,5 +60,3 @@ QTranslator *KdeNotifyFactory::createTranslator(QObject *parent)
translator->load(QString(":/kdenotify_plugin_") + locale);
return translator;
}
-
-Q_EXPORT_PLUGIN2(kdenotify, KdeNotifyFactory)
diff --git a/src/plugins/General/kdenotify/kdenotifyfactory.h b/src/plugins/General/kdenotify/kdenotifyfactory.h
index 9eb0b49fa..1c6f7543a 100644
--- a/src/plugins/General/kdenotify/kdenotifyfactory.h
+++ b/src/plugins/General/kdenotify/kdenotifyfactory.h
@@ -30,8 +30,9 @@
class KdeNotifyFactory : public QObject, public GeneralFactory
{
- Q_OBJECT
- Q_INTERFACES(GeneralFactory)
+Q_OBJECT
+Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0")
+Q_INTERFACES(GeneralFactory)
public:
const GeneralProperties properties() const;
QObject *create(QObject *parent);
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_bg.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_bg.ts
index beb9b7037..40c963dc8 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_bg.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_bg.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation type="unfinished"></translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_cs.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_cs.ts
index 5df07c248..f30102e24 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_cs.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_cs.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Notifikační modul pro KDE4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>O notifikačním modulu pro KDE</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Notifikační modul Qmmp pro KDE4</translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_de.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_de.ts
index ce3a0fafc..633cb9d2a 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_de.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_de.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>KDE-4-Benachrichtigungsmodul</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Über KDE-4-Benachrichtigungsmodul</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>KDE-4-Benachrichtigungsmodul für Qmmp</translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_el.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_el.ts
index e890c5199..0c88946a2 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_el.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_el.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Πρόσθετο ειδοποιήσεων του KDE4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Σχετικά με το πρόσθετο ειδοποιήσεων KDE</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Qmmp πρόσθετο ειδοποιήσεων του KDE4</translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_en.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_en.ts
index d3ee0067e..c35ba83bc 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_en.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_en.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation type="unfinished"></translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_es.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_es.ts
index deb49854a..cb46d77ec 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_es.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_es.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Módulo de notificación KDE 4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Acerca del módulo de notificación KDE</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Módulo de notificación KDE 4 para Qmmp
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_fi.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_fi.ts
index 36d4aef3c..767e5d3bb 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_fi.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_fi.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation type="unfinished"></translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_fr.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_fr.ts
index f6d93a975..1e97d7e03 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_fr.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_fr.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Greffon de notification KDE 4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>À propos du greffon de notification KDE 4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Greffon de notification KDE 4 pour Qmmp
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_gl_ES.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_gl_ES.ts
index f753367d0..1923fa0e4 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_gl_ES.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_gl_ES.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Engadido para as notificacións de KDE 4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Sobre o engadido para as notificacións de KDE</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Engadido de Qmmp para as notificacións de KDE 4</translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_he.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_he.ts
index 2910c2c7e..99b5569c2 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_he.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_he.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>תוסף התראת KDE 4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>אודות תוסף התראת KDE 4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>תוסף התראת KDE 4 עבור Qmmp
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_hu.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_hu.ts
index d889fee31..21ca28642 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_hu.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_hu.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation type="unfinished"></translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_id.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_id.ts
index 369eb583e..683bab14c 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_id.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_id.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Plugin pemberitahuan KDE 4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Tentang Plugin Pemberitahuan KDE</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Plugin pemberitahuan KDE 4 bagi Qmmp</translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_it.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_it.ts
index 91a28c2db..29964f409 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_it.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_it.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Plugin notificazione per KDE 4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Info sul Plugin di notificazione per KDE</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Plugin di notificazione epr KDE 4</translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_ja.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_ja.ts
index 235e4046e..84205be58 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_ja.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_ja.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>KDE 4 通知プラグイン</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>KDE 通知プラグインについて</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>QMMP 用 KDE 4 通知プラグイン</translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_kk.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_kk.ts
index 909e5551b..fa863946d 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_kk.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_kk.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation type="unfinished"></translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_lt.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_lt.ts
index 5da6bca99..3b849fc41 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_lt.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_lt.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>KDE 4 pranešimų įskiepis</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Apie qmmp KDE 4 pranešimų įskiepį</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Qmmp KDE 4 pranešimų įskiepis
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_nl.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_nl.ts
index edc0ba3be..a4b110575 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_nl.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_nl.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Notificatie Module voor KDE 4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Over de KDE 4 Notificatie Module</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>KDE 4 Notificatie Module voor Qmmp</translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pl_PL.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pl_PL.ts
index 7e661c9cc..a3ec0c8ef 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pl_PL.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pl_PL.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Wtyczka powiadamiania KDE 4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>O wtyczce Powiadomienia KDE</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Wtyczka Powiadomienia KDE 4 dla Qmmp
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt.ts
index e2df55434..ff22b93b5 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Suplemento KDE4 Notification</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Sobre o suplemento KDE4 Notification</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Suplemento Qmmp KDE4 Notification
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt_BR.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt_BR.ts
index 6c9903166..d877c726e 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt_BR.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_pt_BR.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Plugin KDE 4 Notification</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Sobre o plugin KDE Notification</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Plugin KDE 4 Notification para o Qmmp </translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_ru.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_ru.ts
index b194e558c..af1b7bdfa 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_ru.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_ru.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Модуль уведомлений KDE4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>О модуле уведомлений KDE4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Модуль уведомлений KDE4 для Qmmp
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sk.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sk.ts
index 70f5a5625..d6cdc473d 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sk.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sk.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation type="unfinished"></translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_BA.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_BA.ts
index 60f7826c9..9bec3e346 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_BA.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_BA.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>КДЕ4 обавјештавач</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>О КДЕ4 обавјештавачу</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Кумп прикључак за обавјештавање у КДЕ4</translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_RS.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_RS.ts
index ad990896b..97ef9586f 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_RS.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_sr_RS.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>КДЕ4 обавештавач</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>О КДЕ4 обавештавачу</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Кумп прикључак за обавештавање у КДЕ4</translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_tr.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_tr.ts
index 6d06f14b3..c038ccb28 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_tr.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_tr.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation type="unfinished"></translation>
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_uk_UA.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_uk_UA.ts
index 3f89537d1..851e727f8 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_uk_UA.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_uk_UA.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>Модуль повідомлень KDE4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>Про модуль повідомлень KDE4</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Модуль повідомлень KDE4 для Qmmp
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_CN.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_CN.ts
index 9cf44ac53..1171d7421 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_CN.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_CN.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>KDE 4 通知插件</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>关于 KDE 4 通知插件</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Qmmp KDE 4 通知插件
diff --git a/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_TW.ts b/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_TW.ts
index 3874720e7..8f7e5c2b1 100644
--- a/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_TW.ts
+++ b/src/plugins/General/kdenotify/translations/kdenotify_plugin_zh_TW.ts
@@ -12,17 +12,17 @@
<context>
<name>KdeNotifyFactory</name>
<message>
- <location filename="../kdenotifyfactory.cpp" line="32"/>
+ <location filename="../kdenotifyfactory.cpp" line="31"/>
<source>KDE 4 notification plugin</source>
<translation>KDE 4 通知插件</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="52"/>
+ <location filename="../kdenotifyfactory.cpp" line="51"/>
<source>About KDE Notification Plugin</source>
<translation>關於 KDE 通知插件</translation>
</message>
<message>
- <location filename="../kdenotifyfactory.cpp" line="53"/>
+ <location filename="../kdenotifyfactory.cpp" line="52"/>
<source>KDE 4 notification plugin for Qmmp
</source>
<translation>Qmmp 的 KDE 4通知插件