aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Output/null
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-11-25 18:00:06 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-11-25 18:00:06 +0000
commit8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a (patch)
tree15d339b62e98d5858a57aa787334e14f0e2f0ad7 /src/plugins/Output/null
parent6fc05db7c6de9a51beba754f12ff4ac32859977d (diff)
downloadqmmp-8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a.tar.gz
qmmp-8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a.tar.bz2
qmmp-8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a.zip
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
Diffstat (limited to 'src/plugins/Output/null')
-rw-r--r--src/plugins/Output/null/CMakeLists.txt17
-rw-r--r--src/plugins/Output/null/outputnullfactory.cpp7
-rw-r--r--src/plugins/Output/null/outputnullfactory.h1
-rw-r--r--src/plugins/Output/null/translations/null_plugin_bg.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_cs.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_de.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_el.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_en.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_es.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_fi.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_fr.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_gl_ES.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_he.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_hu.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_id.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_it.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_ja.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_kk.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_lt.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_nl.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_pl_PL.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_pt.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_pt_BR.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_ru.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_sk.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_sr_BA.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_sr_RS.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_tr.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_uk_UA.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_zh_CN.ts8
-rw-r--r--src/plugins/Output/null/translations/null_plugin_zh_TW.ts8
31 files changed, 117 insertions, 132 deletions
diff --git a/src/plugins/Output/null/CMakeLists.txt b/src/plugins/Output/null/CMakeLists.txt
index ec4a48e31..85cb8f2ca 100644
--- a/src/plugins/Output/null/CMakeLists.txt
+++ b/src/plugins/Output/null/CMakeLists.txt
@@ -1,20 +1,7 @@
project(libnull)
-# 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})
-SET(QT_INCLUDES
- ${QT_INCLUDES}
- ${CMAKE_CURRENT_SOURCE_DIR}/../../../
-)
-
# libqmmp
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../)
link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp)
@@ -30,7 +17,7 @@ SET(libnull_HDRS
SET(libnull_RCCS translations/translations.qrc)
-QT4_ADD_RESOURCES(libnull_RCC_SRCS ${libnull_RCCS})
+QT5_ADD_RESOURCES(libnull_RCC_SRCS ${libnull_RCCS})
# Don't forget to include output directory, otherwise
# the UI file won't be wrapped!
@@ -39,5 +26,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
ADD_LIBRARY(null MODULE ${libnull_SRCS} ${libnull_UIS_H} ${libnull_RCC_SRCS} ${libnull_HDRS})
add_dependencies(null qmmp)
-target_link_libraries(null ${QT_LIBRARIES} libqmmp)
+target_link_libraries(null Qt5::Widgets -lqmmp)
install(TARGETS null DESTINATION ${LIB_DIR}/qmmp/Output)
diff --git a/src/plugins/Output/null/outputnullfactory.cpp b/src/plugins/Output/null/outputnullfactory.cpp
index a4ff961c7..2a7249165 100644
--- a/src/plugins/Output/null/outputnullfactory.cpp
+++ b/src/plugins/Output/null/outputnullfactory.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2010-2016 by Ilya Kotov *
+ * Copyright (C) 2010-2015 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -18,9 +18,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-#include <QMessageBox>
#include <QTranslator>
-#include <QtPlugin>
+#include <QMessageBox>
#include <qmmp/qmmp.h>
#include "outputnull.h"
#include "outputnullfactory.h"
@@ -65,5 +64,3 @@ QTranslator *OutputNullFactory::createTranslator(QObject *parent)
translator->load(QString(":/null_plugin_") + locale);
return translator;
}
-
-Q_EXPORT_PLUGIN2(null, OutputNullFactory)
diff --git a/src/plugins/Output/null/outputnullfactory.h b/src/plugins/Output/null/outputnullfactory.h
index 4142ee7e9..645d37815 100644
--- a/src/plugins/Output/null/outputnullfactory.h
+++ b/src/plugins/Output/null/outputnullfactory.h
@@ -33,6 +33,7 @@
class OutputNullFactory : public QObject, OutputFactory
{
Q_OBJECT
+Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.OutputFactoryInterface.1.0")
Q_INTERFACES(OutputFactory)
public:
diff --git a/src/plugins/Output/null/translations/null_plugin_bg.ts b/src/plugins/Output/null/translations/null_plugin_bg.ts
index d3ec3e805..2f36d88ad 100644
--- a/src/plugins/Output/null/translations/null_plugin_bg.ts
+++ b/src/plugins/Output/null/translations/null_plugin_bg.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_cs.ts b/src/plugins/Output/null/translations/null_plugin_cs.ts
index 9dc9c1eef..f725e004e 100644
--- a/src/plugins/Output/null/translations/null_plugin_cs.ts
+++ b/src/plugins/Output/null/translations/null_plugin_cs.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Nulový modul</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>O modulu pro nulový výstup</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Modul Qmmp pro nulový výstup</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_de.ts b/src/plugins/Output/null/translations/null_plugin_de.ts
index c1e42a166..2cad52126 100644
--- a/src/plugins/Output/null/translations/null_plugin_de.ts
+++ b/src/plugins/Output/null/translations/null_plugin_de.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Null-Modul</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Über Null-Ausgabemodul</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Qmmp Null-Ausgabemodul</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Geschrieben von: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_el.ts b/src/plugins/Output/null/translations/null_plugin_el.ts
index 82416fcb2..e3df4f590 100644
--- a/src/plugins/Output/null/translations/null_plugin_el.ts
+++ b/src/plugins/Output/null/translations/null_plugin_el.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Πρόσθετο Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Σχετικά με το πρόσθετο Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Qmmp σχετικά με το πρόσθετο Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Γράφτηκε από τον: Ilya Kotov &lt;forkotov02@hotmail.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_en.ts b/src/plugins/Output/null/translations/null_plugin_en.ts
index 876d530af..0f6577ef7 100644
--- a/src/plugins/Output/null/translations/null_plugin_en.ts
+++ b/src/plugins/Output/null/translations/null_plugin_en.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_es.ts b/src/plugins/Output/null/translations/null_plugin_es.ts
index 912798a9f..5cd13e61e 100644
--- a/src/plugins/Output/null/translations/null_plugin_es.ts
+++ b/src/plugins/Output/null/translations/null_plugin_es.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Módulo de salida nula</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Acerca del módulo de salida nula</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Módulo de salida nula para Qmmp</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Escrito por: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_fi.ts b/src/plugins/Output/null/translations/null_plugin_fi.ts
index a93e06ac0..f10d40b56 100644
--- a/src/plugins/Output/null/translations/null_plugin_fi.ts
+++ b/src/plugins/Output/null/translations/null_plugin_fi.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Null-liitännäinen</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Tietoja - Null-ulostulosliitännäinen</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Qmmp:n Null-ulostuloliitännäinen</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Toteuttanut: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_fr.ts b/src/plugins/Output/null/translations/null_plugin_fr.ts
index c106286ad..a381ba20e 100644
--- a/src/plugins/Output/null/translations/null_plugin_fr.ts
+++ b/src/plugins/Output/null/translations/null_plugin_fr.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Greffon Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>À propos du greffon de sortie Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Greffon de sortie Null pour Qmm</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Écrit par : Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_gl_ES.ts b/src/plugins/Output/null/translations/null_plugin_gl_ES.ts
index fdb1c314a..44290d04a 100644
--- a/src/plugins/Output/null/translations/null_plugin_gl_ES.ts
+++ b/src/plugins/Output/null/translations/null_plugin_gl_ES.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Engadido Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Sobre o engadido Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Engadido Null de Qmmp</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_he.ts b/src/plugins/Output/null/translations/null_plugin_he.ts
index 26342af29..1b329d31a 100644
--- a/src/plugins/Output/null/translations/null_plugin_he.ts
+++ b/src/plugins/Output/null/translations/null_plugin_he.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>תוסף אפסי</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>אודות תוסף אפסי</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>תוסף אפסי של Qmmp</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_hu.ts b/src/plugins/Output/null/translations/null_plugin_hu.ts
index 95b4cda4e..212c1055e 100644
--- a/src/plugins/Output/null/translations/null_plugin_hu.ts
+++ b/src/plugins/Output/null/translations/null_plugin_hu.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_id.ts b/src/plugins/Output/null/translations/null_plugin_id.ts
index c087079b0..266e54386 100644
--- a/src/plugins/Output/null/translations/null_plugin_id.ts
+++ b/src/plugins/Output/null/translations/null_plugin_id.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Plugin Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Tentang Plugin Keluaran Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Plugin Keluaran Null Qmmp</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_it.ts b/src/plugins/Output/null/translations/null_plugin_it.ts
index 86d331eb2..a47362dc5 100644
--- a/src/plugins/Output/null/translations/null_plugin_it.ts
+++ b/src/plugins/Output/null/translations/null_plugin_it.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Modulo di uscita nullo</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Informazioni sul modulo di uscita nullo</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Modulo di uscita nullo per Qmmp</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Autore: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_ja.ts b/src/plugins/Output/null/translations/null_plugin_ja.ts
index ff3196b7b..cd7a37542 100644
--- a/src/plugins/Output/null/translations/null_plugin_ja.ts
+++ b/src/plugins/Output/null/translations/null_plugin_ja.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>NULL プラグイン</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>NULL 出力プラグインについて</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>QMMP NULL 出力プラグイン</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>制作: Илья Котов (Ilya Kotov) &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_kk.ts b/src/plugins/Output/null/translations/null_plugin_kk.ts
index 33bafef69..42b842cb0 100644
--- a/src/plugins/Output/null/translations/null_plugin_kk.ts
+++ b/src/plugins/Output/null/translations/null_plugin_kk.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_lt.ts b/src/plugins/Output/null/translations/null_plugin_lt.ts
index 8bbf20ec9..4085c97e7 100644
--- a/src/plugins/Output/null/translations/null_plugin_lt.ts
+++ b/src/plugins/Output/null/translations/null_plugin_lt.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Null Įskiepis</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Apie Null išvesties įskiepį</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Qmmp Null išvesties įskiepis</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Sukūrė: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_nl.ts b/src/plugins/Output/null/translations/null_plugin_nl.ts
index a422d6c7f..1904e702c 100644
--- a/src/plugins/Output/null/translations/null_plugin_nl.ts
+++ b/src/plugins/Output/null/translations/null_plugin_nl.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Null Module</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Over de Null Output Module</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Null Output Module voor Qmmp</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Auteur: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_pl_PL.ts b/src/plugins/Output/null/translations/null_plugin_pl_PL.ts
index 8102584e0..9a247aa5d 100644
--- a/src/plugins/Output/null/translations/null_plugin_pl_PL.ts
+++ b/src/plugins/Output/null/translations/null_plugin_pl_PL.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Wtyczka Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>O wtyczce wyjściowej Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Wtyczka wyjściowa Null dla Qmmp</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_pt.ts b/src/plugins/Output/null/translations/null_plugin_pt.ts
index d28b5ca9d..7dfc249ad 100644
--- a/src/plugins/Output/null/translations/null_plugin_pt.ts
+++ b/src/plugins/Output/null/translations/null_plugin_pt.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Suplemento Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Sobre o suplemento Null Output</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Suplemento Qmmp Null Output</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Desenvolvido por: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_pt_BR.ts b/src/plugins/Output/null/translations/null_plugin_pt_BR.ts
index 1b93a354b..d243b664b 100644
--- a/src/plugins/Output/null/translations/null_plugin_pt_BR.ts
+++ b/src/plugins/Output/null/translations/null_plugin_pt_BR.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Plugin Null</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Sobre o plugin Null Output</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Plugin Qmmp Null Output</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_ru.ts b/src/plugins/Output/null/translations/null_plugin_ru.ts
index 1cc18a0aa..d51abddfd 100644
--- a/src/plugins/Output/null/translations/null_plugin_ru.ts
+++ b/src/plugins/Output/null/translations/null_plugin_ru.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Модуль нулевого вывода</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>О модуле нулевого вывода</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Модуль нулевого вывода для Qmmp</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Разработчик: Илья Котов &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_sk.ts b/src/plugins/Output/null/translations/null_plugin_sk.ts
index d2bfff437..6c3bf4d8a 100644
--- a/src/plugins/Output/null/translations/null_plugin_sk.ts
+++ b/src/plugins/Output/null/translations/null_plugin_sk.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_sr_BA.ts b/src/plugins/Output/null/translations/null_plugin_sr_BA.ts
index 0581c050b..b1bf2ff08 100644
--- a/src/plugins/Output/null/translations/null_plugin_sr_BA.ts
+++ b/src/plugins/Output/null/translations/null_plugin_sr_BA.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Нул прикључак</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>О Нул прикључку излаза</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Кумп Нул прикључак излаза</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Аутор: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_sr_RS.ts b/src/plugins/Output/null/translations/null_plugin_sr_RS.ts
index 1a34fc0b8..7fde253b8 100644
--- a/src/plugins/Output/null/translations/null_plugin_sr_RS.ts
+++ b/src/plugins/Output/null/translations/null_plugin_sr_RS.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Нул прикључак</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>О Нул прикључку излаза</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Кумп Нул прикључак излаза</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Аутор: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_tr.ts b/src/plugins/Output/null/translations/null_plugin_tr.ts
index 7b696dec5..6451da7e3 100644
--- a/src/plugins/Output/null/translations/null_plugin_tr.ts
+++ b/src/plugins/Output/null/translations/null_plugin_tr.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished">Yazan: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_uk_UA.ts b/src/plugins/Output/null/translations/null_plugin_uk_UA.ts
index 38a01e7db..5b82ce535 100644
--- a/src/plugins/Output/null/translations/null_plugin_uk_UA.ts
+++ b/src/plugins/Output/null/translations/null_plugin_uk_UA.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>Модуль нульового виведення</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>Про модуль нульового виведення</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Модуль нульового виведення для Qmmp</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Розробник: Ілля Котов &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_zh_CN.ts b/src/plugins/Output/null/translations/null_plugin_zh_CN.ts
index 3a18b2ed3..0a81e7f5c 100644
--- a/src/plugins/Output/null/translations/null_plugin_zh_CN.ts
+++ b/src/plugins/Output/null/translations/null_plugin_zh_CN.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation>无输出插件</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation>关于无输出插件</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation>Qmmp 无输出插件</translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/Output/null/translations/null_plugin_zh_TW.ts b/src/plugins/Output/null/translations/null_plugin_zh_TW.ts
index 889aeab2b..7f67a9f46 100644
--- a/src/plugins/Output/null/translations/null_plugin_zh_TW.ts
+++ b/src/plugins/Output/null/translations/null_plugin_zh_TW.ts
@@ -4,22 +4,22 @@
<context>
<name>OutputNullFactory</name>
<message>
- <location filename="../outputnullfactory.cpp" line="32"/>
+ <location filename="../outputnullfactory.cpp" line="31"/>
<source>Null Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="56"/>
+ <location filename="../outputnullfactory.cpp" line="55"/>
<source>About Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="57"/>
+ <location filename="../outputnullfactory.cpp" line="56"/>
<source>Qmmp Null Output Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../outputnullfactory.cpp" line="58"/>
+ <location filename="../outputnullfactory.cpp" line="57"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>作者:Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>