aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/gnomehotkey
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/gnomehotkey')
-rw-r--r--src/plugins/General/gnomehotkey/gnomehotkeyfactory.cpp10
-rw-r--r--src/plugins/General/gnomehotkey/gnomehotkeyfactory.h3
2 files changed, 1 insertions, 12 deletions
diff --git a/src/plugins/General/gnomehotkey/gnomehotkeyfactory.cpp b/src/plugins/General/gnomehotkey/gnomehotkeyfactory.cpp
index 82c535c28..5e9ba1c7b 100644
--- a/src/plugins/General/gnomehotkey/gnomehotkeyfactory.cpp
+++ b/src/plugins/General/gnomehotkey/gnomehotkeyfactory.cpp
@@ -18,7 +18,6 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-
#include <QMessageBox>
#include <qmmp/qmmp.h>
#include "mediakeys.h"
@@ -29,6 +28,7 @@ const GeneralProperties GnomeHotkeyFactory::properties() const
GeneralProperties properties;
properties.name = tr("Gnome Hotkey Plugin");
properties.shortName = "gnomehotkey";
+ properties.translation = QLatin1String(":/gnomehotkey_plugin_");
properties.hasAbout = true;
properties.hasSettings = false;
properties.visibilityControl = false;
@@ -53,11 +53,3 @@ void GnomeHotkeyFactory::showAbout(QWidget *parent)
tr("This plugin adds support of the GNOME/Cinnamon hotkeys") + "\n" +
tr("Written by: Ilya Kotov <forkotov02@ya.ru>"));
}
-
-QTranslator *GnomeHotkeyFactory::createTranslator(QObject *parent)
-{
- QTranslator *translator = new QTranslator(parent);
- QString locale = Qmmp::systemLanguageID();
- translator->load(QString(":/gnomehotkey_plugin_") + locale);
- return translator;
-}
diff --git a/src/plugins/General/gnomehotkey/gnomehotkeyfactory.h b/src/plugins/General/gnomehotkey/gnomehotkeyfactory.h
index 0210dde80..ebe082435 100644
--- a/src/plugins/General/gnomehotkey/gnomehotkeyfactory.h
+++ b/src/plugins/General/gnomehotkey/gnomehotkeyfactory.h
@@ -22,7 +22,6 @@
#include <QObject>
-#include <QTranslator>
#include <qmmpui/general.h>
#include <qmmpui/generalfactory.h>
@@ -39,8 +38,6 @@ public:
QObject *create(QObject *parent);
QDialog *createConfigDialog(QWidget *parent);
void showAbout(QWidget *parent);
- QTranslator *createTranslator(QObject *parent);
-
};
#endif