From 23795041aab71320e97522f9d672b1f22d613a92 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sun, 13 Jan 2013 15:43:46 +0000 Subject: renamed song change plugin git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3156 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/songchange/settingsdialog.cpp | 99 --------------- src/plugins/General/songchange/settingsdialog.h | 56 --------- src/plugins/General/songchange/settingsdialog.ui | 138 --------------------- src/plugins/General/songchange/songchange.cpp | 118 ------------------ src/plugins/General/songchange/songchange.h | 59 --------- src/plugins/General/songchange/songchange.pro | 36 ------ .../General/songchange/songchangefactory.cpp | 63 ---------- src/plugins/General/songchange/songchangefactory.h | 44 ------- .../translations/songchange_plugin_cs.ts | 133 -------------------- .../translations/songchange_plugin_de.ts | 133 -------------------- .../translations/songchange_plugin_es.ts | 133 -------------------- .../translations/songchange_plugin_fr.ts | 133 -------------------- .../translations/songchange_plugin_he.ts | 133 -------------------- .../translations/songchange_plugin_hu.ts | 133 -------------------- .../translations/songchange_plugin_it.ts | 133 -------------------- .../translations/songchange_plugin_ja.ts | 133 -------------------- .../translations/songchange_plugin_kk.ts | 133 -------------------- .../translations/songchange_plugin_lt.ts | 133 -------------------- .../translations/songchange_plugin_nl.ts | 133 -------------------- .../translations/songchange_plugin_pl_PL.ts | 133 -------------------- .../translations/songchange_plugin_pt_BR.ts | 133 -------------------- .../translations/songchange_plugin_ru.ts | 133 -------------------- .../translations/songchange_plugin_sk.ts | 133 -------------------- .../translations/songchange_plugin_tr.ts | 133 -------------------- .../translations/songchange_plugin_uk_UA.ts | 133 -------------------- .../translations/songchange_plugin_zh_CN.ts | 133 -------------------- .../translations/songchange_plugin_zh_TW.ts | 133 -------------------- .../songchange/translations/translations.qrc | 24 ---- 28 files changed, 3164 deletions(-) delete mode 100644 src/plugins/General/songchange/settingsdialog.cpp delete mode 100644 src/plugins/General/songchange/settingsdialog.h delete mode 100644 src/plugins/General/songchange/settingsdialog.ui delete mode 100644 src/plugins/General/songchange/songchange.cpp delete mode 100644 src/plugins/General/songchange/songchange.h delete mode 100644 src/plugins/General/songchange/songchange.pro delete mode 100644 src/plugins/General/songchange/songchangefactory.cpp delete mode 100644 src/plugins/General/songchange/songchangefactory.h delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_cs.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_de.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_es.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_fr.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_he.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_hu.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_it.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_ja.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_kk.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_lt.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_nl.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_pl_PL.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_pt_BR.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_ru.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_sk.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_tr.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_uk_UA.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_zh_CN.ts delete mode 100644 src/plugins/General/songchange/translations/songchange_plugin_zh_TW.ts delete mode 100644 src/plugins/General/songchange/translations/translations.qrc (limited to 'src/plugins/General/songchange') diff --git a/src/plugins/General/songchange/settingsdialog.cpp b/src/plugins/General/songchange/settingsdialog.cpp deleted file mode 100644 index d6d84f990..000000000 --- a/src/plugins/General/songchange/settingsdialog.cpp +++ /dev/null @@ -1,99 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2013 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 -#include -#include -#include "songchange.h" -#include "settingsdialog.h" - -SettingsDialog::SettingsDialog(QWidget *parent) : QDialog(parent) -{ - m_ui.setupUi(this); - addMenu(m_ui.newTrackButton); - addMenu(m_ui.endOfTrackButton); - addMenu(m_ui.endOfPlayListButton); - addMenu(m_ui.titleChangeButton); - - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - m_ui.newTrackLineEdit->setText(settings.value("SongChange/new_track_command").toString()); - m_ui.endOfTrackLineEdit->setText(settings.value("SongChange/end_of_track_command").toString()); - m_ui.endOfPlayListLineEdit->setText(settings.value("SongChange/end_of_pl_command").toString()); - m_ui.titleChangeLineEdit->setText(settings.value("SongChange/title_change_command").toString()); -} - -SettingsDialog::~SettingsDialog() -{} - -void SettingsDialog::accept() -{ - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - settings.setValue("SongChange/new_track_command", m_ui.newTrackLineEdit->text()); - settings.setValue("SongChange/end_of_track_command", m_ui.endOfTrackLineEdit->text()); - settings.setValue("SongChange/end_of_pl_command", m_ui.endOfPlayListLineEdit->text()); - settings.setValue("SongChange/title_change_command", m_ui.titleChangeLineEdit->text()); - QDialog::accept(); -} - -void SettingsDialog::addMenu(QToolButton *button) -{ - QMenu *menu = new QMenu(this); - menu->addAction(tr("Artist"))->setData("%p"); - menu->addAction(tr("Album"))->setData("%a"); - menu->addAction(tr("Title"))->setData("%t"); - menu->addAction(tr("Track number"))->setData("%n"); - menu->addAction(tr("Two-digit track number"))->setData("%NN"); - menu->addAction(tr("Genre"))->setData("%g"); - menu->addAction(tr("Comment"))->setData("%c"); - menu->addAction(tr("Composer"))->setData("%C"); - menu->addAction(tr("Duration"))->setData("%l"); - menu->addAction(tr("Disc number"))->setData("%D"); - menu->addAction(tr("File name"))->setData("%f"); - menu->addAction(tr("File path"))->setData("%F"); - menu->addAction(tr("Year"))->setData("%y"); - menu->addAction(tr("Condition"))->setData("%if(%p&%t,%p - %t,%f)"); - button->setMenu(menu); - button->setPopupMode(QToolButton::InstantPopup); - connect(menu, SIGNAL(triggered (QAction *)), SLOT(addTemplateString(QAction *))); -} - -void SettingsDialog::addTemplateString(QAction *a) -{ - QMenu *menu = qobject_cast (sender()); - if(!menu) - return; - - if(m_ui.newTrackButton->menu() == menu) - { - m_ui.newTrackLineEdit->insert(a->data().toString()); - } - else if(m_ui.endOfTrackButton->menu() == menu) - { - m_ui.endOfTrackLineEdit->insert(a->data().toString()); - } - else if(m_ui.endOfPlayListButton->menu() == menu) - { - m_ui.endOfPlayListLineEdit->insert(a->data().toString()); - } - else if(m_ui.titleChangeButton->menu() == menu) - { - m_ui.titleChangeLineEdit->insert(a->data().toString()); - } -} diff --git a/src/plugins/General/songchange/settingsdialog.h b/src/plugins/General/songchange/settingsdialog.h deleted file mode 100644 index e7e55ef0c..000000000 --- a/src/plugins/General/songchange/settingsdialog.h +++ /dev/null @@ -1,56 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2013 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 -#include "ui_settingsdialog.h" - -class QAction; -class QToolButton; - -/** - @author Ilya Kotov -*/ -class SettingsDialog : public QDialog -{ - Q_OBJECT -public: - SettingsDialog(QWidget *parent = 0); - - ~SettingsDialog(); - -public slots: - void accept(); - -private slots: - void addTemplateString(QAction *); - -private: - void addMenu(QToolButton *button); - - Ui::SettingsDialog m_ui; - -}; - - - - -#endif diff --git a/src/plugins/General/songchange/settingsdialog.ui b/src/plugins/General/songchange/settingsdialog.ui deleted file mode 100644 index 0fd6a84e2..000000000 --- a/src/plugins/General/songchange/settingsdialog.ui +++ /dev/null @@ -1,138 +0,0 @@ - - - SettingsDialog - - - - 0 - 0 - 441 - 249 - - - - File Operations Settings - - - - 6 - - - 6 - - - 6 - - - - - - - - ... - - - - - - - - - - ... - - - - - - - - - - ... - - - - - - - - - - ... - - - - - - - QDialogButtonBox::Cancel|QDialogButtonBox::Ok - - - - - - - Command to run when Qmmp starts new track - - - - - - - Command to run toward to end of a track - - - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - - - Command to run when title changes (i.e. network streams title) - - - - - - - - - buttonBox - accepted() - SettingsDialog - accept() - - - 431 - 376 - - - 155 - 378 - - - - - buttonBox - rejected() - SettingsDialog - reject() - - - 433 - 381 - - - 28 - 375 - - - - - diff --git a/src/plugins/General/songchange/songchange.cpp b/src/plugins/General/songchange/songchange.cpp deleted file mode 100644 index 0e79766de..000000000 --- a/src/plugins/General/songchange/songchange.cpp +++ /dev/null @@ -1,118 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2013 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 -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "songchange.h" - -SongChange::SongChange(QObject *parent) : QObject(parent) -{ - m_core = SoundCore::instance(); - m_plManager = PlayListManager::instance(); - connect(m_core, SIGNAL(stateChanged(Qmmp::State)), SLOT(onStateChanged(Qmmp::State))); - connect(m_core, SIGNAL(metaDataChanged()), SLOT(onMetaDataChanged())); - connect(m_core, SIGNAL(finished()), SLOT(onFinised())); - QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - m_newTrackCommand = settings.value("SongChange/new_track_command").toString(); - m_endOfTrackCommand = settings.value("SongChange/end_of_track_command").toString(); - m_endOfPlCommand = settings.value("SongChange/end_of_pl_command").toString(); - m_titleChangeCommand = settings.value("SongChange/title_change_command").toString(); -} - -SongChange::~SongChange() -{} - -void SongChange::onStateChanged(Qmmp::State state) -{ - switch (state) - { - case Qmmp::Playing: - break; - default: - m_prevMetaData.clear(); - } -} - -void SongChange::onMetaDataChanged() -{ - QMap metaData = m_core->metaData(); - if(m_prevMetaData != metaData) - { - if(m_prevMetaData[Qmmp::URL] == metaData[Qmmp::URL]) - { - if(!m_titleChangeCommand.isEmpty()) - { - qDebug("SongChange: startig title change command.."); - executeCommand(metaData, m_titleChangeCommand); - } - } - else - { - if(!m_newTrackCommand.isEmpty()) - { - qDebug("SongChange: startig new track command.."); - executeCommand(metaData, m_newTrackCommand); - } - } - } - m_prevMetaData = metaData; -} - -void SongChange::onFinised() -{ - if(!m_endOfTrackCommand.isEmpty()) - { - qDebug("SongChange: startig end of track command.."); - executeCommand(m_prevMetaData, m_endOfTrackCommand); - } - if(!m_endOfPlCommand.isEmpty() && !m_plManager->currentPlayList()->nextItem()) - { - qDebug("SongChange: startig end of playlist command.."); - executeCommand(m_prevMetaData, m_endOfPlCommand); - } -} - -bool SongChange::executeCommand(const QMap &metaData, const QString &format) -{ - MetaDataFormatter formatter(format); - QString command = formatter.parse(metaData); -#ifdef Q_OS_WIN - bool ok = QProcess::startDetached(QString("cmd.exe \"%1\"").arg(command)); -#else - bool ok = QProcess::startDetached(QString("sh -c \"%1\"").arg(command)); -#endif - if(!ok) - qWarning("SongChange: unable to start command '%s'", qPrintable(command)); - return ok; -} diff --git a/src/plugins/General/songchange/songchange.h b/src/plugins/General/songchange/songchange.h deleted file mode 100644 index ae026b3eb..000000000 --- a/src/plugins/General/songchange/songchange.h +++ /dev/null @@ -1,59 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2013 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 SONGCHANGE_H -#define SONGCHANGE_H - -#include -#include -#include - -class QAction; -class SoundCore; -class PlayListItem; -class PlayListManager; - -/** - @author Ilya Kotov -*/ -class SongChange : public QObject -{ - Q_OBJECT -public: - SongChange(QObject *parent = 0); - - ~SongChange(); - -private slots: - void onStateChanged(Qmmp::State state); - void onMetaDataChanged(); - void onFinised(); - -private: - bool executeCommand(const QMap &metaData, const QString &format); - QString m_newTrackCommand; - QString m_endOfTrackCommand; - QString m_endOfPlCommand; - QString m_titleChangeCommand; - SoundCore *m_core; - PlayListManager *m_plManager; - QMap m_prevMetaData; -}; - -#endif diff --git a/src/plugins/General/songchange/songchange.pro b/src/plugins/General/songchange/songchange.pro deleted file mode 100644 index 7bf1c046b..000000000 --- a/src/plugins/General/songchange/songchange.pro +++ /dev/null @@ -1,36 +0,0 @@ -include(../../plugins.pri) - -INCLUDEPATH += ../../../../src -CONFIG += release \ -warn_on \ -plugin - -TARGET =$$PLUGINS_PREFIX/General/songchange -unix : QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libsongchange.so - - -TEMPLATE = lib -unix : QMAKE_LIBDIR += ../../../../lib -unix : LIBS += -lqmmpui -lqmmp - -win32 : QMAKE_LIBDIR += ../../../../bin -win32 : LIBS += -lqmmpui0 -lqmmp0 - -RESOURCES = translations/translations.qrc -unix { - isEmpty(LIB_DIR){ - LIB_DIR = /lib - } - target.path = $$LIB_DIR/qmmp/General - INSTALLS += target -} -HEADERS += songchangefactory.h \ - songchange.h \ - settingsdialog.h - -win32 : HEADERS += ../../../../src/qmmpui/general.h -SOURCES += songchangefactory.cpp \ - songchange.cpp \ - settingsdialog.cpp - -FORMS += settingsdialog.ui diff --git a/src/plugins/General/songchange/songchangefactory.cpp b/src/plugins/General/songchange/songchangefactory.cpp deleted file mode 100644 index e85e665d2..000000000 --- a/src/plugins/General/songchange/songchangefactory.cpp +++ /dev/null @@ -1,63 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2013 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 - -#include "songchange.h" -#include "settingsdialog.h" -#include "songchangefactory.h" - -const GeneralProperties SongChangeFactory::properties() const -{ - GeneralProperties properties; - properties.name = tr("Song Change Plugin"); - properties.shortName = "songchange"; - properties.hasAbout = true; - properties.hasSettings = true; - properties.visibilityControl = false; - return properties; -} - -QObject *SongChangeFactory::create(QObject *parent) -{ - return new SongChange(parent); -} - -QDialog *SongChangeFactory::createConfigDialog(QWidget *parent) -{ - return new SettingsDialog(parent); -} - -void SongChangeFactory::showAbout(QWidget *parent) -{ - QMessageBox::about (parent, tr("About Song Change Plugin"), - tr("Qmmp Song Change Plugin")+"\n"+ - tr("Written by: Ilya Kotov ")); -} - -QTranslator *SongChangeFactory::createTranslator(QObject *parent) -{ - QTranslator *translator = new QTranslator(parent); - QString locale = Qmmp::systemLanguageID(); - translator->load(QString(":/songchange_plugin_") + locale); - return translator; -} - -Q_EXPORT_PLUGIN2(songchange, SongChangeFactory) diff --git a/src/plugins/General/songchange/songchangefactory.h b/src/plugins/General/songchange/songchangefactory.h deleted file mode 100644 index 7e00519ac..000000000 --- a/src/plugins/General/songchange/songchangefactory.h +++ /dev/null @@ -1,44 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2013 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 SONGCHANGEFACTORY_H -#define SONGCHANGEFACTORY_H - -/** - @author Ilya Kotov -*/ -#include -#include -#include -#include -#include - -class SongChangeFactory : public QObject, public GeneralFactory -{ -Q_OBJECT -Q_INTERFACES(GeneralFactory) -public: - const GeneralProperties properties() const; - QObject *create(QObject *parent); - QDialog *createConfigDialog(QWidget *parent); - void showAbout(QWidget *parent); - QTranslator *createTranslator(QObject *parent); -}; - -#endif diff --git a/src/plugins/General/songchange/translations/songchange_plugin_cs.ts b/src/plugins/General/songchange/translations/songchange_plugin_cs.ts deleted file mode 100644 index cfea184e4..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_cs.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_de.ts b/src/plugins/General/songchange/translations/songchange_plugin_de.ts deleted file mode 100644 index 0af286050..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_de.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_es.ts b/src/plugins/General/songchange/translations/songchange_plugin_es.ts deleted file mode 100644 index 731def568..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_es.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_fr.ts b/src/plugins/General/songchange/translations/songchange_plugin_fr.ts deleted file mode 100644 index 4958161d4..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_fr.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_he.ts b/src/plugins/General/songchange/translations/songchange_plugin_he.ts deleted file mode 100644 index b5c768c0c..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_he.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_hu.ts b/src/plugins/General/songchange/translations/songchange_plugin_hu.ts deleted file mode 100644 index 890b3c6e3..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_hu.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_it.ts b/src/plugins/General/songchange/translations/songchange_plugin_it.ts deleted file mode 100644 index 65bc2540e..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_it.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_ja.ts b/src/plugins/General/songchange/translations/songchange_plugin_ja.ts deleted file mode 100644 index 96510a0ee..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_ja.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_kk.ts b/src/plugins/General/songchange/translations/songchange_plugin_kk.ts deleted file mode 100644 index 35a4c4493..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_kk.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_lt.ts b/src/plugins/General/songchange/translations/songchange_plugin_lt.ts deleted file mode 100644 index e9d285a62..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_lt.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_nl.ts b/src/plugins/General/songchange/translations/songchange_plugin_nl.ts deleted file mode 100644 index cbe6da2ca..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_nl.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_pl_PL.ts b/src/plugins/General/songchange/translations/songchange_plugin_pl_PL.ts deleted file mode 100644 index 99b36c5d0..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_pl_PL.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_pt_BR.ts b/src/plugins/General/songchange/translations/songchange_plugin_pt_BR.ts deleted file mode 100644 index a2d53283d..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_pt_BR.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_ru.ts b/src/plugins/General/songchange/translations/songchange_plugin_ru.ts deleted file mode 100644 index 54b8d6001..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_ru.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_sk.ts b/src/plugins/General/songchange/translations/songchange_plugin_sk.ts deleted file mode 100644 index 8f3f48c88..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_sk.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_tr.ts b/src/plugins/General/songchange/translations/songchange_plugin_tr.ts deleted file mode 100644 index efccc402a..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_tr.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_uk_UA.ts b/src/plugins/General/songchange/translations/songchange_plugin_uk_UA.ts deleted file mode 100644 index 34728e398..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_uk_UA.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_zh_CN.ts b/src/plugins/General/songchange/translations/songchange_plugin_zh_CN.ts deleted file mode 100644 index 7d1465121..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_zh_CN.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/songchange_plugin_zh_TW.ts b/src/plugins/General/songchange/translations/songchange_plugin_zh_TW.ts deleted file mode 100644 index 602085554..000000000 --- a/src/plugins/General/songchange/translations/songchange_plugin_zh_TW.ts +++ /dev/null @@ -1,133 +0,0 @@ - - - - - SettingsDialog - - - File Operations Settings - - - - - - - - ... - - - - - Command to run when Qmmp starts new track - - - - - Command to run toward to end of a track - - - - - Command to run when Qmmp reaches the end of the playlist - - - - - Command to run when title changes (i.e. network streams title) - - - - - Artist - - - - - Album - - - - - Title - - - - - Track number - - - - - Two-digit track number - - - - - Genre - - - - - Comment - - - - - Composer - - - - - Duration - - - - - Disc number - - - - - File name - - - - - File path - - - - - Year - - - - - Condition - - - - - SongChangeFactory - - - Song Change Plugin - - - - - About Song Change Plugin - - - - - Qmmp Song Change Plugin - - - - - Written by: Ilya Kotov <forkotov02@hotmail.ru> - - - - diff --git a/src/plugins/General/songchange/translations/translations.qrc b/src/plugins/General/songchange/translations/translations.qrc deleted file mode 100644 index 8c8eb21ac..000000000 --- a/src/plugins/General/songchange/translations/translations.qrc +++ /dev/null @@ -1,24 +0,0 @@ - - - - songchange_plugin_ru.qm - songchange_plugin_uk_UA.qm - songchange_plugin_zh_CN.qm - songchange_plugin_zh_TW.qm - songchange_plugin_tr.qm - songchange_plugin_cs.qm - songchange_plugin_pt_BR.qm - songchange_plugin_de.qm - songchange_plugin_pl_PL.qm - songchange_plugin_fr.qm - songchange_plugin_it.qm - songchange_plugin_kk.qm - songchange_plugin_lt.qm - songchange_plugin_hu.qm - songchange_plugin_nl.qm - songchange_plugin_ja.qm - songchange_plugin_sk.qm - songchange_plugin_es.qm - songchange_plugin_he.qm - - -- cgit v1.2.3-13-gbd6f