aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/hotkey
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/hotkey')
-rw-r--r--src/plugins/General/hotkey/CMakeLists.txt20
-rw-r--r--src/plugins/General/hotkey/hotkey.pro1
-rw-r--r--src/plugins/General/hotkey/hotkeyfactory.cpp7
-rw-r--r--src/plugins/General/hotkey/hotkeyfactory.h1
-rw-r--r--src/plugins/General/hotkey/hotkeymanager.h5
-rw-r--r--src/plugins/General/hotkey/hotkeymanager_x11.cpp13
-rw-r--r--src/plugins/General/hotkey/settingsdialog.cpp4
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_bg.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_cs.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_de.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_el.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_en.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_es.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_fi.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_fr.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_gl_ES.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_he.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_hu.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_id.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_it.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_ja.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_kk.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_lt.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_nl.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_pl_PL.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_pt.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_pt_BR.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_ru.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_sk.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_sr_BA.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_sr_RS.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_tr.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_uk_UA.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_zh_CN.ts10
-rw-r--r--src/plugins/General/hotkey/translations/hotkey_plugin_zh_TW.ts10
35 files changed, 161 insertions, 170 deletions
diff --git a/src/plugins/General/hotkey/CMakeLists.txt b/src/plugins/General/hotkey/CMakeLists.txt
index 9cf51d112..ca8188a31 100644
--- a/src/plugins/General/hotkey/CMakeLists.txt
+++ b/src/plugins/General/hotkey/CMakeLists.txt
@@ -2,22 +2,8 @@ project(libhotkey)
INCLUDE(CheckIncludeFile)
-# 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)
-ADD_DEFINITIONS(${X11_CFLAGS})
-
include_directories(${CMAKE_CURRENT_BINARY_DIR})
-SET(QT_INCLUDES
- ${QT_INCLUDES}
- ${CMAKE_CURRENT_SOURCE_DIR}/../../../
-)
-
include_directories(${X11_INCLUDE_DIRS})
link_directories(${X11_LIBRARY_DIRS})
@@ -45,7 +31,7 @@ SET(libhotkey_RCCS
translations/translations.qrc
)
-QT4_ADD_RESOURCES(libhotkey_RCC_SRCS ${libhotkey_RCCS})
+QT5_ADD_RESOURCES(libhotkey_RCC_SRCS ${libhotkey_RCCS})
# user interface
@@ -55,7 +41,7 @@ SET(libhotkey_UIS
hotkeydialog.ui
)
-QT4_WRAP_UI(libhotkey_UIS_H ${libhotkey_UIS})
+QT5_WRAP_UI(libhotkey_UIS_H ${libhotkey_UIS})
# Don't forget to include output directory, otherwise
# the UI file won't be wrapped!
include_directories(${CMAKE_CURRENT_BINARY_DIR})
@@ -64,6 +50,6 @@ IF(X11_FOUND)
set_property(SOURCE hotkeymanager_x11.cpp PROPERTY SKIP_AUTOMOC ON)
ADD_LIBRARY(hotkey MODULE ${libhotkey_SRCS} ${libhotkey_UIS_H} ${libhotkey_RCC_SRCS})
add_dependencies(hotkey qmmpui)
-target_link_libraries(hotkey ${QT_LIBRARIES} qmmpui libqmmp ${X11_LDFLAGS})
+target_link_libraries(hotkey Qt5::Widgets Qt5::X11Extras -lqmmpui -lqmmp ${X11_LDFLAGS})
install(TARGETS hotkey DESTINATION ${LIB_DIR}/qmmp/General)
ENDIF(X11_FOUND)
diff --git a/src/plugins/General/hotkey/hotkey.pro b/src/plugins/General/hotkey/hotkey.pro
index 7195a5811..e8477431e 100644
--- a/src/plugins/General/hotkey/hotkey.pro
+++ b/src/plugins/General/hotkey/hotkey.pro
@@ -25,4 +25,5 @@ unix {
INSTALLS += target
PKGCONFIG += x11
DEFINES += HAVE_XKBLIB_H
+ QT += x11extras
}
diff --git a/src/plugins/General/hotkey/hotkeyfactory.cpp b/src/plugins/General/hotkey/hotkeyfactory.cpp
index de944514e..7c0c176de 100644
--- a/src/plugins/General/hotkey/hotkeyfactory.cpp
+++ b/src/plugins/General/hotkey/hotkeyfactory.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2016 by Ilya Kotov *
+ * Copyright (C) 2009-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 "settingsdialog.h"
#include "hotkeymanager.h"
@@ -62,5 +61,3 @@ QTranslator *HotkeyFactory::createTranslator(QObject *parent)
translator->load(QString(":/hotkey_plugin_") + locale);
return translator;
}
-
-Q_EXPORT_PLUGIN2(hotkey, HotkeyFactory)
diff --git a/src/plugins/General/hotkey/hotkeyfactory.h b/src/plugins/General/hotkey/hotkeyfactory.h
index caae05029..d4f1618a5 100644
--- a/src/plugins/General/hotkey/hotkeyfactory.h
+++ b/src/plugins/General/hotkey/hotkeyfactory.h
@@ -32,6 +32,7 @@
class HotkeyFactory : 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/hotkey/hotkeymanager.h b/src/plugins/General/hotkey/hotkeymanager.h
index cf816dd6f..200aa68f4 100644
--- a/src/plugins/General/hotkey/hotkeymanager.h
+++ b/src/plugins/General/hotkey/hotkeymanager.h
@@ -20,6 +20,7 @@
#ifndef HOTKEYMANAGER_H
#define HOTKEYMANAGER_H
+#include <QObject>
#include <QString>
#include <QTableWidgetItem>
#include <QList>
@@ -80,13 +81,13 @@ public:
static QList<long> ignModifiersList();
static quint32 keycodeToKeysym(quint32 keycode);
-#ifdef Q_WS_X11
+#ifdef QMMP_WS_X11
protected:
virtual bool eventFilter(QObject* o, QEvent* e);
#endif
private:
-#ifdef Q_WS_X11
+#ifdef QMMP_WS_X11
static void ensureModifiers();
QList <Hotkey *> m_grabbedKeys;
static long m_alt_mask;
diff --git a/src/plugins/General/hotkey/hotkeymanager_x11.cpp b/src/plugins/General/hotkey/hotkeymanager_x11.cpp
index 3954eebb3..05b46280a 100644
--- a/src/plugins/General/hotkey/hotkeymanager_x11.cpp
+++ b/src/plugins/General/hotkey/hotkeymanager_x11.cpp
@@ -21,7 +21,7 @@
***************************************************************************/
#include <QtGlobal>
-#ifdef Q_WS_X11
+#ifdef QMMP_WS_X11
#include <QSettings>
#include <QX11Info>
#include <QEvent>
@@ -80,6 +80,12 @@ quint32 Hotkey::defaultKey(int act)
HotkeyManager::HotkeyManager(QObject *parent) : QObject(parent)
{
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
+ //Workaround Qt regression of no longer delivering events for the root window
+ //See qtbase commit 2b34aefcf02f09253473b096eb4faffd3e62b5f4
+ //More information: https://bugs.kde.org/show_bug.cgi?id=360841
+ qApp->desktop()->winId();
+#endif
QCoreApplication::instance()->installEventFilter(this);
WId rootWindow = QX11Info::appRootWindow();
QSettings settings(Qmmp::configFile(), QSettings::IniFormat); //load settings
@@ -138,8 +144,7 @@ const QString HotkeyManager::getKeyString(quint32 key, quint32 modifiers)
bool HotkeyManager::eventFilter(QObject* o, QEvent* e)
{
- //receive events from active and root windows only
- if (e->type() == QEvent::KeyPress && (o == qApp->desktop () || o == qApp->activeWindow ()))
+ if (e->type() == QEvent::KeyPress)
{
QKeyEvent* k = static_cast<QKeyEvent*>(e);
quint32 key = keycodeToKeysym(k->nativeScanCode());
@@ -198,7 +203,7 @@ bool HotkeyManager::eventFilter(QObject* o, QEvent* e)
break;
}
- qApp->processEvents();
+ return true;
}
}
return QObject::eventFilter(o, e);
diff --git a/src/plugins/General/hotkey/settingsdialog.cpp b/src/plugins/General/hotkey/settingsdialog.cpp
index 08d429227..2830e58ee 100644
--- a/src/plugins/General/hotkey/settingsdialog.cpp
+++ b/src/plugins/General/hotkey/settingsdialog.cpp
@@ -30,9 +30,9 @@ SettingsDialog::SettingsDialog(QWidget *parent)
{
m_ui.setupUi(this);
m_ui.tableWidget->verticalHeader()->setDefaultSectionSize(fontMetrics().height());
- m_ui.tableWidget->verticalHeader()->setResizeMode(QHeaderView::Fixed);
+ m_ui.tableWidget->verticalHeader()->setSectionResizeMode(QHeaderView::Fixed);
m_ui.tableWidget->verticalHeader()->hide();
- m_ui.tableWidget->horizontalHeader()->setResizeMode(QHeaderView::Stretch);
+ m_ui.tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
m_ui.tableWidget->setRowCount (13);
m_ui.tableWidget->setItem(0,0, new QTableWidgetItem(tr("Play")));
m_ui.tableWidget->setItem(1,0, new QTableWidgetItem(tr("Stop")));
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_bg.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_bg.ts
index 5b0d9cf86..fb4ee116d 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_bg.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_bg.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_cs.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_cs.ts
index f50bb126d..e0af4d5ad 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_cs.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_cs.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Modul klávesových zkratek</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>O modulu klávesových zkratek</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Modul Qmmp pro klávesové zkratky</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Tento modul přidává podporu multimediálních kláves a globálních klávesových zkratek</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_de.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_de.ts
index 0df163b93..7458400df 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_de.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_de.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Globales Kurzbefehle-Modul</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Über Globales Kurzbefehle-Modul</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Qmmp Globales Kurzbefehle-Modul</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Dieses Modul fügt Unterstützung für Multimedia-Tasten oder allgemeine Tastaturkombinationen hinzu</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Geschrieben von: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_el.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_el.ts
index 4e1a449fe..49476d733 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_el.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_el.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Πρόσθετο καθολικών συντομεύσεων</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Σχετικά με το πρόσθετο καθολικών συντομεύσεων</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Qmmp πρόσθετο καθολικών συντομεύσεων</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Αυτό το πρόσθετο προσθέτει υποστήριξη για συνδυασμό πλήκτρων πληκτρολογίου ή πολυμέσων</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Γράφτηκε από τον: Ilya Kotov &lt;forkotov02@hotmail.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_en.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_en.ts
index 42e4c65a9..c6e3a99bf 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_en.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_en.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_es.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_es.ts
index 1a30c5d43..bcf035c72 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_es.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_es.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Módulo de atajos de teclado global</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Acerca del módulo de atajos de teclado global</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Módulo de atajos de teclado global para Qmmp</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Este módulo añade soporte para teclas multimedia o combinaciones de teclas globales</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Escrito por: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_fi.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_fi.ts
index 6164beda1..ad49e3973 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_fi.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_fi.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Toteuttanut: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_fr.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_fr.ts
index a999d317f..666de769c 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_fr.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_fr.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Greffon de raccourci clavier global</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>À propos du greffon de raccourci clavier global</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Greffon de raccourci clavier global pour Qmmp</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Ce greffon ajoute un support pour des touches multimédia ou des combinaisons globales de touches</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Écrit par : Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_gl_ES.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_gl_ES.ts
index eea0cad45..79b5cd202 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_gl_ES.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_gl_ES.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Engadido Global Hotkey</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Sobre o engadido Global Hotkey</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Engadido Qmmp Global Hotkey</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Este engadido ofrece soporte para teclas multimedia ou combinacións de teclas globais</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_he.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_he.ts
index 8db3d759c..1e7357a01 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_he.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_he.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>תוסף מקש חם גלובלי</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>אודות תוסף מקש חם גלובלי</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>תוסף מקש חם גלובלי של Qmmp</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>תוסף זה מוסיף תמיכה למקשי מולטימדיה או צירופי מקש גלובלי</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_hu.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_hu.ts
index 35ec12deb..6977a2e40 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_hu.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_hu.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_id.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_id.ts
index a85361684..930f51e4b 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_id.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_id.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Plugin Hotkey Global</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Tentang Plugin Hotkey Global</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Plugin Hotkey Global Qmmp</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Plugin ini menambahkan dukungan untuk tombol multimedia atau kombinasi tombol global</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_it.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_it.ts
index 146fab9b5..10166150f 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_it.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_it.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Modulo scorciatoie globali</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Info sul modulo scorciatoie globali</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Modulo scorciatoie globali per Qmmp</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Modulo che aggiunge il supporto per combinazione di tasti multimedia o scorciatoie</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Autore: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_ja.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_ja.ts
index 48ca697e2..2a53c59c9 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_ja.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_ja.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>共通ホットキープラグイン</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>共通ホットキープラグインについて</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>QMMP 通用ホットキープラグイン</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>このプラグインはマルティミディアキーや共通キーを組み合わせるサポートを加えます</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>制作: Илья Котов (Ilya Kotov) &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_kk.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_kk.ts
index 1c4373e0f..b6717ce8e 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_kk.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_kk.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_lt.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_lt.ts
index fcbfc62cc..4a4a74e7f 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_lt.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_lt.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Global Hotkey klavišų įskiepis</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Apie Global Hotkey įskiepį</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Qmmp Global Hotkey įskiepis</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>This plugin adds support for multimedia keys or global key combinations</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Sukūrė: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_nl.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_nl.ts
index 56e1ea8ac..4278e1cc0 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_nl.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_nl.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Globale Sneltoets Module</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Over de Globale Sneltoets Module</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Globale Sneltoets Module voor Qmmp</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Deze module voegt ondersteuning toe voor multimedia toetsen of globale toetscombinaties</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Auteur: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_pl_PL.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_pl_PL.ts
index daa25cf53..e53d9f27a 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_pl_PL.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_pl_PL.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Wtyczka klawiszów skrótowych</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>O wtyczce Klawisze Skrótowe</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Wtyczka Skróŧy Klawiszowe dla Qmmp</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Ta wtyczka obsługuje klawisze multimedialne oraz globalne kombinacje klawiszów skrótowych</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_pt.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_pt.ts
index 2adc4fde7..c26e27d32 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_pt.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_pt.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Suplemento Global Hotkey</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Sobre o suplemento Global Hotkey</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Suplemento Qmmp Global Hotkey</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Este suplemento adiciona suporte às teclas multimédia ou a combinações de teclas</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Desenvolvido por: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_pt_BR.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_pt_BR.ts
index a89444930..585cc440b 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_pt_BR.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_pt_BR.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Plugin Global Hotkey</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Sobre o plugin Global Hotkey</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Plugin Qmmp Global Hotkey</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Este plugin adiciona suporte às teclas multimídia ou a combinações de teclas</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_ru.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_ru.ts
index b8bb9e1e7..d84aaf4c4 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_ru.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_ru.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Модуль глоб. клавиш</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>О модуле глобальных клавиш</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Модуль глобальных клавиш для Qmmp</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Этот модуль добавляет поддержку медиа- или глобальных клавиш</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Разработчик: Илья Котов &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_sk.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_sk.ts
index 36bd98162..1743d2e1b 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_sk.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_sk.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_sr_BA.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_sr_BA.ts
index ce2bf7062..67c64b838 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_sr_BA.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_sr_BA.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Глобалне пречице</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>О прикључку за глобалне пречице</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Кумп прикључак за глобалне пречице</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Подршка за мултимедијалне тастере или глобалне комбинације тастера</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Аутор: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_sr_RS.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_sr_RS.ts
index 80b173f2a..0941e8ba5 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_sr_RS.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_sr_RS.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Глобалне пречице</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>О прикључку за глобалне пречице</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Кумп прикључак за глобалне пречице</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Подршка за мултимедијалне тастере или глобалне комбинације тастера</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Аутор: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_tr.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_tr.ts
index 3161c133e..f225c967a 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_tr.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_tr.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Genel Kısayol Eklentisi</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Genel Kısayol Eklentisi Hakkında</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Qmmp Genel Kısayol Eklentisi</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Bu eklenti çokluortam tuşları veya genel tuş kombinasyonu desteği ekler</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Yazan: Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_uk_UA.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_uk_UA.ts
index 29c63d8af..3142f5288 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_uk_UA.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_uk_UA.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>Модуль глобальних клавіш</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>Про модуль глобальних клавіш</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Модуль глобальних клавіш для Qmmp</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>Цей модуль додає підтримку мультимедійних чи глобальних клавіш</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>Розробник: Ілля Котов &lt;forkotov02@ya.ru&gt;</translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_zh_CN.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_zh_CN.ts
index 05cf83a54..29f5eaf20 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_zh_CN.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_zh_CN.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>全局快捷键插件</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>关于全局快捷键插件</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Qmmp 全局快捷键插件</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>此插件支持增加多媒体快捷键和全局快捷键</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation type="unfinished"></translation>
</message>
diff --git a/src/plugins/General/hotkey/translations/hotkey_plugin_zh_TW.ts b/src/plugins/General/hotkey/translations/hotkey_plugin_zh_TW.ts
index 8f068a3d0..6bfa96cbd 100644
--- a/src/plugins/General/hotkey/translations/hotkey_plugin_zh_TW.ts
+++ b/src/plugins/General/hotkey/translations/hotkey_plugin_zh_TW.ts
@@ -22,27 +22,27 @@
<context>
<name>HotkeyFactory</name>
<message>
- <location filename="../hotkeyfactory.cpp" line="32"/>
+ <location filename="../hotkeyfactory.cpp" line="31"/>
<source>Global Hotkey Plugin</source>
<translation>全局熱鍵插件</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="52"/>
+ <location filename="../hotkeyfactory.cpp" line="51"/>
<source>About Global Hotkey Plugin</source>
<translation>關於全局熱鍵插件</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="53"/>
+ <location filename="../hotkeyfactory.cpp" line="52"/>
<source>Qmmp Global Hotkey Plugin</source>
<translation>Qmmp 全局熱鍵插件</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="54"/>
+ <location filename="../hotkeyfactory.cpp" line="53"/>
<source>This plugin adds support for multimedia keys or global key combinations</source>
<translation>此插件支援添加多媒體熱鍵與全局熱鍵</translation>
</message>
<message>
- <location filename="../hotkeyfactory.cpp" line="55"/>
+ <location filename="../hotkeyfactory.cpp" line="54"/>
<source>Written by: Ilya Kotov &lt;forkotov02@ya.ru&gt;</source>
<translation>作者:Ilya Kotov &lt;forkotov02@ya.ru&gt;</translation>
</message>