diff options
Diffstat (limited to 'src/plugins/Output/waveout')
31 files changed, 145 insertions, 159 deletions
diff --git a/src/plugins/Output/waveout/CMakeLists.txt b/src/plugins/Output/waveout/CMakeLists.txt index dee810a58..169eaed0a 100644 --- a/src/plugins/Output/waveout/CMakeLists.txt +++ b/src/plugins/Output/waveout/CMakeLists.txt @@ -2,21 +2,8 @@ project(libwaveout) INCLUDE(CheckIncludeFile) -# 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) @@ -35,13 +22,13 @@ SET(libwaveout_HDRS SET(libwaveout_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libwaveout_RCC_SRCS ${libwaveout_RCCS}) +QT5_ADD_RESOURCES(libwaveout_RCC_SRCS ${libwaveout_RCCS}) IF(WINDOWS_H_FOUND) ADD_LIBRARY(waveout MODULE ${libwaveout_SRCS} ${libwaveout_RCC_SRCS} ${libwaveout_HDRS}) add_dependencies(waveout qmmp) -target_link_libraries(waveout ${QT_LIBRARIES} libqmmp -lwinmm) +target_link_libraries(waveout Qt5::Widgets -lqmmp -lwinmm) install(TARGETS waveout DESTINATION ${LIB_DIR}/qmmp/Output) ENDIF(WINDOWS_H_FOUND) diff --git a/src/plugins/Output/waveout/outputwaveoutfactory.cpp b/src/plugins/Output/waveout/outputwaveoutfactory.cpp index f6bf47321..f9eb0f684 100644 --- a/src/plugins/Output/waveout/outputwaveoutfactory.cpp +++ b/src/plugins/Output/waveout/outputwaveoutfactory.cpp @@ -18,9 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-#include <QMessageBox>
-#include <QTranslator>
-#include <QtPlugin>
+
#include "outputwaveout.h"
#include "outputwaveoutfactory.h"
@@ -73,4 +71,4 @@ QTranslator *OutputWaveOutFactory::createTranslator(QObject *parent) return translator;
}
-Q_EXPORT_PLUGIN2(waveout,OutputWaveOutFactory)
+
diff --git a/src/plugins/Output/waveout/outputwaveoutfactory.h b/src/plugins/Output/waveout/outputwaveoutfactory.h index 6a92e9f0c..c8b992408 100644 --- a/src/plugins/Output/waveout/outputwaveoutfactory.h +++ b/src/plugins/Output/waveout/outputwaveoutfactory.h @@ -31,6 +31,7 @@ class OutputWaveOutFactory : 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/waveout/translations/waveout_plugin_bg.ts b/src/plugins/Output/waveout/translations/waveout_plugin_bg.ts index c351363ad..eb83518eb 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_bg.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_bg.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_cs.ts b/src/plugins/Output/waveout/translations/waveout_plugin_cs.ts index 52d9224b6..355c75de4 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_cs.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_cs.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Modul WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>O výstupním modulu WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Výstupní modul Qmmp WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Založeno na přehrávači aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_de.ts b/src/plugins/Output/waveout/translations/waveout_plugin_de.ts index df7497a7b..f72ca0e92 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_de.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_de.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut-Modul</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Über WaveOut-Ausgabemodul</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp WaveOut-Ausgabemodul</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Basiert auf dem aacDECdrop-Abspieler</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_el.ts b/src/plugins/Output/waveout/translations/waveout_plugin_el.ts index 1c6f35526..19418b0ee 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_el.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_el.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Πρόσθετο WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Σχετικά με το πρόσθετο εξόδου WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp πρόσθετο εξόδου WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Βασισμένο στον αναπαραγωγέα aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_en.ts b/src/plugins/Output/waveout/translations/waveout_plugin_en.ts index 08d6dffe3..5bfb4e66a 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_en.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_en.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_es.ts b/src/plugins/Output/waveout/translations/waveout_plugin_es.ts index a836cc924..9fca80fab 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_es.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_es.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Módulo WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Acerca del módulo de salida WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Módulo de salida WaveOut para Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Basado en el reproductor aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_fi.ts b/src/plugins/Output/waveout/translations/waveout_plugin_fi.ts index b97d48277..5d8e8ad18 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_fi.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_fi.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_fr.ts b/src/plugins/Output/waveout/translations/waveout_plugin_fr.ts index e01029d16..a0fc67d8a 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_fr.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_fr.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Greffon WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>À propos du greffon de sortie WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Greffon de sortie WaveOut pour Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Basé sur le lecteur aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_gl_ES.ts b/src/plugins/Output/waveout/translations/waveout_plugin_gl_ES.ts index 25fbe5390..f933353cb 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_gl_ES.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_gl_ES.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Engadido WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Sobre o engadido WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Engadido WaveOut de Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Baseado no reprodutor aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_he.ts b/src/plugins/Output/waveout/translations/waveout_plugin_he.ts index 9bace0344..d7c14c5ea 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_he.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_he.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>תוסף WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>אודות תוסף WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>תוסף פלט WaveOut של Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>מבוססת על נגן aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_hu.ts b/src/plugins/Output/waveout/translations/waveout_plugin_hu.ts index e3d210463..e52f81927 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_hu.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_hu.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_id.ts b/src/plugins/Output/waveout/translations/waveout_plugin_id.ts index e6109dbaf..94a61c5da 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_id.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_id.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Plugin WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Tentang Plugin Keluaran WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Plugin Keluaran WaveOut Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Berdasarkan pada player aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_it.ts b/src/plugins/Output/waveout/translations/waveout_plugin_it.ts index d64fc081c..fa8f4e16b 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_it.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_it.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Modulo WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Informazioni sul modulo d'uscita WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Modulo d'uscita WaveOut per Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Basato sul riproduttore audio aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_ja.ts b/src/plugins/Output/waveout/translations/waveout_plugin_ja.ts index 771f93277..4a859d9c2 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_ja.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_ja.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut プラグイン</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>WaveOut 出力プラグインについて</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>QMMP WaveOut 出力プラグイン</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>aacDECdrop プレイヤーを基に作成</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_kk.ts b/src/plugins/Output/waveout/translations/waveout_plugin_kk.ts index 490a7c37f..a2e56b9cf 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_kk.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_kk.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_lt.ts b/src/plugins/Output/waveout/translations/waveout_plugin_lt.ts index 24c08772e..704b22adb 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_lt.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_lt.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut įskiepis</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Apie WaveOut įskiepį</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp WaveOut įskiepis</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Sukurtas aacDECdrop grotuvo pagrindu</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_nl.ts b/src/plugins/Output/waveout/translations/waveout_plugin_nl.ts index d649d45ed..d27edf189 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_nl.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_nl.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut Module</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Over de WaveOut Output Module</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>WaveOut Output Module voor Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Gebasseerd op de aacDECdrop speler</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_pl_PL.ts b/src/plugins/Output/waveout/translations/waveout_plugin_pl_PL.ts index d98e8c5c8..a496d64f6 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_pl_PL.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_pl_PL.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Wtyczka WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>O wtyczce WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Wtyczka WaveOut dla Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Oparta na kodzie odtwarzacza aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_pt.ts b/src/plugins/Output/waveout/translations/waveout_plugin_pt.ts index 9ca85a561..1dfe4d18b 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_pt.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_pt.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Suplemento WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Sobre o suplemento WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Suplemento Qmmp WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Baseado no reprodutor aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_pt_BR.ts b/src/plugins/Output/waveout/translations/waveout_plugin_pt_BR.ts index 61360fdbe..38fee938e 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_pt_BR.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_pt_BR.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Plugin WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Sobre o plugin WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Plugin Qmmp WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Baseado no reprodutor aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_ru.ts b/src/plugins/Output/waveout/translations/waveout_plugin_ru.ts index 62c66e39a..3f35418c9 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_ru.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_ru.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Модуль WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>О модуле вывода WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Модуль вывода WaveOut для Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Основан на базе проигрывателя aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_sk.ts b/src/plugins/Output/waveout/translations/waveout_plugin_sk.ts index fd708ae33..9e568828c 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_sk.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_sk.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_sr_BA.ts b/src/plugins/Output/waveout/translations/waveout_plugin_sr_BA.ts index 3ab8214b8..3790be675 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_sr_BA.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_sr_BA.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>ВејвАут прикључак</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>О ВејвАут прикључку излаза</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Кумп ВејвАут прикључак излаза</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Заснован на aacDECdrop плејеру</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_sr_RS.ts b/src/plugins/Output/waveout/translations/waveout_plugin_sr_RS.ts index bd76aa786..9bb328206 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_sr_RS.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_sr_RS.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>ВејвАут прикључак</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>О ВејвАут прикључку излаза</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Кумп ВејвАут прикључак излаза</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Заснован на aacDECdrop плејеру</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_tr.ts b/src/plugins/Output/waveout/translations/waveout_plugin_tr.ts index 251a12f7c..6aa5d6179 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_tr.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_tr.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut Eklentisi</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>WaveOut Çıktı Eklentisi</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp WaveOut Çıktı Eklentisi</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>aacDECdrop oynatıcısı temellidir</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_uk_UA.ts b/src/plugins/Output/waveout/translations/waveout_plugin_uk_UA.ts index f0fb7a11a..65dca5a7d 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_uk_UA.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_uk_UA.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>Модуль WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>Про модуль виведення WaveOut</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Модуль виведення WaveOut для Qmmp</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>Базується на програвачі aacDECdrop</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_zh_CN.ts b/src/plugins/Output/waveout/translations/waveout_plugin_zh_CN.ts index 25efa192e..4bba0e4f3 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_zh_CN.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_zh_CN.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut 插件</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>关于 WaveOut 输出插件</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp WaveOut 输出插件</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>基于 aacDECdrop 播放器</translation> </message> diff --git a/src/plugins/Output/waveout/translations/waveout_plugin_zh_TW.ts b/src/plugins/Output/waveout/translations/waveout_plugin_zh_TW.ts index 40c3f6efb..23f9cf351 100644 --- a/src/plugins/Output/waveout/translations/waveout_plugin_zh_TW.ts +++ b/src/plugins/Output/waveout/translations/waveout_plugin_zh_TW.ts @@ -4,27 +4,27 @@ <context> <name>OutputWaveOutFactory</name> <message> - <location filename="../outputwaveoutfactory.cpp" line="31"/> + <location filename="../outputwaveoutfactory.cpp" line="29"/> <source>WaveOut Plugin</source> <translation>WaveOut 外掛</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="62"/> + <location filename="../outputwaveoutfactory.cpp" line="60"/> <source>About WaveOut Output Plugin</source> <translation>關於 WaveOut 匯出插件</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="63"/> + <location filename="../outputwaveoutfactory.cpp" line="61"/> <source>Qmmp WaveOut Output Plugin</source> <translation>Qmmp WaveOut 匯出插件</translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="64"/> + <location filename="../outputwaveoutfactory.cpp" line="62"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> <message> - <location filename="../outputwaveoutfactory.cpp" line="65"/> + <location filename="../outputwaveoutfactory.cpp" line="63"/> <source>Based on aacDECdrop player</source> <translation>基於 aacDECdrop 播放器</translation> </message> |
