diff options
Diffstat (limited to 'src/plugins/General/scrobbler')
33 files changed, 137 insertions, 149 deletions
diff --git a/src/plugins/General/scrobbler/CMakeLists.txt b/src/plugins/General/scrobbler/CMakeLists.txt index 6a0b53bb9..d4fbdb2a2 100644 --- a/src/plugins/General/scrobbler/CMakeLists.txt +++ b/src/plugins/General/scrobbler/CMakeLists.txt @@ -1,20 +1,5 @@ project(libscrobbler) - - -SET(QT_USE_QTNETWORK TRUE) -INCLUDE(FindQt4) - -include(${QT_USE_FILE}) - -# 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 @@ -38,7 +23,7 @@ SET(libscrobbler_HDRS SET(libscrobbler_RCCS translations/translations.qrc) -QT4_ADD_RESOURCES(libscrobbler_RCC_SRCS ${libscrobbler_RCCS}) +QT5_ADD_RESOURCES(libscrobbler_RCC_SRCS ${libscrobbler_RCCS}) # user interface @@ -47,7 +32,7 @@ SET(libscrobbler_UIS settingsdialog.ui ) -QT4_WRAP_UI(libscrobbler_UIS_H ${libscrobbler_UIS}) +QT5_WRAP_UI(libscrobbler_UIS_H ${libscrobbler_UIS}) # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories(${CMAKE_CURRENT_BINARY_DIR}) @@ -55,5 +40,5 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ADD_LIBRARY(scrobbler MODULE ${libscrobbler_SRCS} ${libscrobbler_UIS_H} ${libscrobbler_RCC_SRCS} ${libscrobbler_HDRS}) add_dependencies(scrobbler qmmpui) -target_link_libraries(scrobbler ${QT_LIBRARIES} qmmpui libqmmp) +target_link_libraries(scrobbler Qt5::Widgets Qt5::Network -lqmmpui -lqmmp) install(TARGETS scrobbler DESTINATION ${LIB_DIR}/qmmp/General) diff --git a/src/plugins/General/scrobbler/scrobbler.cpp b/src/plugins/General/scrobbler/scrobbler.cpp index c84cba99d..b4f10e634 100644 --- a/src/plugins/General/scrobbler/scrobbler.cpp +++ b/src/plugins/General/scrobbler/scrobbler.cpp @@ -26,6 +26,7 @@ #include <QCryptographicHash> #include <QXmlStreamReader> #include <QUrl> +#include <QUrlQuery> #include <QTime> #include <QTimer> #include <QDateTime> @@ -312,7 +313,7 @@ void Scrobbler::submit() QUrl url(m_scrobblerUrl); url.setPort(m_scrobblerUrl.startsWith("https") ? 443 : 80); - QUrl body(""); + QUrlQuery body(""); QByteArray data; foreach (QString key, params.keys()) { @@ -321,7 +322,7 @@ void Scrobbler::submit() } data.append(SECRET); body.addQueryItem("api_sig", QCryptographicHash::hash(data, QCryptographicHash::Md5).toHex()); - QByteArray bodyData = body.toEncoded().remove(0,1); + QByteArray bodyData = body.query(QUrl::FullyEncoded).toUtf8(); bodyData.replace("+", QUrl::toPercentEncoding("+")); QNetworkRequest request(url); @@ -361,7 +362,7 @@ void Scrobbler::sendNotification(const SongInfo &info) QUrl url(m_scrobblerUrl); url.setPort(m_scrobblerUrl.startsWith("https") ? 443 : 80); - QUrl body(""); + QUrlQuery body(""); QByteArray data; foreach (QString key, params.keys()) { @@ -370,7 +371,7 @@ void Scrobbler::sendNotification(const SongInfo &info) } data.append(SECRET); body.addQueryItem("api_sig", QCryptographicHash::hash(data, QCryptographicHash::Md5).toHex()); - QByteArray bodyData = body.toEncoded().remove(0,1); + QByteArray bodyData = body.query(QUrl::FullyEncoded).toUtf8(); bodyData.replace("+", QUrl::toPercentEncoding("+")); QNetworkRequest request(url); @@ -415,14 +416,16 @@ void ScrobblerAuth::getToken() m_session.clear(); QUrl url(m_scrobblerUrl + "?"); url.setPort(m_scrobblerUrl.startsWith("https") ? 443 : 80); - url.addQueryItem("method", "auth.getToken"); - url.addQueryItem("api_key", API_KEY); + QUrlQuery q; + q.addQueryItem("method", "auth.getToken"); + q.addQueryItem("api_key", API_KEY); QByteArray data; data.append("api_key" API_KEY); data.append("methodauth.getToken"); data.append(SECRET); - url.addQueryItem("api_sig", QCryptographicHash::hash(data,QCryptographicHash::Md5).toHex()); + q.addQueryItem("api_sig", QCryptographicHash::hash(data,QCryptographicHash::Md5).toHex()); + url.setQuery(q); QNetworkRequest request(url); request.setRawHeader("User-Agent", m_ua); @@ -436,16 +439,18 @@ void ScrobblerAuth::getSession() qDebug("ScrobblerAuth[%s]: new session request", qPrintable(m_name)); QUrl url(m_scrobblerUrl + "?"); url.setPort(m_scrobblerUrl.startsWith("https") ? 443 : 80); - url.addQueryItem("api_key", API_KEY); - url.addQueryItem("method", "auth.getSession"); - url.addQueryItem("token", m_token); + QUrlQuery q; + q.addQueryItem("api_key", API_KEY); + q.addQueryItem("method", "auth.getSession"); + q.addQueryItem("token", m_token); QByteArray data; data.append("api_key" API_KEY); data.append("methodauth.getSession"); data.append("token" + m_token.toUtf8()); data.append(SECRET); - url.addQueryItem("api_sig", QCryptographicHash::hash(data, QCryptographicHash::Md5).toHex()); + q.addQueryItem("api_sig", QCryptographicHash::hash(data, QCryptographicHash::Md5).toHex()); + url.setQuery(q); QNetworkRequest request(url); request.setRawHeader("User-Agent", m_ua); @@ -466,7 +471,7 @@ void ScrobblerAuth::checkSession(const QString &session) QUrl url(m_scrobblerUrl); url.setPort(m_scrobblerUrl.startsWith("https") ? 443 : 80); - QUrl body(""); + QUrlQuery body(""); QByteArray data; foreach (QString key, params.keys()) { @@ -475,7 +480,7 @@ void ScrobblerAuth::checkSession(const QString &session) } data.append(SECRET); body.addQueryItem("api_sig", QCryptographicHash::hash(data, QCryptographicHash::Md5).toHex()); - QByteArray bodyData = body.toEncoded().remove(0,1); + QByteArray bodyData = body.query(QUrl::FullyEncoded).toUtf8(); bodyData.replace("+", QUrl::toPercentEncoding("+")); QNetworkRequest request(url); diff --git a/src/plugins/General/scrobbler/scrobblercache.cpp b/src/plugins/General/scrobbler/scrobblercache.cpp index b6b1eec78..667079fdd 100644 --- a/src/plugins/General/scrobbler/scrobblercache.cpp +++ b/src/plugins/General/scrobbler/scrobblercache.cpp @@ -125,7 +125,7 @@ QList<SongInfo> ScrobblerCache::load() while (!file.atEnd()) { - line = QString::fromUtf8(file.readLine().constData()).trimmed(); + line = QString::fromUtf8(file.readLine()).trimmed(); if ((s = line.indexOf("=")) < 0) continue; diff --git a/src/plugins/General/scrobbler/scrobblerfactory.cpp b/src/plugins/General/scrobbler/scrobblerfactory.cpp index 331e258bb..4cfced38c 100644 --- a/src/plugins/General/scrobbler/scrobblerfactory.cpp +++ b/src/plugins/General/scrobbler/scrobblerfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2016 by Ilya Kotov * + * Copyright (C) 2008-2012 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,9 +18,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ + #include <QMessageBox> -#include <QTranslator> -#include <QtPlugin> #include <qmmp/qmmp.h> #include "scrobblerhandler.h" #include "settingsdialog.h" @@ -61,5 +60,3 @@ QTranslator *ScrobblerFactory::createTranslator(QObject *parent) translator->load(QString(":/scrobbler_plugin_") + locale); return translator; } - -Q_EXPORT_PLUGIN2(scrobbler, ScrobblerFactory) diff --git a/src/plugins/General/scrobbler/scrobblerfactory.h b/src/plugins/General/scrobbler/scrobblerfactory.h index 0d1ea8035..d41d674ca 100644 --- a/src/plugins/General/scrobbler/scrobblerfactory.h +++ b/src/plugins/General/scrobbler/scrobblerfactory.h @@ -32,6 +32,7 @@ class ScrobblerFactory : public QObject, public GeneralFactory { Q_OBJECT +Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: const GeneralProperties properties() const; diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_bg.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_bg.ts index 643b43b04..4085244a2 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_bg.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_bg.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_cs.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_cs.ts index 301209963..07b039864 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_cs.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_cs.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Modul Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>O modulu Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Modul Qmmp Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_de.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_de.ts index 18af65d2b..812558220 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_de.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_de.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler-Modul</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Über Scrobbler-Modul</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp AudioScrobbler-Modul</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Geschrieben von: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_el.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_el.ts index 5a3d57ef4..96bf5fa42 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_el.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_el.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Πρόσθετο Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Σχετικά με το πρόσθετο Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp πρόσθετο AudioScrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Γράφτηκε από τον: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_en.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_en.ts index 8e2abb88c..974476db3 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_en.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_en.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_es.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_es.ts index 921b7d6b2..b601cf556 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_es.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_es.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Módulo Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Acerca del módulo Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Módulo AudioScrobbler para Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_fi.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_fi.ts index 01c112fee..24ff62c5b 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_fi.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_fi.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler-liitännäinen</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Tietoja - Scrobbler-liitännäinen</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp:n AudioScrobbler-liitännäinen</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Toteuttanut: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_fr.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_fr.ts index a82a3444b..17c8e0350 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_fr.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_fr.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Greffon AudioScrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>À propos du greffon AudioScrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Greffon AudioScrobbler pour Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Écrit par : Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_gl_ES.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_gl_ES.ts index eb659460b..b9e66912f 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_gl_ES.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_gl_ES.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Engadido Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Sobre o engadido Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Engadio AudioScrobbler de Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_he.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_he.ts index 071125077..e73194500 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_he.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_he.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>תוסף Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>אודות תוסף Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>תוסף AudioScrobbler של Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_hu.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_hu.ts index 68a7080d9..8e2d89e64 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_hu.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_hu.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_id.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_id.ts index c1f25fdfb..a90c3d57f 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_id.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_id.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Plugin Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Tentang Plugin Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Plugin AudioScrobbler Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_it.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_it.ts index 43ae94dec..115db2846 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_it.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_it.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Modulo Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Info sul modulo Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Modulo AudioScrobbler per Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Autore: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_ja.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_ja.ts index 86037b088..aab9cd90c 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_ja.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_ja.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler プラグイン</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Scrobbler プラグインについて</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>QMMP Scrobbler プラグイン</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_kk.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_kk.ts index 665e5907d..a4785023d 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_kk.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_kk.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_lt.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_lt.ts index 68765f521..e858e2302 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_lt.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_lt.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler įskiepis</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Apie Scrobbler įskiepį</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp AudioScrobbler įskiepis</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_nl.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_nl.ts index f220b9b11..00b2cd118 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_nl.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_nl.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler Module</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Over de Scrobbler Module</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>AudioScrobbler Module voor Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pl_PL.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pl_PL.ts index 2a71657d4..40800818a 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pl_PL.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pl_PL.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Wtyczka Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>O wtyczce Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Wtyczka AudioScrobbler dla Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt.ts index b144a330d..ed8a4543a 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Suplemento Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Sobre o suplemento Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Suplemento Qmmp AudioScrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Desenvolvido por: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt_BR.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt_BR.ts index 6d884a52b..806bee3a8 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt_BR.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_pt_BR.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Plugin Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Sobre o plugin Scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Plugin Qmmp AudioScrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_ru.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_ru.ts index 65743f423..e861f91b0 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_ru.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_ru.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Модуль scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>О модуле Scrobbler </translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Модуль AudioScrobbler для Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Разработчик: Илья Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sk.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sk.ts index e8303e43a..300d6f8f6 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sk.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sk.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_BA.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_BA.ts index 2ea3892f0..3e5159efe 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_BA.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_BA.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Скроблер</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>О прикључку за скробловање</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Кумп прикључак за скробловање</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_RS.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_RS.ts index 5cc6c7239..1ac6f95cb 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_RS.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_sr_RS.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Скроблер</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>О прикључку за скробловање</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Кумп прикључак за скробловање</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Аутор: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_tr.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_tr.ts index 1c1328aa7..ed25f4ebd 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_tr.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_tr.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler Eklentisi</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Scrobbler Eklentisi Hakkında</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp Scrobbler Eklentisi</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_uk_UA.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_uk_UA.ts index 4e7cbad2b..7df95b11a 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_uk_UA.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_uk_UA.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Модуль scrobbler</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>Про модуль Scrobbler </translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Модуль AudioScrobbler для Qmmp</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>Розробник: Ілля Котов <forkotov02@ya.ru></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_CN.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_CN.ts index 7771f7f9c..a9c9d4495 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_CN.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_CN.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler 插件</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>关于 Scrobbler 插件</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp Scrobbler 插件</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_TW.ts b/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_TW.ts index 9097809b6..b42dff169 100644 --- a/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_TW.ts +++ b/src/plugins/General/scrobbler/translations/scrobbler_plugin_zh_TW.ts @@ -4,22 +4,22 @@ <context> <name>ScrobblerFactory</name> <message> - <location filename="../scrobblerfactory.cpp" line="32"/> + <location filename="../scrobblerfactory.cpp" line="31"/> <source>Scrobbler Plugin</source> <translation>Scrobbler 外掛</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="52"/> + <location filename="../scrobblerfactory.cpp" line="51"/> <source>About Scrobbler Plugin</source> <translation>關於 Scrobbler 外掛</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="53"/> + <location filename="../scrobblerfactory.cpp" line="52"/> <source>Qmmp AudioScrobbler Plugin</source> <translation>Qmmp Scrobbler 外掛</translation> </message> <message> - <location filename="../scrobblerfactory.cpp" line="54"/> + <location filename="../scrobblerfactory.cpp" line="53"/> <source>Written by: Ilya Kotov <forkotov02@ya.ru></source> <translation>作者:Ilya Kotov <forkotov02@ya.ru></translation> </message> |
