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/Effect/ladspa/CMakeLists.txt | 19 +++---------------- src/plugins/Effect/ladspa/effectladspafactory.cpp | 7 ++----- src/plugins/Effect/ladspa/effectladspafactory.h | 3 ++- .../Effect/ladspa/translations/ladspa_plugin_bg.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_cs.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_de.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_el.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_en.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_es.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_fi.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_fr.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_gl_ES.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_he.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_hu.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_id.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_it.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_ja.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_kk.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_lt.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_nl.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_pl_PL.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_pt.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_pt_BR.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_ru.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_sk.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_sr_BA.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_sr_RS.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_tr.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_uk_UA.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_zh_CN.ts | 16 ++++++++-------- .../Effect/ladspa/translations/ladspa_plugin_zh_TW.ts | 16 ++++++++-------- 31 files changed, 231 insertions(+), 246 deletions(-) (limited to 'src/plugins/Effect/ladspa') diff --git a/src/plugins/Effect/ladspa/CMakeLists.txt b/src/plugins/Effect/ladspa/CMakeLists.txt index 98c129995..979345431 100644 --- a/src/plugins/Effect/ladspa/CMakeLists.txt +++ b/src/plugins/Effect/ladspa/CMakeLists.txt @@ -1,20 +1,7 @@ project(libladspa) -# 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) @@ -34,7 +21,7 @@ SET(libladspa_HDRS SET(libladspa_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libladspa_RCC_SRCS ${libladspa_RCCS}) +QT5_ADD_RESOURCES(libladspa_RCC_SRCS ${libladspa_RCCS}) # user interface @@ -42,7 +29,7 @@ SET(libladspa_UIS settingsdialog.ui ) -QT4_WRAP_UI(libladspa_UIS_H ${libladspa_UIS}) +QT5_WRAP_UI(libladspa_UIS_H ${libladspa_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -50,6 +37,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(ladspa MODULE ${libladspa_SRCS} ${libladspa_UIS_H} ${libladspa_RCC_SRCS} ${libladspa_HDRS}) add_dependencies(ladspa qmmp) -target_link_libraries(ladspa ${QT_LIBRARIES} libqmmp ${CMAKE_DL_LIBS}) +target_link_libraries(ladspa Qt5::Widgets -lqmmp ${CMAKE_DL_LIBS}) install(TARGETS ladspa DESTINATION ${LIB_DIR}/qmmp/Effect) diff --git a/src/plugins/Effect/ladspa/effectladspafactory.cpp b/src/plugins/Effect/ladspa/effectladspafactory.cpp index 24a72771a..af746e2ae 100644 --- a/src/plugins/Effect/ladspa/effectladspafactory.cpp +++ b/src/plugins/Effect/ladspa/effectladspafactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Ilya Kotov * + * Copyright (C) 2009-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 #include -#include +#include #include #include "settingsdialog.h" #include "ladspahelper.h" @@ -65,5 +64,3 @@ QTranslator *EffectLADSPAFactory::createTranslator(QObject *parent) translator->load(QString(":/ladspa_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(ladspa,EffectLADSPAFactory) diff --git a/src/plugins/Effect/ladspa/effectladspafactory.h b/src/plugins/Effect/ladspa/effectladspafactory.h index 9c694a7b0..b8c9b2fdb 100644 --- a/src/plugins/Effect/ladspa/effectladspafactory.h +++ b/src/plugins/Effect/ladspa/effectladspafactory.h @@ -30,7 +30,8 @@ class EffectLADSPAFactory : public QObject, public EffectFactory { Q_OBJECT -Q_INTERFACES(EffectFactory); +Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.EffectFactoryInterface.1.0") +Q_INTERFACES(EffectFactory) public: const EffectProperties properties() const; diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_bg.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_bg.ts index 9ba380a79..977cbb28b 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_bg.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_bg.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin - + About LADSPA Host for Qmmp - + LADSPA Host for Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP - + BMP-ladspa developers: - + Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_cs.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_cs.ts index e6de43f71..46fa67ec2 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_cs.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_cs.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Modul LADSPA - + About LADSPA Host for Qmmp O modulu LADSPA hostitele pro Qmmp - + LADSPA Host for Qmmp Hostitel LADSPA pro Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Založeno na hostiteli LADSPA pro BMP - + BMP-ladspa developers: Vývojáři BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_de.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_de.ts index 2cbac6277..0d6359e96 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_de.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_de.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin LADSPA-Modul - + About LADSPA Host for Qmmp Über LADSPA-Host für Qmmp - + LADSPA Host for Qmmp LADSPA-Host für Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> Geschrieben von: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Basierend auf dem LADSPA-Host für BMP - + BMP-ladspa developers: BMP-LADSPA-Entwickler: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_el.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_el.ts index 163fdf9a0..ad79c1481 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_el.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_el.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Πρόσθετο LADSPA - + About LADSPA Host for Qmmp Σχετικά με το πρόσθετο υποδοχέα LADSPA για το Qmmp - + LADSPA Host for Qmmp Πρόσθετο υποδοχέα LADSPA για το Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru> - + Based on the LADSPA Host for BMP Βασισμένο στον υποδοχέα LADSPA για BMP - + BMP-ladspa developers: Προγραμματιστές των BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_en.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_en.ts index 4b4951f63..8be404e5e 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_en.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_en.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin - + About LADSPA Host for Qmmp - + LADSPA Host for Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP - + BMP-ladspa developers: - + Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_es.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_es.ts index 5dbc6f3f0..b0e59f5fb 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_es.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_es.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Módulo LADSPA - + About LADSPA Host for Qmmp Acerca del módulo LADSPA para Qmmp - + LADSPA Host for Qmmp Módulo LADSPA para Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> Escrito por: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Basado en el módulo LADSPA para BMP - + BMP-ladspa developers: Desarrolladores de BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_fi.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_fi.ts index e3df01e97..397de889c 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_fi.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_fi.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin LADSPA-liitännäinen - + About LADSPA Host for Qmmp - + LADSPA Host for Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> Toteuttanut: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP - + BMP-ladspa developers: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_fr.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_fr.ts index d7db18f54..c215261c6 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_fr.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_fr.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Greffon LADSPA - + About LADSPA Host for Qmmp À propos du greffon LADSPA - + LADSPA Host for Qmmp Hôte LADSPA pour Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> Écrit par : Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Basé sur l'hôte LADSPA pour BMP - + BMP-ladspa developers: Développeurs BMP-ladspa : - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_gl_ES.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_gl_ES.ts index 0f0d7fec8..4c674c875 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_gl_ES.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_gl_ES.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Engadido LADSPA - + About LADSPA Host for Qmmp Sobre LADSPA Host para Qmmp - + LADSPA Host for Qmmp LADSPA Host para Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Baseado no LADSPA Host para BMP - + BMP-ladspa developers: Desenvolvedores de BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_he.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_he.ts index 78c23a01d..bc34576be 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_he.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_he.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin תוסף LADSPA - + About LADSPA Host for Qmmp אודות מארח LADSPA עבור Qmmp - + LADSPA Host for Qmmp מארח LADSPA עבור Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP מבוסס על LADSPA Host עבור BMP - + BMP-ladspa developers: מפתחי BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_hu.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_hu.ts index 58fef69af..b618aaa8e 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_hu.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_hu.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin - + About LADSPA Host for Qmmp - + LADSPA Host for Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP - + BMP-ladspa developers: - + Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_id.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_id.ts index a42744770..53cbe16a1 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_id.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_id.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Plugin LADSPA - + About LADSPA Host for Qmmp Tentang Host LADSPA bagi Qmmp - + LADSPA Host for Qmmp Host LADSPA bagi Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Berdasarkan pada Host LADSPA bagi BMP - + BMP-ladspa developers: Pengembang BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_it.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_it.ts index 94940592c..7590d8988 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_it.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_it.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Plugin LADSPA - + About LADSPA Host for Qmmp Informazioni su LADSPA per Qmmp - + LADSPA Host for Qmmp Host LADSPA per Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> Autori: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Basato su Host LADSPA per BMP - + BMP-ladspa developers: Sviluppatori BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_ja.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_ja.ts index 1845f045b..7cb002a7d 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_ja.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_ja.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin LADSPA プラグイン - + About LADSPA Host for Qmmp QMMP 用の LADSPA ホストについて - + LADSPA Host for Qmmp QMMP 用の LADSPA ホスト - + Written by: Ilya Kotov <forkotov02@ya.ru> 制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP BMP 用 LADSPA ホストを基に作成 - + BMP-ladspa developers: BMP-ladspa 開発者: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_kk.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_kk.ts index 479a2cb00..ebbd81420 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_kk.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_kk.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin - + About LADSPA Host for Qmmp - + LADSPA Host for Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP - + BMP-ladspa developers: - + Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_lt.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_lt.ts index e16377646..46a4f3261 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_lt.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_lt.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin LADSPA Įskiepis - + About LADSPA Host for Qmmp Apie LADSPA įskiepį - + LADSPA Host for Qmmp LADSPA įskiepis - + Written by: Ilya Kotov <forkotov02@ya.ru> Sukūrė: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Sukurta "LADSPA Host for BMP" pagrindu - + BMP-ladspa developers: BMP LADSPA kurėjai: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_nl.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_nl.ts index 2c230f68d..c68fc990b 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_nl.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_nl.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin LADSPA Module - + About LADSPA Host for Qmmp Over de LADSPA Module voor Qmmp - + LADSPA Host for Qmmp LADSPA Host voor Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> Auteur: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Gebasseerd op de LADSPA Host voor BMP - + BMP-ladspa developers: BMP-ladspa ontwikkelaars: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pl_PL.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pl_PL.ts index 2b32250ce..786a146f6 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pl_PL.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pl_PL.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Wtyczka LADSPA - + About LADSPA Host for Qmmp O wtyczce LADSPA dla Qmmp - + LADSPA Host for Qmmp Host LADSPA dla Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Oparta na LADSPA Host dla BMP - + BMP-ladspa developers: Autorzy BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt.ts index c58e9c4eb..559d1ad09 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Suplemento LADSPA - + About LADSPA Host for Qmmp Sobre o suplemento Qmmp LADSPA Host - + LADSPA Host for Qmmp Suplemento Qmmp LADSPA Host - + Written by: Ilya Kotov <forkotov02@ya.ru> Desenvolvido por: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Baseado no LADSPA Host para BMP - + BMP-ladspa developers: Programadores BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt_BR.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt_BR.ts index 35b82f81f..d68f53c7e 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt_BR.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_pt_BR.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Plugin LADSPA - + About LADSPA Host for Qmmp Sobre o plugin Qmmp LADSPA Host - + LADSPA Host for Qmmp Plugin Qmmp LADSPA Host - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Baseado no LADSPA Host para BMP - + BMP-ladspa developers: Programadores BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_ru.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_ru.ts index 005cc735a..06ed932cd 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_ru.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_ru.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Модуль LADSPA - + About LADSPA Host for Qmmp О модуле LADSPA для Qmmp - + LADSPA Host for Qmmp LADSPA Host для Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> Разработчик: Илья Котов <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Разработан на основе модуля LADSPA для BMP - + BMP-ladspa developers: Разработчики BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sk.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sk.ts index 2f2aecb22..5f86c6d1d 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sk.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sk.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin - + About LADSPA Host for Qmmp - + LADSPA Host for Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP - + BMP-ladspa developers: - + Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_BA.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_BA.ts index d4ec315ab..7237477ed 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_BA.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_BA.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin ЛАДСПА - + About LADSPA Host for Qmmp О ЛАДСПА хосту за Кумп - + LADSPA Host for Qmmp ЛАДСПА хост за Кумп - + Written by: Ilya Kotov <forkotov02@ya.ru> Аутор: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Заснован на ЛАДСПА хосту за БМП - + BMP-ladspa developers: БМП-ладспа програмери: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_RS.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_RS.ts index 369801eb8..537d5bf18 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_RS.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_sr_RS.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin ЛАДСПА - + About LADSPA Host for Qmmp О ЛАДСПА хосту за Кумп - + LADSPA Host for Qmmp ЛАДСПА хост за Кумп - + Written by: Ilya Kotov <forkotov02@ya.ru> Аутор: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Заснован на ЛАДСПА хосту за БМП - + BMP-ladspa developers: БМП-ладспа програмери: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_tr.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_tr.ts index 8ab7ca7c1..4ad67225d 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_tr.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_tr.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin - + About LADSPA Host for Qmmp - + LADSPA Host for Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP - + BMP-ladspa developers: - + Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_uk_UA.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_uk_UA.ts index 3da605958..7cee91725 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_uk_UA.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_uk_UA.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin Модуль LADSPA - + About LADSPA Host for Qmmp Про модуль LADSPA для Qmmp - + LADSPA Host for Qmmp LADSPA Host для Qmmp - + Written by: Ilya Kotov <forkotov02@ya.ru> Розробник: Ілля Котов <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP Базується на модулі LADSPA для BMP - + BMP-ladspa developers: Розробники BMP-ladspa: - + Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_CN.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_CN.ts index ba885c9d5..47e2fd0e7 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_CN.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_CN.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin LADSPA 插件 - + About LADSPA Host for Qmmp 关于 Qmmp LADSPA 主机 - + LADSPA Host for Qmmp Qmmp 的 LADSPA 主机 - + Written by: Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP 基于 BMP 的 LADSPA 主机 - + BMP-ladspa developers: BMP-ladspa 开发者: - + Nick Lamb <njl195@zepler.org.uk> Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> Giacomo Lozito <city_hunter@users.sf.net> diff --git a/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_TW.ts b/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_TW.ts index d2cc542a8..555c3c74d 100644 --- a/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_TW.ts +++ b/src/plugins/Effect/ladspa/translations/ladspa_plugin_zh_TW.ts @@ -4,42 +4,42 @@ EffectLADSPAFactory - + LADSPA Plugin LADSPA 外掛 - + About LADSPA Host for Qmmp 關於 Qmmp LADSPA 主机 - + LADSPA Host for Qmmp Qmmp 的 LADSPA 主机 - + Written by: Ilya Kotov <forkotov02@ya.ru> 作者:Ilya Kotov <forkotov02@ya.ru> - + Based on the LADSPA Host for BMP 基於 BMP 的 LADSPA 主机 - + BMP-ladspa developers: BMP-ladspa 開發者: - + Nick Lamb <njl195@zepler.org.uk> - + Giacomo Lozito <city_hunter@users.sf.net> -- cgit v1.2.3-13-gbd6f