From edcf1ca68a32c85e18ac500990bd28e93e4be2e5 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Wed, 14 Oct 2009 17:13:54 +0000 Subject: added cover manager files git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1315 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/CMakeLists.txt | 5 + src/plugins/General/General.pro | 3 +- src/plugins/General/covermanager/CMakeLists.txt | 67 ++++++ src/plugins/General/covermanager/covermanager.cpp | 48 +++++ src/plugins/General/covermanager/covermanager.h | 46 +++++ src/plugins/General/covermanager/covermanager.pro | 43 ++++ .../General/covermanager/covermanagerfactory.cpp | 62 ++++++ .../General/covermanager/covermanagerfactory.h | 45 ++++ src/plugins/General/covermanager/coverwidget.cpp | 1 - src/plugins/General/covermanager/coverwindow.cpp | 34 +++ src/plugins/General/covermanager/coverwindow.h | 39 ++++ src/plugins/General/covermanager/coverwindow.ui | 230 +++++++++++++++++++++ .../translations/covermanager_plugin_cs.ts | 83 ++++++++ .../translations/covermanager_plugin_de.ts | 83 ++++++++ .../translations/covermanager_plugin_it.ts | 83 ++++++++ .../translations/covermanager_plugin_lt.ts | 83 ++++++++ .../translations/covermanager_plugin_pl.ts | 83 ++++++++ .../translations/covermanager_plugin_ru.ts | 83 ++++++++ .../translations/covermanager_plugin_tr.ts | 83 ++++++++ .../translations/covermanager_plugin_uk_UA.ts | 83 ++++++++ .../translations/covermanager_plugin_zh_CN.ts | 83 ++++++++ .../translations/covermanager_plugin_zh_TW.ts | 83 ++++++++ .../covermanager/translations/translations.qrc | 15 ++ 23 files changed, 1466 insertions(+), 2 deletions(-) create mode 100644 src/plugins/General/covermanager/CMakeLists.txt create mode 100644 src/plugins/General/covermanager/covermanager.cpp create mode 100644 src/plugins/General/covermanager/covermanager.h create mode 100644 src/plugins/General/covermanager/covermanager.pro create mode 100644 src/plugins/General/covermanager/covermanagerfactory.cpp create mode 100644 src/plugins/General/covermanager/covermanagerfactory.h create mode 100644 src/plugins/General/covermanager/coverwindow.cpp create mode 100644 src/plugins/General/covermanager/coverwindow.h create mode 100644 src/plugins/General/covermanager/coverwindow.ui create mode 100644 src/plugins/General/covermanager/translations/covermanager_plugin_cs.ts create mode 100644 src/plugins/General/covermanager/translations/covermanager_plugin_de.ts create mode 100644 src/plugins/General/covermanager/translations/covermanager_plugin_it.ts create mode 100644 src/plugins/General/covermanager/translations/covermanager_plugin_lt.ts create mode 100644 src/plugins/General/covermanager/translations/covermanager_plugin_pl.ts create mode 100644 src/plugins/General/covermanager/translations/covermanager_plugin_ru.ts create mode 100644 src/plugins/General/covermanager/translations/covermanager_plugin_tr.ts create mode 100644 src/plugins/General/covermanager/translations/covermanager_plugin_uk_UA.ts create mode 100644 src/plugins/General/covermanager/translations/covermanager_plugin_zh_CN.ts create mode 100644 src/plugins/General/covermanager/translations/covermanager_plugin_zh_TW.ts create mode 100644 src/plugins/General/covermanager/translations/translations.qrc (limited to 'src') diff --git a/src/plugins/General/CMakeLists.txt b/src/plugins/General/CMakeLists.txt index fea4bf984..cdd47cbd3 100644 --- a/src/plugins/General/CMakeLists.txt +++ b/src/plugins/General/CMakeLists.txt @@ -6,6 +6,7 @@ SET(USE_LYRICS TRUE CACHE BOOL "enable/disable lyrics version") SET(USE_HAL TRUE CACHE BOOL "enable/disable hal plugin") SET(USE_HOTKEY TRUE CACHE BOOL "enable/disable global hotkey plugin") SET(USE_FILEOPS TRUE CACHE BOOL "enable/disable fileops plugin") +SET(USE_COVER TRUE CACHE BOOL "enable/disable cover manager plugin") IF(USE_MPRIS) add_subdirectory(mpris) @@ -38,3 +39,7 @@ ENDIF(USE_HOTKEY) IF(USE_FILEOPS) add_subdirectory(fileops) ENDIF(USE_FILEOPS) + +IF(USE_COVER) +add_subdirectory(covermanager) +ENDIF(USE_COVER) diff --git a/src/plugins/General/General.pro b/src/plugins/General/General.pro index b05d12287..7263bff3a 100644 --- a/src/plugins/General/General.pro +++ b/src/plugins/General/General.pro @@ -2,7 +2,8 @@ SUBDIRS += statusicon \ notifier \ lyrics \ scrobbler \ - fileops + fileops \ + covermanager unix:SUBDIRS += mpris \ hal \ hotkey diff --git a/src/plugins/General/covermanager/CMakeLists.txt b/src/plugins/General/covermanager/CMakeLists.txt new file mode 100644 index 000000000..f7196353a --- /dev/null +++ b/src/plugins/General/covermanager/CMakeLists.txt @@ -0,0 +1,67 @@ +project(libcovermanager) + +cmake_minimum_required(VERSION 2.4.7) + + +SET(QT_USE_QTNETWORK TRUE) +INCLUDE(FindQt4) + +include(${QT_USE_FILE}) + +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}) + +# libqmmpui +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../) +link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmpui) +#libqmmp +link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp) + +SET(libcovermanager_SRCS + coverwidget.cpp + covermanager.cpp + coverwindow.cpp + covermanagerfactory.cpp +) + +SET(libcovermanager_MOC_HDRS + coverwidget.h + covermanager.h + coverwindow.h + covermanagerfactory.h +) + +SET(libcovermanager_RCCS translations/translations.qrc) + +QT4_ADD_RESOURCES(libcovermanager_RCC_SRCS ${libcovermanager_RCCS}) + +QT4_WRAP_CPP(libcovermanager_MOC_SRCS ${libcovermanager_MOC_HDRS}) + +# user interface + + +SET(libcovermanager_UIS + coverwindow.ui +) + +QT4_WRAP_UI(libcovermanager_UIS_H ${libcovermanager_UIS}) +# Don't forget to include output directory, otherwise +# the UI file won't be wrapped! +include_directories(${CMAKE_CURRENT_BINARY_DIR}) + +ADD_LIBRARY(covermanager MODULE ${libcovermanager_SRCS} ${libcovermanager_MOC_SRCS} ${libcovermanager_UIS_H} + ${libcovermanager_RCC_SRCS}) +add_dependencies(covermanager qmmpui) +target_link_libraries(covermanager ${QT_LIBRARIES} -lqmmpui -lqmmp) +install(TARGETS covermanager DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/covermanager/covermanager.cpp b/src/plugins/General/covermanager/covermanager.cpp new file mode 100644 index 000000000..5cb285f25 --- /dev/null +++ b/src/plugins/General/covermanager/covermanager.cpp @@ -0,0 +1,48 @@ +/*************************************************************************** + * Copyright (C) 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., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include "coverwindow.h" +#include "covermanager.h" + +CoverManager::CoverManager(QObject *parent) : General(parent) +{ + m_action = new QAction(tr("Show Cover"), this); + m_action->setShortcut(tr("Ctrl+M")); + GeneralHandler::instance()->addAction(m_action, GeneralHandler::PLAYLIST_MENU); + connect (m_action, SIGNAL(triggered ()), SLOT(showWindow())); +} + +void CoverManager::showWindow() +{ + QList items = MediaPlayer::instance()->playListModel()->getSelectedItems(); + if (!items.isEmpty()) + { + if (items.at(0)->url().contains("://")) + return; + CoverWindow *w = new CoverWindow(items.at(0), qApp->activeWindow ()); + w->show(); + } +} diff --git a/src/plugins/General/covermanager/covermanager.h b/src/plugins/General/covermanager/covermanager.h new file mode 100644 index 000000000..58ad35634 --- /dev/null +++ b/src/plugins/General/covermanager/covermanager.h @@ -0,0 +1,46 @@ +/*************************************************************************** + * Copyright (C) 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., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef COVERMANAGER_H +#define COVERMANAGER_H + +#include +#include + +class QAction; + +/** + @author Ilya Kotov +*/ +class CoverManager : public General +{ +Q_OBJECT +public: + CoverManager(QObject *parent = 0); + +private slots: + void showWindow(); + +private: + QAction *m_action; + +}; + +#endif // COVERMANAGER_H diff --git a/src/plugins/General/covermanager/covermanager.pro b/src/plugins/General/covermanager/covermanager.pro new file mode 100644 index 000000000..d084eaada --- /dev/null +++ b/src/plugins/General/covermanager/covermanager.pro @@ -0,0 +1,43 @@ +include(../../plugins.pri) +CONFIG += release \ + warn_on \ + plugin +TEMPLATE = lib +unix:QMAKE_LIBDIR += ../../../../lib +win32:QMAKE_LIBDIR += ../../../../bin +TARGET = $$PLUGINS_PREFIX/General/covermanager +unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libcovermanager.so + +TRANSLATIONS = translations/covermanager_plugin_cs.ts \ +translations/covermanager_plugin_de.ts \ +translations/covermanager_plugin_zh_CN.ts \ +translations/covermanager_plugin_zh_TW.ts \ +translations/covermanager_plugin_ru.ts \ +translations/covermanager_plugin_pl.ts \ +translations/covermanager_plugin_uk_UA.ts \ +translations/covermanager_plugin_it.ts \ +translations/covermanager_plugin_tr.ts \ +translations/covermanager_plugin_lt.ts + +RESOURCES = translations/translations.qrc +unix { + isEmpty(LIB_DIR):LIB_DIR = /lib + target.path = $$LIB_DIR/qmmp/General + INSTALLS += target +} +HEADERS += covermanagerfactory.h \ + coverwidget.h \ + covermanager.h \ + coverwindow.h +win32:HEADERS += ../../../../src/qmmpui/general.h +SOURCES += covermanagerfactory.cpp \ + coverwidget.cpp \ + covermanager.cpp \ + coverwindow.cpp +QT += network +INCLUDEPATH += ../../../ +unix:LIBS += -lqmmpui \ + -lqmmp +win32:LIBS += -lqmmpui0 \ + -lqmmp0 +FORMS += coverwindow.ui diff --git a/src/plugins/General/covermanager/covermanagerfactory.cpp b/src/plugins/General/covermanager/covermanagerfactory.cpp new file mode 100644 index 000000000..f31b96121 --- /dev/null +++ b/src/plugins/General/covermanager/covermanagerfactory.cpp @@ -0,0 +1,62 @@ +/*************************************************************************** + * Copyright (C) 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., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include "covermanager.h" +#include "covermanagerfactory.h" + +const GeneralProperties CoverManagerFactory::properties() const +{ + GeneralProperties properties; + properties.name = tr("Cover Manager Plugin"); + properties.shortName = "cover_manager"; + properties.hasAbout = TRUE; + properties.hasSettings = FALSE; + properties.visibilityControl = FALSE; + return properties; +} + +General *CoverManagerFactory::create(QObject *parent) +{ + return new CoverManager(parent); +} + +QDialog *CoverManagerFactory::createConfigDialog(QWidget *) +{ + return 0; +} + +void CoverManagerFactory::showAbout(QWidget *parent) +{ + QMessageBox::about (parent, tr("About Cover Manager Plugin"), + tr("Qmmp Cover Manager Plugin")+"\n"+ + tr("Writen by: Ilya Kotov ")); +} + +QTranslator *CoverManagerFactory::createTranslator(QObject *parent) +{ + QTranslator *translator = new QTranslator(parent); + QString locale = Qmmp::systemLanguageID(); + translator->load(QString(":/covermanager_plugin_") + locale); + return translator; +} + +Q_EXPORT_PLUGIN2(covermanager, CoverManagerFactory) diff --git a/src/plugins/General/covermanager/covermanagerfactory.h b/src/plugins/General/covermanager/covermanagerfactory.h new file mode 100644 index 000000000..5c825a574 --- /dev/null +++ b/src/plugins/General/covermanager/covermanagerfactory.h @@ -0,0 +1,45 @@ +/*************************************************************************** + * Copyright (C) 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., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef COVERMANAGERFACTORY_H +#define COVERMANAGERFACTORY_H + +/** + @author Ilya Kotov +*/ +#include +#include + +#include +#include + +class CoverManagerFactory : public QObject, public GeneralFactory +{ +Q_OBJECT +Q_INTERFACES(GeneralFactory); +public: + const GeneralProperties properties() const; + General *create(QObject *parent); + QDialog *createConfigDialog(QWidget *parent); + void showAbout(QWidget *parent); + QTranslator *createTranslator(QObject *parent); + +}; + +#endif diff --git a/src/plugins/General/covermanager/coverwidget.cpp b/src/plugins/General/covermanager/coverwidget.cpp index 6ce4eebc1..28e4e8b91 100644 --- a/src/plugins/General/covermanager/coverwidget.cpp +++ b/src/plugins/General/covermanager/coverwidget.cpp @@ -42,4 +42,3 @@ void CoverWidget::paintEvent (QPaintEvent *p) if(!m_pixmap.isNull()) paint.drawPixmap(0,0, m_pixmap.scaled(p->rect().size())); } - diff --git a/src/plugins/General/covermanager/coverwindow.cpp b/src/plugins/General/covermanager/coverwindow.cpp new file mode 100644 index 000000000..5bec3c497 --- /dev/null +++ b/src/plugins/General/covermanager/coverwindow.cpp @@ -0,0 +1,34 @@ +/*************************************************************************** + * Copyright (C) 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., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include "coverwindow.h" + +CoverWindow::CoverWindow(PlayListItem *item, QWidget *parent) : QDialog(parent) +{ + ui.setupUi(this); + setWindowFlags(Qt::Dialog); + setAttribute(Qt::WA_DeleteOnClose); + setAttribute(Qt::WA_QuitOnClose, FALSE); + ui.coverWidget->setPixmap(MetaDataManager::instance()->getCover(item->url())); + ui.albumEdit->setText(item->album()); + ui.artistEdit->setText(item->artist()); +} diff --git a/src/plugins/General/covermanager/coverwindow.h b/src/plugins/General/covermanager/coverwindow.h new file mode 100644 index 000000000..98bef1806 --- /dev/null +++ b/src/plugins/General/covermanager/coverwindow.h @@ -0,0 +1,39 @@ +/*************************************************************************** + * Copyright (C) 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., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef COVERWINDOW_H +#define COVERWINDOW_H + +#include +#include "ui_coverwindow.h" + +class PlayListItem; + +class CoverWindow : public QDialog +{ +Q_OBJECT +public: + CoverWindow(PlayListItem *item, QWidget *parent); + +private: + Ui::CoverWindow ui; +}; + +#endif // COVERWINDOW_H diff --git a/src/plugins/General/covermanager/coverwindow.ui b/src/plugins/General/covermanager/coverwindow.ui new file mode 100644 index 000000000..90987e647 --- /dev/null +++ b/src/plugins/General/covermanager/coverwindow.ui @@ -0,0 +1,230 @@ + + + CoverWindow + + + + 0 + 0 + 356 + 389 + + + + + 0 + 0 + + + + Cover Manager + + + false + + + false + + + + QLayout::SetFixedSize + + + 6 + + + 6 + + + 6 + + + + + + + Album: + + + + + + + + + + Artist: + + + + + + + + + + + + + + + 0 + 0 + + + + Preview + + + + + + + 1 + 1 + + + + + 250 + 250 + + + + + 250 + 250 + + + + + 220 + 220 + + + + + + + + + + + false + + + Open + + + + + + + false + + + Download + + + + + + + false + + + Remove + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + false + + + Save as... + + + + + + + + + Qt::Horizontal + + + + 128 + 20 + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Close|QDialogButtonBox::Save + + + + + + + + CoverWidget + QWidget +
coverwidget.h
+ 1 +
+
+ + + + buttonBox + rejected() + CoverWindow + reject() + + + 349 + 382 + + + 286 + 274 + + + + +
diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_cs.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_cs.ts new file mode 100644 index 000000000..180f2bffd --- /dev/null +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_cs.ts @@ -0,0 +1,83 @@ + + + + + CoverManager + + + Show Cover + + + + + Ctrl+M + + + + + CoverManagerFactory + + + Cover Manager Plugin + + + + + About Cover Manager Plugin + + + + + Qmmp Cover Manager Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + + + + + CoverWindow + + + Cover Manager + + + + + Album: + + + + + Artist: + + + + + Preview + + + + + Open + + + + + Download + + + + + Remove + + + + + Save as... + + + + diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_de.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_de.ts new file mode 100644 index 000000000..180f2bffd --- /dev/null +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_de.ts @@ -0,0 +1,83 @@ + + + + + CoverManager + + + Show Cover + + + + + Ctrl+M + + + + + CoverManagerFactory + + + Cover Manager Plugin + + + + + About Cover Manager Plugin + + + + + Qmmp Cover Manager Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + + + + + CoverWindow + + + Cover Manager + + + + + Album: + + + + + Artist: + + + + + Preview + + + + + Open + + + + + Download + + + + + Remove + + + + + Save as... + + + + diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_it.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_it.ts new file mode 100644 index 000000000..180f2bffd --- /dev/null +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_it.ts @@ -0,0 +1,83 @@ + + + + + CoverManager + + + Show Cover + + + + + Ctrl+M + + + + + CoverManagerFactory + + + Cover Manager Plugin + + + + + About Cover Manager Plugin + + + + + Qmmp Cover Manager Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + + + + + CoverWindow + + + Cover Manager + + + + + Album: + + + + + Artist: + + + + + Preview + + + + + Open + + + + + Download + + + + + Remove + + + + + Save as... + + + + diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_lt.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_lt.ts new file mode 100644 index 000000000..180f2bffd --- /dev/null +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_lt.ts @@ -0,0 +1,83 @@ + + + + + CoverManager + + + Show Cover + + + + + Ctrl+M + + + + + CoverManagerFactory + + + Cover Manager Plugin + + + + + About Cover Manager Plugin + + + + + Qmmp Cover Manager Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + + + + + CoverWindow + + + Cover Manager + + + + + Album: + + + + + Artist: + + + + + Preview + + + + + Open + + + + + Download + + + + + Remove + + + + + Save as... + + + + diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_pl.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_pl.ts new file mode 100644 index 000000000..180f2bffd --- /dev/null +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_pl.ts @@ -0,0 +1,83 @@ + + + + + CoverManager + + + Show Cover + + + + + Ctrl+M + + + + + CoverManagerFactory + + + Cover Manager Plugin + + + + + About Cover Manager Plugin + + + + + Qmmp Cover Manager Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + + + + + CoverWindow + + + Cover Manager + + + + + Album: + + + + + Artist: + + + + + Preview + + + + + Open + + + + + Download + + + + + Remove + + + + + Save as... + + + + diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_ru.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_ru.ts new file mode 100644 index 000000000..e69dbec85 --- /dev/null +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_ru.ts @@ -0,0 +1,83 @@ + + + + + CoverManager + + + Show Cover + Показать обложку + + + + Ctrl+M + + + + + CoverManagerFactory + + + Cover Manager Plugin + Модуль упр. обложками + + + + About Cover Manager Plugin + О модуле управления обложками + + + + Qmmp Cover Manager Plugin + Модуль управления обложками для Qmmp + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + Разработчик: Илья Котов <forkotov02@hotmail.ru> + + + + CoverWindow + + + Cover Manager + Управление обложками + + + + Album: + Альбом: + + + + Artist: + Исполнитель: + + + + Preview + Просмотр + + + + Open + Открыть + + + + Download + Загрузить + + + + Remove + Удалить + + + + Save as... + Сохранить как... + + + diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_tr.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_tr.ts new file mode 100644 index 000000000..180f2bffd --- /dev/null +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_tr.ts @@ -0,0 +1,83 @@ + + + + + CoverManager + + + Show Cover + + + + + Ctrl+M + + + + + CoverManagerFactory + + + Cover Manager Plugin + + + + + About Cover Manager Plugin + + + + + Qmmp Cover Manager Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + + + + + CoverWindow + + + Cover Manager + + + + + Album: + + + + + Artist: + + + + + Preview + + + + + Open + + + + + Download + + + + + Remove + + + + + Save as... + + + + diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_uk_UA.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_uk_UA.ts new file mode 100644 index 000000000..180f2bffd --- /dev/null +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_uk_UA.ts @@ -0,0 +1,83 @@ + + + + + CoverManager + + + Show Cover + + + + + Ctrl+M + + + + + CoverManagerFactory + + + Cover Manager Plugin + + + + + About Cover Manager Plugin + + + + + Qmmp Cover Manager Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + + + + + CoverWindow + + + Cover Manager + + + + + Album: + + + + + Artist: + + + + + Preview + + + + + Open + + + + + Download + + + + + Remove + + + + + Save as... + + + + diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_zh_CN.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_zh_CN.ts new file mode 100644 index 000000000..180f2bffd --- /dev/null +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_zh_CN.ts @@ -0,0 +1,83 @@ + + + + + CoverManager + + + Show Cover + + + + + Ctrl+M + + + + + CoverManagerFactory + + + Cover Manager Plugin + + + + + About Cover Manager Plugin + + + + + Qmmp Cover Manager Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + + + + + CoverWindow + + + Cover Manager + + + + + Album: + + + + + Artist: + + + + + Preview + + + + + Open + + + + + Download + + + + + Remove + + + + + Save as... + + + + diff --git a/src/plugins/General/covermanager/translations/covermanager_plugin_zh_TW.ts b/src/plugins/General/covermanager/translations/covermanager_plugin_zh_TW.ts new file mode 100644 index 000000000..180f2bffd --- /dev/null +++ b/src/plugins/General/covermanager/translations/covermanager_plugin_zh_TW.ts @@ -0,0 +1,83 @@ + + + + + CoverManager + + + Show Cover + + + + + Ctrl+M + + + + + CoverManagerFactory + + + Cover Manager Plugin + + + + + About Cover Manager Plugin + + + + + Qmmp Cover Manager Plugin + + + + + Writen by: Ilya Kotov <forkotov02@hotmail.ru> + + + + + CoverWindow + + + Cover Manager + + + + + Album: + + + + + Artist: + + + + + Preview + + + + + Open + + + + + Download + + + + + Remove + + + + + Save as... + + + + diff --git a/src/plugins/General/covermanager/translations/translations.qrc b/src/plugins/General/covermanager/translations/translations.qrc new file mode 100644 index 000000000..a2776dd2d --- /dev/null +++ b/src/plugins/General/covermanager/translations/translations.qrc @@ -0,0 +1,15 @@ + + + + covermanager_plugin_it.qm + covermanager_plugin_ru.qm + covermanager_plugin_uk_UA.qm + covermanager_plugin_zh_CN.qm + covermanager_plugin_zh_TW.qm + covermanager_plugin_cs.qm + covermanager_plugin_pl.qm + covermanager_plugin_de.qm + covermanager_plugin_tr.qm + covermanager_plugin_lt.qm + + -- cgit v1.2.3-13-gbd6f