diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-10-14 17:13:54 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-10-14 17:13:54 +0000 |
| commit | edcf1ca68a32c85e18ac500990bd28e93e4be2e5 (patch) | |
| tree | 85b44651b7ba22d5829519c0ef712de8f7622f3b /src/plugins | |
| parent | 43afdc9a57c17e39b07346b093d82c7f8ce281b2 (diff) | |
| download | qmmp-edcf1ca68a32c85e18ac500990bd28e93e4be2e5.tar.gz qmmp-edcf1ca68a32c85e18ac500990bd28e93e4be2e5.tar.bz2 qmmp-edcf1ca68a32c85e18ac500990bd28e93e4be2e5.zip | |
added cover manager files
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1315 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins')
23 files changed, 1466 insertions, 2 deletions
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 <QAction> +#include <qmmpui/generalhandler.h> +#include <qmmpui/playlistmodel.h> +#include <qmmpui/playlistitem.h> +#include <qmmpui/mediaplayer.h> +#include <qmmpui/generalhandler.h> +#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 <PlayListItem *> 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 <qmmpui/general.h> +#include <qmmp/qmmp.h> + +class QAction; + +/** + @author Ilya Kotov <forkotov02@hotmail.ru> +*/ +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 <QtGui> +#include <qmmp/qmmp.h> +#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 <forkotov02@hotmail.ru>")); +} + +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 <forkotov02@hotmail.ru> +*/ +#include <QObject> +#include <QTranslator> + +#include <qmmpui/general.h> +#include <qmmpui/generalfactory.h> + +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 <qmmp/metadatamanager.h> +#include <qmmpui/playlistitem.h> +#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 <QDialog> +#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 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>CoverWindow</class> + <widget class="QDialog" name="CoverWindow"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>356</width> + <height>389</height> + </rect> + </property> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="windowTitle"> + <string>Cover Manager</string> + </property> + <property name="sizeGripEnabled"> + <bool>false</bool> + </property> + <property name="modal"> + <bool>false</bool> + </property> + <layout class="QGridLayout" name="gridLayout_3"> + <property name="sizeConstraint"> + <enum>QLayout::SetFixedSize</enum> + </property> + <property name="leftMargin"> + <number>6</number> + </property> + <property name="rightMargin"> + <number>6</number> + </property> + <property name="bottomMargin"> + <number>6</number> + </property> + <item row="0" column="0" colspan="2"> + <layout class="QGridLayout" name="gridLayout_2"> + <item row="0" column="0"> + <widget class="QLabel" name="label"> + <property name="text"> + <string>Album:</string> + </property> + </widget> + </item> + <item row="0" column="1"> + <widget class="QLineEdit" name="albumEdit"/> + </item> + <item row="1" column="0"> + <widget class="QLabel" name="label_2"> + <property name="text"> + <string>Artist:</string> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QLineEdit" name="artistEdit"/> + </item> + </layout> + </item> + <item row="1" column="0" colspan="2"> + <layout class="QGridLayout" name="gridLayout"> + <item row="0" column="0" rowspan="7"> + <widget class="QGroupBox" name="groupBox"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Fixed" vsizetype="Preferred"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="title"> + <string>Preview</string> + </property> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="CoverWidget" name="coverWidget" native="true"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> + <horstretch>1</horstretch> + <verstretch>1</verstretch> + </sizepolicy> + </property> + <property name="minimumSize"> + <size> + <width>250</width> + <height>250</height> + </size> + </property> + <property name="maximumSize"> + <size> + <width>250</width> + <height>250</height> + </size> + </property> + <property name="baseSize"> + <size> + <width>220</width> + <height>220</height> + </size> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item row="3" column="1"> + <widget class="QPushButton" name="openButton"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="text"> + <string>Open</string> + </property> + </widget> + </item> + <item row="4" column="1"> + <widget class="QPushButton" name="downloadButton"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="text"> + <string>Download</string> + </property> + </widget> + </item> + <item row="5" column="1"> + <widget class="QPushButton" name="removeButton"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="text"> + <string>Remove</string> + </property> + </widget> + </item> + <item row="6" column="1"> + <spacer name="verticalSpacer"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>20</width> + <height>40</height> + </size> + </property> + </spacer> + </item> + <item row="1" column="1"> + <spacer name="horizontalSpacer_2"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item row="2" column="1"> + <widget class="QPushButton" name="saveAsButton"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="text"> + <string>Save as...</string> + </property> + </widget> + </item> + </layout> + </item> + <item row="2" column="0"> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>128</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item row="2" column="1"> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Close|QDialogButtonBox::Save</set> + </property> + </widget> + </item> + </layout> + </widget> + <customwidgets> + <customwidget> + <class>CoverWidget</class> + <extends>QWidget</extends> + <header>coverwidget.h</header> + <container>1</container> + </customwidget> + </customwidgets> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>rejected()</signal> + <receiver>CoverWindow</receiver> + <slot>reject()</slot> + <hints> + <hint type="sourcelabel"> + <x>349</x> + <y>382</y> + </hint> + <hint type="destinationlabel"> + <x>286</x> + <y>274</y> + </hint> + </hints> + </connection> + </connections> +</ui> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0"> +<context> + <name>CoverManager</name> + <message> + <location filename="../covermanager.cpp" line="32"/> + <source>Show Cover</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanager.cpp" line="33"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverManagerFactory</name> + <message> + <location filename="../covermanagerfactory.cpp" line="29"/> + <source>Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="49"/> + <source>About Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="50"/> + <source>Qmmp Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="51"/> + <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverWindow</name> + <message> + <location filename="../coverwindow.ui" line="20"/> + <source>Cover Manager</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="46"/> + <source>Album:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="56"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="76"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="116"/> + <source>Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="126"/> + <source>Download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="136"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="172"/> + <source>Save as...</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0"> +<context> + <name>CoverManager</name> + <message> + <location filename="../covermanager.cpp" line="32"/> + <source>Show Cover</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanager.cpp" line="33"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverManagerFactory</name> + <message> + <location filename="../covermanagerfactory.cpp" line="29"/> + <source>Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="49"/> + <source>About Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="50"/> + <source>Qmmp Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="51"/> + <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverWindow</name> + <message> + <location filename="../coverwindow.ui" line="20"/> + <source>Cover Manager</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="46"/> + <source>Album:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="56"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="76"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="116"/> + <source>Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="126"/> + <source>Download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="136"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="172"/> + <source>Save as...</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0"> +<context> + <name>CoverManager</name> + <message> + <location filename="../covermanager.cpp" line="32"/> + <source>Show Cover</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanager.cpp" line="33"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverManagerFactory</name> + <message> + <location filename="../covermanagerfactory.cpp" line="29"/> + <source>Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="49"/> + <source>About Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="50"/> + <source>Qmmp Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="51"/> + <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverWindow</name> + <message> + <location filename="../coverwindow.ui" line="20"/> + <source>Cover Manager</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="46"/> + <source>Album:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="56"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="76"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="116"/> + <source>Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="126"/> + <source>Download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="136"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="172"/> + <source>Save as...</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0"> +<context> + <name>CoverManager</name> + <message> + <location filename="../covermanager.cpp" line="32"/> + <source>Show Cover</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanager.cpp" line="33"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverManagerFactory</name> + <message> + <location filename="../covermanagerfactory.cpp" line="29"/> + <source>Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="49"/> + <source>About Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="50"/> + <source>Qmmp Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="51"/> + <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverWindow</name> + <message> + <location filename="../coverwindow.ui" line="20"/> + <source>Cover Manager</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="46"/> + <source>Album:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="56"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="76"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="116"/> + <source>Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="126"/> + <source>Download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="136"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="172"/> + <source>Save as...</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0"> +<context> + <name>CoverManager</name> + <message> + <location filename="../covermanager.cpp" line="32"/> + <source>Show Cover</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanager.cpp" line="33"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverManagerFactory</name> + <message> + <location filename="../covermanagerfactory.cpp" line="29"/> + <source>Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="49"/> + <source>About Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="50"/> + <source>Qmmp Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="51"/> + <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverWindow</name> + <message> + <location filename="../coverwindow.ui" line="20"/> + <source>Cover Manager</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="46"/> + <source>Album:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="56"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="76"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="116"/> + <source>Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="126"/> + <source>Download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="136"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="172"/> + <source>Save as...</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0" language="ru_RU" sourcelanguage="ru_RU"> +<context> + <name>CoverManager</name> + <message> + <location filename="../covermanager.cpp" line="32"/> + <source>Show Cover</source> + <translation>Показать обложку</translation> + </message> + <message> + <location filename="../covermanager.cpp" line="33"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverManagerFactory</name> + <message> + <location filename="../covermanagerfactory.cpp" line="29"/> + <source>Cover Manager Plugin</source> + <translation>Модуль упр. обложками</translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="49"/> + <source>About Cover Manager Plugin</source> + <translation>О модуле управления обложками</translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="50"/> + <source>Qmmp Cover Manager Plugin</source> + <translation>Модуль управления обложками для Qmmp</translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="51"/> + <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> + <translation>Разработчик: Илья Котов <forkotov02@hotmail.ru></translation> + </message> +</context> +<context> + <name>CoverWindow</name> + <message> + <location filename="../coverwindow.ui" line="20"/> + <source>Cover Manager</source> + <translation>Управление обложками</translation> + </message> + <message> + <location filename="../coverwindow.ui" line="46"/> + <source>Album:</source> + <translation>Альбом:</translation> + </message> + <message> + <location filename="../coverwindow.ui" line="56"/> + <source>Artist:</source> + <translation>Исполнитель:</translation> + </message> + <message> + <location filename="../coverwindow.ui" line="76"/> + <source>Preview</source> + <translation>Просмотр</translation> + </message> + <message> + <location filename="../coverwindow.ui" line="116"/> + <source>Open</source> + <translation>Открыть</translation> + </message> + <message> + <location filename="../coverwindow.ui" line="126"/> + <source>Download</source> + <translation>Загрузить</translation> + </message> + <message> + <location filename="../coverwindow.ui" line="136"/> + <source>Remove</source> + <translation>Удалить</translation> + </message> + <message> + <location filename="../coverwindow.ui" line="172"/> + <source>Save as...</source> + <translation>Сохранить как...</translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0"> +<context> + <name>CoverManager</name> + <message> + <location filename="../covermanager.cpp" line="32"/> + <source>Show Cover</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanager.cpp" line="33"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverManagerFactory</name> + <message> + <location filename="../covermanagerfactory.cpp" line="29"/> + <source>Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="49"/> + <source>About Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="50"/> + <source>Qmmp Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="51"/> + <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverWindow</name> + <message> + <location filename="../coverwindow.ui" line="20"/> + <source>Cover Manager</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="46"/> + <source>Album:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="56"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="76"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="116"/> + <source>Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="126"/> + <source>Download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="136"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="172"/> + <source>Save as...</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0"> +<context> + <name>CoverManager</name> + <message> + <location filename="../covermanager.cpp" line="32"/> + <source>Show Cover</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanager.cpp" line="33"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverManagerFactory</name> + <message> + <location filename="../covermanagerfactory.cpp" line="29"/> + <source>Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="49"/> + <source>About Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="50"/> + <source>Qmmp Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="51"/> + <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverWindow</name> + <message> + <location filename="../coverwindow.ui" line="20"/> + <source>Cover Manager</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="46"/> + <source>Album:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="56"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="76"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="116"/> + <source>Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="126"/> + <source>Download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="136"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="172"/> + <source>Save as...</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0"> +<context> + <name>CoverManager</name> + <message> + <location filename="../covermanager.cpp" line="32"/> + <source>Show Cover</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanager.cpp" line="33"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverManagerFactory</name> + <message> + <location filename="../covermanagerfactory.cpp" line="29"/> + <source>Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="49"/> + <source>About Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="50"/> + <source>Qmmp Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="51"/> + <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverWindow</name> + <message> + <location filename="../coverwindow.ui" line="20"/> + <source>Cover Manager</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="46"/> + <source>Album:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="56"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="76"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="116"/> + <source>Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="126"/> + <source>Download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="136"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="172"/> + <source>Save as...</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0"> +<context> + <name>CoverManager</name> + <message> + <location filename="../covermanager.cpp" line="32"/> + <source>Show Cover</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanager.cpp" line="33"/> + <source>Ctrl+M</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverManagerFactory</name> + <message> + <location filename="../covermanagerfactory.cpp" line="29"/> + <source>Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="49"/> + <source>About Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="50"/> + <source>Qmmp Cover Manager Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../covermanagerfactory.cpp" line="51"/> + <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> + <translation type="unfinished"></translation> + </message> +</context> +<context> + <name>CoverWindow</name> + <message> + <location filename="../coverwindow.ui" line="20"/> + <source>Cover Manager</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="46"/> + <source>Album:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="56"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="76"/> + <source>Preview</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="116"/> + <source>Open</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="126"/> + <source>Download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="136"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../coverwindow.ui" line="172"/> + <source>Save as...</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS> 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 @@ +<!DOCTYPE RCC> +<RCC version="1.0"> + <qresource> + <file>covermanager_plugin_it.qm</file> + <file>covermanager_plugin_ru.qm</file> + <file>covermanager_plugin_uk_UA.qm</file> + <file>covermanager_plugin_zh_CN.qm</file> + <file>covermanager_plugin_zh_TW.qm</file> + <file>covermanager_plugin_cs.qm</file> + <file>covermanager_plugin_pl.qm</file> + <file>covermanager_plugin_de.qm</file> + <file>covermanager_plugin_tr.qm</file> + <file>covermanager_plugin_lt.qm</file> + </qresource> +</RCC> |
