From 8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 25 Nov 2017 18:00:06 +0000 Subject: copy 1.2 branch to trunk git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7772 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/kdenotify/CMakeLists.txt | 31 +++++----------------- src/plugins/General/kdenotify/kdenotifyfactory.cpp | 5 +--- src/plugins/General/kdenotify/kdenotifyfactory.h | 5 ++-- .../kdenotify/translations/kdenotify_plugin_bg.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_cs.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_de.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_el.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_en.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_es.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_fi.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_fr.ts | 6 ++--- .../translations/kdenotify_plugin_gl_ES.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_he.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_hu.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_id.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_it.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_ja.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_kk.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_lt.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_nl.ts | 6 ++--- .../translations/kdenotify_plugin_pl_PL.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_pt.ts | 6 ++--- .../translations/kdenotify_plugin_pt_BR.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_ru.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_sk.ts | 6 ++--- .../translations/kdenotify_plugin_sr_BA.ts | 6 ++--- .../translations/kdenotify_plugin_sr_RS.ts | 6 ++--- .../kdenotify/translations/kdenotify_plugin_tr.ts | 6 ++--- .../translations/kdenotify_plugin_uk_UA.ts | 6 ++--- .../translations/kdenotify_plugin_zh_CN.ts | 6 ++--- .../translations/kdenotify_plugin_zh_TW.ts | 6 ++--- 31 files changed, 94 insertions(+), 115 deletions(-) (limited to 'src/plugins/General/kdenotify') 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 -#include -#include #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 @@ KdeNotifyFactory - + KDE 4 notification plugin - + About KDE Notification Plugin - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Notifikační modul pro KDE4 - + About KDE Notification Plugin O notifikačním modulu pro KDE - + KDE 4 notification plugin for Qmmp Notifikační modul Qmmp pro KDE4 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 @@ KdeNotifyFactory - + KDE 4 notification plugin KDE-4-Benachrichtigungsmodul - + About KDE Notification Plugin Über KDE-4-Benachrichtigungsmodul - + KDE 4 notification plugin for Qmmp KDE-4-Benachrichtigungsmodul für Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Πρόσθετο ειδοποιήσεων του KDE4 - + About KDE Notification Plugin Σχετικά με το πρόσθετο ειδοποιήσεων KDE - + KDE 4 notification plugin for Qmmp Qmmp πρόσθετο ειδοποιήσεων του KDE4 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 @@ KdeNotifyFactory - + KDE 4 notification plugin - + About KDE Notification Plugin - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Módulo de notificación KDE 4 - + About KDE Notification Plugin Acerca del módulo de notificación KDE - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin - + About KDE Notification Plugin - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Greffon de notification KDE 4 - + About KDE Notification Plugin À propos du greffon de notification KDE 4 - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Engadido para as notificacións de KDE 4 - + About KDE Notification Plugin Sobre o engadido para as notificacións de KDE - + KDE 4 notification plugin for Qmmp Engadido de Qmmp para as notificacións de KDE 4 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 @@ KdeNotifyFactory - + KDE 4 notification plugin תוסף התראת KDE 4 - + About KDE Notification Plugin אודות תוסף התראת KDE 4 - + KDE 4 notification plugin for Qmmp תוסף התראת 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 @@ KdeNotifyFactory - + KDE 4 notification plugin - + About KDE Notification Plugin - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Plugin pemberitahuan KDE 4 - + About KDE Notification Plugin Tentang Plugin Pemberitahuan KDE - + KDE 4 notification plugin for Qmmp Plugin pemberitahuan KDE 4 bagi Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Plugin notificazione per KDE 4 - + About KDE Notification Plugin Info sul Plugin di notificazione per KDE - + KDE 4 notification plugin for Qmmp Plugin di notificazione epr KDE 4 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 @@ KdeNotifyFactory - + KDE 4 notification plugin KDE 4 通知プラグイン - + About KDE Notification Plugin KDE 通知プラグインについて - + KDE 4 notification plugin for Qmmp QMMP 用 KDE 4 通知プラグイン 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 @@ KdeNotifyFactory - + KDE 4 notification plugin - + About KDE Notification Plugin - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin KDE 4 pranešimų įskiepis - + About KDE Notification Plugin Apie qmmp KDE 4 pranešimų įskiepį - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Notificatie Module voor KDE 4 - + About KDE Notification Plugin Over de KDE 4 Notificatie Module - + KDE 4 notification plugin for Qmmp KDE 4 Notificatie Module voor Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Wtyczka powiadamiania KDE 4 - + About KDE Notification Plugin O wtyczce Powiadomienia KDE - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Suplemento KDE4 Notification - + About KDE Notification Plugin Sobre o suplemento KDE4 Notification - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Plugin KDE 4 Notification - + About KDE Notification Plugin Sobre o plugin KDE Notification - + KDE 4 notification plugin for Qmmp Plugin KDE 4 Notification para o Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Модуль уведомлений KDE4 - + About KDE Notification Plugin О модуле уведомлений KDE4 - + KDE 4 notification plugin for Qmmp Модуль уведомлений 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 @@ KdeNotifyFactory - + KDE 4 notification plugin - + About KDE Notification Plugin - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin КДЕ4 обавјештавач - + About KDE Notification Plugin О КДЕ4 обавјештавачу - + KDE 4 notification plugin for Qmmp Кумп прикључак за обавјештавање у КДЕ4 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 @@ KdeNotifyFactory - + KDE 4 notification plugin КДЕ4 обавештавач - + About KDE Notification Plugin О КДЕ4 обавештавачу - + KDE 4 notification plugin for Qmmp Кумп прикључак за обавештавање у КДЕ4 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 @@ KdeNotifyFactory - + KDE 4 notification plugin - + About KDE Notification Plugin - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin Модуль повідомлень KDE4 - + About KDE Notification Plugin Про модуль повідомлень KDE4 - + KDE 4 notification plugin for Qmmp Модуль повідомлень 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 @@ KdeNotifyFactory - + KDE 4 notification plugin KDE 4 通知插件 - + About KDE Notification Plugin 关于 KDE 4 通知插件 - + KDE 4 notification plugin for Qmmp 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 @@ KdeNotifyFactory - + KDE 4 notification plugin KDE 4 通知插件 - + About KDE Notification Plugin 關於 KDE 通知插件 - + KDE 4 notification plugin for Qmmp Qmmp 的 KDE 4通知插件 -- cgit v1.2.3-13-gbd6f