diff options
41 files changed, 5 insertions, 2461 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 367a60f2f..35c969630 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -174,7 +174,6 @@ PRINT_SUMMARY ("Qt Multimedia support ............." USE_QTMULTIMEDIA QT_QTMULTI MESSAGE("") MESSAGE("Effect Plugins:") -PRINT_SUMMARY ("Sample Rate Conversion ............" USE_SRC SAMPLERATE_FOUND) PRINT_SUMMARY ("SoX Resampler ....................." USE_SOXR SOXR_FOUND) PRINT_SUMMARY ("BS2B Plugin ......................." USE_BS2B BS2B_FOUND) PRINT_SUMMARY ("LADSPA Host ......................." USE_LADSPA 1) @@ -81,7 +81,7 @@ Requirements: - flac >= 1.1.3 (Optional) - libmpcdec >= 1.2.6 (Optional) - jackit >= 0.102.5 (Optional) -- libsamplerate >= 0.1.2 (Optional) +- libsoxr >= 0.1.0 (Optional) - libmodplug >= 0.8.4 (Optional) - libsndfile >= 1.0.17 (Optional) - wavpack >= 4.41 (Optional) @@ -122,7 +122,7 @@ Available options: - USE_MAD, USE_FLAC, USE_VORBIS, USE_MPC, USE_MODPLUG, USE_SNDFILE, USE_WAVPACK, USE_FFMPEG, USE_AAC, USE_CUE, USE_MPLAYER, USE_CDA, USE_MIDI, USE_GME, USE_FFMPEG_LEGACY, USE_OPUS (decoders); - USE_ALSA, USE_OSS, USE_JACK, USE_PULSE, USE_NULL, USE_OSS4, USE_WAVEOUT, UDE_DSOUND (output plugins); -- USE_SRC, USE_BS2B, USE_LADSPA, USE_CROSSFADE, USE_STEREO (effects); +- USE_SOXR, USE_BS2B, USE_LADSPA, USE_CROSSFADE, USE_STEREO (effects); - USE_ANALYZER, USE_PROJECTM (visualization); - USE_MPRIS, USE_SCROBBLER, USE_STATICON, USE_NOTIFIER, USE_LYRICS, USE_HAL, USE_HOTKEY, USE_FILEOPS, USE_COVER, USE_KDENOTIFY, USE_UDISKS2, USE_UDISKS, USE_CONVERTER, USE_RGSCAN, USE_SB, USE_TRACKCHANGE, USE_COPYPASTE, @@ -163,7 +163,7 @@ make install INSTALL_ROOT=/usr/local Executable: ./bin/qmmp -If someone module doesn't build or doesn't needed you can disable it in qmmp.pri file - just comment corresponding +If someone module doesn't build or doesn't needed you can disable it in qmmp.pri file - just comment corresponding line( symbol '#') or execute qmake with special parameters: qmake DISABLED_PLUGINS+=JACK_PLUGIN DISABLED_PLUGINS+=OSS_PLUGIN diff --git a/README.RUS b/README.RUS index 526782da8..ce7d6f7b9 100644 --- a/README.RUS +++ b/README.RUS @@ -80,7 +80,7 @@ Qmmp - Qt-based multimedia player - flac >= 1.1.3 (Опционально) - libmpcdec >= 1.2.6 (Опционально) - jackit >= 0.102.5 (Опционально) -- libsamplerate >= 0.1.2 (Опционально) +- soxr >= 0.1.0 (Опционально) - libmodplug >= 0.8.4 (Опционально) - libsndfile >= 1.0.17 (Опционально) - wavpack >= 4.41 (Опционально) @@ -120,7 +120,7 @@ cmake ./ -DUSE_JACK:BOOL=FALSE - USE_MAD, USE_FLAC, USE_VORBIS, USE_MPC, USE_MODPLUG, USE_SNDFILE, USE_WAVPACK, USE_FFMPEG, USE_AAC, USE_CUE, USE_MPLAYER, USE_CDA, USE_MIDI, USE_GME, USE_FFMPEG_LEGACY, USE_OPUS (декодеры); - USE_ALSA, USE_OSS, USE_JACK, USE_PULSE, USE_NULL, USE_OSS4, USE_WAVEOUT, USE_DSOUND (модули вывода); -- USE_SRC, USE_BS2B, USE_LADSPA, USE_CROSSFADE, USE_STEREO (эффекты); +- USE_SOXR, USE_BS2B, USE_LADSPA, USE_CROSSFADE, USE_STEREO (эффекты); - USE_ANALYZER, USE_PROJECTM (визуализация); - USE_MPRIS, USE_SCROBBLER, USE_STATICON, USE_NOTIFIER, USE_LYRICS, USE_HAL, USE_HOTKEY, USE_FILEOPS, USE_COVER, USE_KDENOTIFY, USE_UDISKS2, USE_UDISKS, USE_CONVERTER, USE_RGSCAN, USE_TRACKCHANGE, USE_COPYPASTE, diff --git a/src/plugins/Effect/CMakeLists.txt b/src/plugins/Effect/CMakeLists.txt index 88ef4f3c6..bae1e89fd 100644 --- a/src/plugins/Effect/CMakeLists.txt +++ b/src/plugins/Effect/CMakeLists.txt @@ -1,14 +1,9 @@ SET(USE_SOXR TRUE CACHE BOOL "enable/disable SoX resampler plugin") -SET(USE_SRC TRUE CACHE BOOL "enable/disable SRC plugin") SET(USE_BS2B TRUE CACHE BOOL "enable/disable bs2b plugin") SET(USE_LADSPA TRUE CACHE BOOL "enable/disable ladspa plugin") SET(USE_CROSSFADE TRUE CACHE BOOL "enable/disable crossfade plugin") SET(USE_STEREO TRUE CACHE BOOL "enable/disable extra stereo plugin") -IF(USE_SRC) -add_subdirectory(srconverter) -ENDIF(USE_SRC) - IF(USE_SOXR) add_subdirectory(soxr) ENDIF(USE_SOXR) diff --git a/src/plugins/Effect/Effect.pro b/src/plugins/Effect/Effect.pro index ada94887a..f250b6097 100644 --- a/src/plugins/Effect/Effect.pro +++ b/src/plugins/Effect/Effect.pro @@ -8,7 +8,6 @@ SUBDIRS += bs2b } unix { - SUBDIRS += srconverter contains(CONFIG, SOXR_PLUGIN):SUBDIRS += soxr contains(CONFIG, LADSPA_PLUGIN):SUBDIRS += ladspa } diff --git a/src/plugins/Effect/srconverter/CMakeLists.txt b/src/plugins/Effect/srconverter/CMakeLists.txt deleted file mode 100644 index 19341e529..000000000 --- a/src/plugins/Effect/srconverter/CMakeLists.txt +++ /dev/null @@ -1,66 +0,0 @@ -project(libsrconverter) - -cmake_minimum_required(VERSION 2.4.7) - -if(COMMAND cmake_policy) -cmake_policy(SET CMP0003 NEW) -endif(COMMAND cmake_policy) - -# 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) - -pkg_check_modules(SAMPLERATE samplerate) - -include_directories(${SAMPLERATE_INCLUDE_DIRS}) -link_directories(${SAMPLERATE_LIBRARY_DIRS}) -ADD_DEFINITIONS(${SAMPLERATE_CFLAGS}) - -SET(libsrconverter_SRCS - srconverter.cpp - settingsdialog.cpp - effectsrconverterfactory.cpp -) - -SET(libsrconverter_HDRS - srconverter.h -) - -SET(libsrconverter_RCCS translations/translations.qrc) - -QT4_ADD_RESOURCES(libsrconverter_RCC_SRCS ${libsrconverter_RCCS}) - -# user interface - - -SET(libsrconverter_UIS - settingsdialog.ui -) - -QT4_WRAP_UI(libsrconverter_UIS_H ${libsrconverter_UIS}) -# Don't forget to include output directory, otherwise -# the UI file won't be wrapped! -include_directories(${CMAKE_CURRENT_BINARY_DIR}) - -IF(SAMPLERATE_FOUND) -ADD_LIBRARY(srconverter MODULE ${libsrconverter_SRCS} ${libsrconverter_UIS_H} - ${libsrconverter_RCC_SRCS} ${libsrconverter_HDRS}) -add_dependencies(srconverter qmmp) -target_link_libraries(srconverter ${QT_LIBRARIES} libqmmp ${SAMPLERATE_LDFLAGS}) -install(TARGETS srconverter DESTINATION ${LIB_DIR}/qmmp/Effect) -ENDIF(SAMPLERATE_FOUND) diff --git a/src/plugins/Effect/srconverter/effectsrconverterfactory.cpp b/src/plugins/Effect/srconverter/effectsrconverterfactory.cpp deleted file mode 100644 index 861302ea8..000000000 --- a/src/plugins/Effect/srconverter/effectsrconverterfactory.cpp +++ /dev/null @@ -1,64 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007 by Ilya Kotov * - * forkotov02@hotmail.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QtGui> -#include <qmmp/qmmp.h> -#include "settingsdialog.h" -#include "srconverter.h" -#include "effectsrconverterfactory.h" - -const EffectProperties EffectSRConverterFactory::properties() const -{ - EffectProperties properties; - properties.name = tr("SRC Plugin"); - properties.shortName = "SRC"; - properties.hasSettings = true; - properties.hasAbout = true; - properties.priority = EffectProperties::EFFECT_PRIORITY_HIGH; - return properties; -} - -Effect *EffectSRConverterFactory::create() -{ - return new SRConverter(); -} - -void EffectSRConverterFactory::showSettings(QWidget *parent) -{ - SettingsDialog *s = new SettingsDialog(parent); - s ->show(); -} - -void EffectSRConverterFactory::showAbout(QWidget *parent) -{ - QMessageBox::about (parent, tr("About Sample Rate Converter Plugin"), - tr("Qmmp Sample Rate Converter Plugin")+"\n"+ - tr("Written by: Ilya Kotov <forkotov02@hotmail.ru>")); -} - -QTranslator *EffectSRConverterFactory::createTranslator(QObject *parent) -{ - QTranslator *translator = new QTranslator(parent); - QString locale = Qmmp::systemLanguageID(); - translator->load(QString(":/srconverter_plugin_") + locale); - return translator; -} - -Q_EXPORT_PLUGIN2(srconverter, EffectSRConverterFactory) diff --git a/src/plugins/Effect/srconverter/effectsrconverterfactory.h b/src/plugins/Effect/srconverter/effectsrconverterfactory.h deleted file mode 100644 index cc1b6a91a..000000000 --- a/src/plugins/Effect/srconverter/effectsrconverterfactory.h +++ /dev/null @@ -1,44 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007-2009 by Ilya Kotov * - * forkotov02@hotmail.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef EFFECTSRCONVERTERFACTORY_H -#define EFFECTSRCONVERTERFACTORY_H - -#include <QObject> -#include <qmmp/effectfactory.h> -#include <qmmp/effect.h> - -/** - @author Ilya Kotov <forkotov02@hotmail.ru> -*/ -class EffectSRConverterFactory : public QObject, public EffectFactory -{ -Q_OBJECT -Q_INTERFACES(EffectFactory); - -public: - const EffectProperties properties() const; - Effect *create(); - void showSettings(QWidget *parent); - void showAbout(QWidget *parent); - QTranslator *createTranslator(QObject *parent); -}; - - -#endif diff --git a/src/plugins/Effect/srconverter/settingsdialog.cpp b/src/plugins/Effect/srconverter/settingsdialog.cpp deleted file mode 100644 index fc7d1c5ae..000000000 --- a/src/plugins/Effect/srconverter/settingsdialog.cpp +++ /dev/null @@ -1,48 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007 by Ilya Kotov * - * forkotov02@hotmail.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QSettings> - -#include <qmmp/qmmp.h> - -#include "settingsdialog.h" - -SettingsDialog::SettingsDialog(QWidget *parent) - : QDialog(parent) -{ - ui.setupUi(this); - setAttribute(Qt::WA_DeleteOnClose, true); - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - ui.srSpinBox->setValue(settings.value("SRC/sample_rate",48000).toInt()); - ui.engineComboBox->setCurrentIndex(settings.value("SRC/engine", 0).toInt()); -} - - -SettingsDialog::~SettingsDialog() -{ -} - -void SettingsDialog::accept() -{ - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - settings.setValue("SRC/sample_rate",ui.srSpinBox->value()); - settings.setValue("SRC/engine", ui.engineComboBox->currentIndex()); - QDialog::accept(); -} diff --git a/src/plugins/Effect/srconverter/settingsdialog.h b/src/plugins/Effect/srconverter/settingsdialog.h deleted file mode 100644 index 17986e54f..000000000 --- a/src/plugins/Effect/srconverter/settingsdialog.h +++ /dev/null @@ -1,46 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007 by Ilya Kotov * - * forkotov02@hotmail.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef SETTINGSDIALOG_H -#define SETTINGSDIALOG_H - -#include <QDialog> - -#include "ui_settingsdialog.h" - -/** - @author Ilya Kotov <forkotov02@hotmail.ru> -*/ -class SettingsDialog : public QDialog -{ -Q_OBJECT -public: - SettingsDialog(QWidget *parent = 0); - - ~SettingsDialog(); - -public slots: - virtual void accept(); - -private: - Ui::SettingsDialog ui; - -}; - -#endif diff --git a/src/plugins/Effect/srconverter/settingsdialog.ui b/src/plugins/Effect/srconverter/settingsdialog.ui deleted file mode 100644 index 44c638833..000000000 --- a/src/plugins/Effect/srconverter/settingsdialog.ui +++ /dev/null @@ -1,135 +0,0 @@ -<ui version="4.0" > - <class>SettingsDialog</class> - <widget class="QDialog" name="SettingsDialog" > - <property name="geometry" > - <rect> - <x>0</x> - <y>0</y> - <width>338</width> - <height>99</height> - </rect> - </property> - <property name="windowTitle" > - <string>Sample Rate Converter Plugin Settings</string> - </property> - <layout class="QGridLayout" name="gridLayout" > - <item row="0" column="0" > - <widget class="QLabel" name="label" > - <property name="text" > - <string>Sample Rate (Hz):</string> - </property> - </widget> - </item> - <item row="0" column="1" colspan="2" > - <widget class="QSpinBox" name="srSpinBox" > - <property name="maximum" > - <number>96000</number> - </property> - <property name="singleStep" > - <number>100</number> - </property> - <property name="value" > - <number>48000</number> - </property> - </widget> - </item> - <item row="1" column="0" > - <widget class="QLabel" name="label_2" > - <property name="text" > - <string>Interpolation Engine:</string> - </property> - </widget> - </item> - <item row="1" column="1" colspan="2" > - <widget class="QComboBox" name="engineComboBox" > - <item> - <property name="text" > - <string>Best Sinc Interpolation</string> - </property> - </item> - <item> - <property name="text" > - <string>Medium Sinc Interpolation</string> - </property> - </item> - <item> - <property name="text" > - <string>Fastest Sinc Interpolation</string> - </property> - </item> - <item> - <property name="text" > - <string>ZOH Interpolation</string> - </property> - </item> - <item> - <property name="text" > - <string>Linear Interpolation</string> - </property> - </item> - </widget> - </item> - <item row="2" column="0" colspan="2" > - <spacer> - <property name="orientation" > - <enum>Qt::Horizontal</enum> - </property> - <property name="sizeHint" stdset="0" > - <size> - <width>228</width> - <height>24</height> - </size> - </property> - </spacer> - </item> - <item row="2" column="2" > - <widget class="QDialogButtonBox" name="buttonBox" > - <property name="sizePolicy" > - <sizepolicy vsizetype="Fixed" hsizetype="Maximum" > - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="standardButtons" > - <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> - </property> - </widget> - </item> - </layout> - </widget> - <resources/> - <connections> - <connection> - <sender>buttonBox</sender> - <signal>accepted()</signal> - <receiver>SettingsDialog</receiver> - <slot>accept()</slot> - <hints> - <hint type="sourcelabel" > - <x>270</x> - <y>76</y> - </hint> - <hint type="destinationlabel" > - <x>91</x> - <y>88</y> - </hint> - </hints> - </connection> - <connection> - <sender>buttonBox</sender> - <signal>rejected()</signal> - <receiver>SettingsDialog</receiver> - <slot>reject()</slot> - <hints> - <hint type="sourcelabel" > - <x>326</x> - <y>78</y> - </hint> - <hint type="destinationlabel" > - <x>139</x> - <y>60</y> - </hint> - </hints> - </connection> - </connections> -</ui> diff --git a/src/plugins/Effect/srconverter/srconverter.cpp b/src/plugins/Effect/srconverter/srconverter.cpp deleted file mode 100644 index 753e60172..000000000 --- a/src/plugins/Effect/srconverter/srconverter.cpp +++ /dev/null @@ -1,116 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007-2016 by Ilya Kotov * - * forkotov02@hotmail.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#include <QSettings> -#include <math.h> -#include <stdlib.h> -#include <qmmp/qmmp.h> -#include "srconverter.h" - -SRConverter::SRConverter() : Effect() -{ - int converter_type_array[] = {SRC_SINC_BEST_QUALITY, SRC_SINC_MEDIUM_QUALITY, SRC_SINC_FASTEST, - SRC_ZERO_ORDER_HOLD, SRC_LINEAR}; - m_src_state = 0; - m_srcError = 0; - m_src_data.data_in = 0; - m_src_data.data_out = 0; - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - m_overSamplingFs = settings.value("SRC/sample_rate",48000).toInt(); - m_converter_type = converter_type_array[settings.value("SRC/engine", 0).toInt()]; -} - -SRConverter::~SRConverter() -{ - freeSRC(); -} - -void SRConverter::applyEffect(Buffer *b) -{ - if (m_src_state && b->samples > 0) - { - m_src_data.end_of_input = 0; - m_src_data.data_in = b->data; - m_src_data.input_frames = b->samples / channels(); - m_src_data.output_frames = m_src_data.src_ratio * m_src_data.input_frames + 1; - - if ((m_srcError = src_process(m_src_state, &m_src_data)) > 0) - { - qWarning("SRConverter: src_process(): %s\n", src_strerror(m_srcError)); - } - - b->samples = m_src_data.output_frames_gen * channels(); - m_src_data.data_in = 0; - m_src_data.input_frames = 0; - - if(b->samples > b->size) - { - delete [] b->data; - b->data = new float[b->samples]; - b->size = b->samples; - } - - memcpy(b->data, m_src_data.data_out, b->samples * sizeof(float)); - } -} - -void SRConverter::configure(quint32 freq, ChannelMap map) -{ - freeSRC(); - if(freq != m_overSamplingFs) - { - m_src_state = src_new(m_converter_type, map.count(), &m_srcError); - if (m_src_state) - { - m_src_data.src_ratio = (float)m_overSamplingFs/(float)freq; - src_set_ratio(m_src_state, m_src_data.src_ratio); - } - else - qDebug("SRConverter: src_new(): %s", src_strerror(m_srcError)); - - m_src_data.data_out = new float[int(m_src_data.src_ratio * QMMP_BLOCK_FRAMES * map.count() * 2 + 2)]; - } - Effect::configure(m_overSamplingFs, map); -} - -void SRConverter::freeSRC() -{ - if (m_src_state) - { - src_reset(m_src_state); - src_delete(m_src_state); - } - m_src_state = 0; - - if(m_src_data.data_in) - { - delete [] m_src_data.data_in; - m_src_data.data_in = 0; - } - if(m_src_data.data_out) - { - delete [] m_src_data.data_out; - m_src_data.data_out = 0; - } - - m_src_data.end_of_input = 0; - m_src_data.input_frames = 0; - m_src_data.output_frames = 0; -} diff --git a/src/plugins/Effect/srconverter/srconverter.h b/src/plugins/Effect/srconverter/srconverter.h deleted file mode 100644 index f0573d911..000000000 --- a/src/plugins/Effect/srconverter/srconverter.h +++ /dev/null @@ -1,48 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007-2016 by Ilya Kotov * - * forkotov02@hotmail.ru * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef SRCONVERTER_H -#define SRCONVERTER_H - -#include <samplerate.h> -#include <qmmp/effect.h> - -/** - @author Ilya Kotov <forkotov02@hotmail.ru> -*/ - -class SRConverter : public Effect -{ -public: - SRConverter(); - virtual ~SRConverter(); - - void applyEffect(Buffer *b); - void configure(quint32 freq, ChannelMap map); - -private: - void freeSRC(); - SRC_STATE *m_src_state; - SRC_DATA m_src_data; - quint32 m_overSamplingFs; - int m_srcError; - int m_converter_type; -}; - -#endif diff --git a/src/plugins/Effect/srconverter/srconverter.pro b/src/plugins/Effect/srconverter/srconverter.pro deleted file mode 100644 index b9e809a8e..000000000 --- a/src/plugins/Effect/srconverter/srconverter.pro +++ /dev/null @@ -1,32 +0,0 @@ -include(../../plugins.pri) - -HEADERS += srconverter.h \ - effectsrconverterfactory.h \ - settingsdialog.h - -SOURCES += srconverter.cpp \ - effectsrconverterfactory.cpp \ - settingsdialog.cpp - -TARGET=$$PLUGINS_PREFIX/Effect/srconverter -QMAKE_CLEAN =$$PLUGINS_PREFIX/Effect/libsrconverter.so -INCLUDEPATH += ../../../ -CONFIG += warn_on \ -plugin \ -link_pkgconfig - -PKGCONFIG += samplerate -TEMPLATE = lib -QMAKE_LIBDIR += ../../../../lib -LIBS += -lqmmp -L/usr/lib -I/usr/include - -RESOURCES = translations/translations.qrc - -isEmpty(LIB_DIR){ - LIB_DIR = /lib -} -target.path = $$LIB_DIR/qmmp/Effect -INSTALLS += target - -FORMS += settingsdialog.ui - diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_bg.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_bg.ts deleted file mode 100644 index b00bebbaa..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_bg.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="bg_BG"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_cs.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_cs.ts deleted file mode 100644 index 23e59f66f..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_cs.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="cs"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Modul SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>O modulu SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Modul Qmmp pro konverzi vzorkovací frekvence</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Autor: Ilja Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Nastavení modulu SRC</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Vzorkovací frekvence (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Způsob interpolace:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Nejlepší interpolace pomocí sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Střední interpolace pomocí sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Nejrychlejší interpolace pomocí sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>Interpolace ZOH</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Lineární interpolace</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_de.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_de.ts deleted file mode 100644 index 85625c82d..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_de.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="de"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>SRC-Modul</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>Über Abtastratenkonverter-Modul</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Qmmp Abtastratenkonverter-Modul</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Geschrieben von: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Einstellungen Abtastratenkonverter-Modul</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Abtastrate (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Interpolation:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Sinc (hohe Qualität)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Sinc (mittlere Qualität)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Schnellste Sinc-Interpolation</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>Zero-Order-Hold (ZOH)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Linear</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_el.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_el.ts deleted file mode 100644 index 870e5599d..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_el.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="el"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Πρόσθετο SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>Σχετικά με το πρόσθετο μετατροπής ρυθμού δειγματοληψίας</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Qmmp πρόσθετο μετατροπής ρυθμού δειγματοληψίας</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Ρυθμίσεις πρόσθετου μετατροπής ρυθμού δειγματοληψίας</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Ρυθμός δειγματοληψίας (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Μηχανή παρεμβολής:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Καλύτερη παρεμβολή sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Μέση παρεμβολή sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Τάχιστη παρεμβολή sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>Παρεμβολή ZOH</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Γραμμική παρεμβολή</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_en.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_en.ts deleted file mode 100644 index da4d38f14..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_en.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="en_US"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_es.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_es.ts deleted file mode 100644 index e276e2d67..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_es.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="es"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Módulo SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>Acerca del módulo de conversión de frecuencia</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Módulo de conversión de frecuencia para Qmmp</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Escrito por: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Configuración del módulo de conversión de frecuencia</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Frecuencia (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Motor de interpolación:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Interpolación sinc mejor</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Interpolación sinc media</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Interpolación sinc rápida</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>Interpolación ZOH</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Interpolación linear</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_fr.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_fr.ts deleted file mode 100644 index 6d9020d8a..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_fr.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="fr"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Greffon de conversion d'échantillonnage</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>À propos du greffon de conversion d'échantillonnage</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Greffon de conversion d'échantillonnage pour Qmmp</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Écrit par : Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Configuration du greffon de conversion d'échantillonnage</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Taux d'échantillonnage (Hz) :</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Moteur d'interpolation :</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>interpolation sinc la meilleure</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>interpolation sinc moyenne</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>interpolation sinc la plus rapide</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>interpolation ZOH</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>interpolation linéaire</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_gl_ES.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_gl_ES.ts deleted file mode 100644 index 3225a1c66..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_gl_ES.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="gl_ES"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Engadido SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>Sobre o engadido Sample Rate Converter</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Engadido Qmmp Sample Rate Converter</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Escrito por: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Opcións do engadido Sample Rate Converter</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Frecuencia (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Motor de interpolación:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Best Sinc Interpolation</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Medium Sinc Interpolation</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Fastest Sinc Interpolation</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>ZOH Interpolation</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Linear Interpolation</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_he.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_he.ts deleted file mode 100644 index 0b0df0383..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_he.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="he"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>תוספת SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>אודות תוספת ממיר שיעור דגימה</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>תוספת ממיר שיעור דגימה של Qmmp</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>חוברה על ידי: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>הגדרות תוספת ממיר שיעור דגימה</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>שיעור דגימה (הרץ):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>מנוע אינטרפולציה:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>אינטרפולציה Sinc הטובה ביותר</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>אינטרפולציה Sinc בינונית</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>אינטרפולציה Sinc הכי מהירה</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>אינטרפולציית ZOH</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>אינטרפולציה לינארית</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_hu.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_hu.ts deleted file mode 100644 index 88975a1c8..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_hu.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="hu_HU"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_it.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_it.ts deleted file mode 100644 index de1adb07e..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_it.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="it"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Modulo SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>Info sul modulo di conversione campionamento</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Modulo di conversione campionamento Qmmp</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Autore: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Impostazioni del modulo di conversione campionamento</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Campionamento (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Interpolazione:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Migliore</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Media</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Veloce</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>Interpolazione Zero-Order-Hold (ZOH)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Lineare</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_ja.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_ja.ts deleted file mode 100644 index e0dc1d5df..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_ja.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="ja_JP"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>SRC プラグイン</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>サンプルレートコンバータープラグインについて</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>QMMP サンプルレートコンバータープラグイン</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>サンプルレートコンバーターの設定</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>サンプルレート (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>補間エンジン:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>最良 Sinc 補間</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>中庸 Sinc 補間</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>最速 Sinc 補間</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>ZOH 補間</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>線形補間</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_kk.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_kk.ts deleted file mode 100644 index 619705b8d..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_kk.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="kk_KZ"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_lt.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_lt.ts deleted file mode 100644 index 8f40f3ebe..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_lt.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="lt"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>SRC įskiepis</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>Apie SRC įskiepį</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Qmmp SRC įskiepis</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Sukurta: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>SRC įskiepio nustatymai</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Diskretizacijos dažnis (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Interpoliacijos variklis:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Geriausias interpoliacijos lygis</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Vidutinis interpoliacijos lygis</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Greičiausias interpoliacijos lygis</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>ZOH interpoliacija</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Linijinė interpoliacija</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_nl.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_nl.ts deleted file mode 100644 index 69d6852da..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_nl.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="nl"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>SRC Module</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>Over de Sample Rate Converter Module</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Sample Rate Converter Module voor Qmmp</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Auteur: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Sample Rate Converter Module Instellingen</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Sample frequentie (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Interpolatie Engine:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Beste Sinc Interpolatie</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Medium Sinc Interpolatie</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Snelste Sinc Interpolatie</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>ZOH Interpolatie</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Lineaire Interpolatie</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_pl_PL.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_pl_PL.ts deleted file mode 100644 index 98ae77f3a..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_pl_PL.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="pl_PL"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Wtyczka SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>O wtyczce Sample Rate Converter</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Wtyczka Sample Rate Converter dla Qmmp</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Autor: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Ustawienia wtyczki Sample Rate Converter</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Próbkowanie (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Rodzaj interpolacji:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>SINC (najlepsza jakość)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>SINC (średnia jakość)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>SINC (najszybsza)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>Interpolacja (ZOH)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Interpolacja liniowa</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_pt.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_pt.ts deleted file mode 100644 index e203e2ced..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_pt.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="pt"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Suplemento SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>Sobre o suplemento Sample Rate Converter</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Suplemento Qmmp Sample Rate Converter</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Desenvolvido por: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Definições</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Frequência (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Mecanismo de interpolação:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Interpolação máxima</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Interpolação média</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Interpolação rápida</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>Interpolação ZOH</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Interpolação linear</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_pt_BR.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_pt_BR.ts deleted file mode 100644 index 7c961df3b..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_pt_BR.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="pt_BR"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_ru.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_ru.ts deleted file mode 100644 index c757e939d..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_ru.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="ru"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Модуль SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>О модуле передискретизации</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Модуль передискретизации для Qmmp</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Разработчик: Илья Котов <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Настройки модуля передескретизации</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Частота дискретизации (Гц):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Алгоритм интерполяции:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_sk.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_sk.ts deleted file mode 100644 index 57e46808a..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_sk.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="sk_SK"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation type="unfinished"></translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_sr_BA.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_sr_BA.ts deleted file mode 100644 index ce054b7bb..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_sr_BA.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="sr_BA"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Претварач узорковања</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>О прикључку за претварање узорковања</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Кумп прикључак за претварање узорковања</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Аутор: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Поставке претварача узорковања</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Узорковање (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Интерполација:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>најбоља sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>умјерена sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>најбржа sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>ЗОХ</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>линеарна</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_sr_RS.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_sr_RS.ts deleted file mode 100644 index 969a4f059..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_sr_RS.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="sr_RS"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Претварач узорковања</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>О прикључку за претварање узорковања</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Кумп прикључак за претварање узорковања</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Аутор: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Поставке претварача узорковања</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Узорковање (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Интерполација:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>најбоља sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>умерена sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>најбржа sinc</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>ЗОХ</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>линеарна</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_tr.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_tr.ts deleted file mode 100644 index ed6c40942..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_tr.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="tr_TR"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>SRC Eklentisi</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>Örnekleme Oranı Dönüştürücü Eklentisi Hakkında</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Qmmp Örnekleme Oranı Dönüştürücü Eklentisi</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Yazan: Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Örnekleme Oranı Dönüştürücü Eklentisi Ayarları</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Örnekleme Oranı (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>İnterpolasyon Motoru:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Best Sinc İnterpolasyonu</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Medium Sinc İnterpolasyonu</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Fastest Sinc İnterpolasyonu</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>ZOH İnterpolasyonu</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Doğrusal İnterpolasyon</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_uk_UA.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_uk_UA.ts deleted file mode 100644 index 183d9570d..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_uk_UA.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="uk"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>Модуль SRC</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>Про модуль Sample Rate Converter</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Модуль Sample Rate Converter для Qmmp</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>Розробник: Ілля Котов <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>Налаштування модуля Sample Rate Converter</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>Дискретизація семпла (Гц):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>Технологія інтерполяції:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>Кращий синк інтерполяції</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>Середній синк інтерполяції</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>Найшвидший синк інтерполяції</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>Інтерполяція ZOH</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>Лінійна інтерполяція</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_zh_CN.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_zh_CN.ts deleted file mode 100644 index 67d5d043a..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_zh_CN.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="zh_CN"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>SRC 插件</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>关于取样率转换插件</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Qmmp 取样率转换插件</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>作者:Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>取样率转换插件设置</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>取样率 (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>内插引擎:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>最好 SINC 插入 (高品质)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>一般 SINC 插入 (中品质)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>最快 SINC 插入 (低品质)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>零阶保持插入 (ZOH)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>线性插入</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/srconverter_plugin_zh_TW.ts b/src/plugins/Effect/srconverter/translations/srconverter_plugin_zh_TW.ts deleted file mode 100644 index 25b2ebf1a..000000000 --- a/src/plugins/Effect/srconverter/translations/srconverter_plugin_zh_TW.ts +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="zh_TW"> -<context> - <name>EffectSRConverterFactory</name> - <message> - <location filename="../effectsrconverterfactory.cpp" line="30"/> - <source>SRC Plugin</source> - <translation>SRC 插件</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="51"/> - <source>About Sample Rate Converter Plugin</source> - <translation>關於取樣率轉換插件</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="52"/> - <source>Qmmp Sample Rate Converter Plugin</source> - <translation>Qmmp 取樣率轉換插件</translation> - </message> - <message> - <location filename="../effectsrconverterfactory.cpp" line="53"/> - <source>Written by: Ilya Kotov <forkotov02@hotmail.ru></source> - <translation>作者:Ilya Kotov <forkotov02@hotmail.ru></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="../settingsdialog.ui" line="13"/> - <source>Sample Rate Converter Plugin Settings</source> - <translation>取樣率轉換插件設定</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="19"/> - <source>Sample Rate (Hz):</source> - <translation>取樣率 (Hz):</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="39"/> - <source>Interpolation Engine:</source> - <translation>內插引擎:</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="47"/> - <source>Best Sinc Interpolation</source> - <translation>最好 SINC 插入 (高品質)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="52"/> - <source>Medium Sinc Interpolation</source> - <translation>一般 SINC 插入 (中品質)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="57"/> - <source>Fastest Sinc Interpolation</source> - <translation>最快 SINC 插入 (低品質)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="62"/> - <source>ZOH Interpolation</source> - <translation>零階保持插入 (ZOH)</translation> - </message> - <message> - <location filename="../settingsdialog.ui" line="67"/> - <source>Linear Interpolation</source> - <translation>線性插入</translation> - </message> -</context> -</TS> diff --git a/src/plugins/Effect/srconverter/translations/translations.qrc b/src/plugins/Effect/srconverter/translations/translations.qrc deleted file mode 100644 index 580fe9f1d..000000000 --- a/src/plugins/Effect/srconverter/translations/translations.qrc +++ /dev/null @@ -1,30 +0,0 @@ -<!DOCTYPE RCC> -<RCC version="1.0"> - <qresource> - <file>srconverter_plugin_ru.qm</file> - <file>srconverter_plugin_uk_UA.qm</file> - <file>srconverter_plugin_zh_CN.qm</file> - <file>srconverter_plugin_zh_TW.qm</file> - <file>srconverter_plugin_tr.qm</file> - <file>srconverter_plugin_cs.qm</file> - <file>srconverter_plugin_pt_BR.qm</file> - <file>srconverter_plugin_pt.qm</file> - <file>srconverter_plugin_de.qm</file> - <file>srconverter_plugin_pl_PL.qm</file> - <file>srconverter_plugin_fr.qm</file> - <file>srconverter_plugin_it.qm</file> - <file>srconverter_plugin_kk.qm</file> - <file>srconverter_plugin_lt.qm</file> - <file>srconverter_plugin_hu.qm</file> - <file>srconverter_plugin_nl.qm</file> - <file>srconverter_plugin_ja.qm</file> - <file>srconverter_plugin_sk.qm</file> - <file>srconverter_plugin_es.qm</file> - <file>srconverter_plugin_he.qm</file> - <file>srconverter_plugin_gl_ES.qm</file> - <file>srconverter_plugin_sr_BA.qm</file> - <file>srconverter_plugin_sr_RS.qm</file> - <file>srconverter_plugin_bg.qm</file> - <file>srconverter_plugin_el.qm</file> - </qresource> -</RCC> |
