aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/hal
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/hal')
-rw-r--r--src/plugins/General/hal/halfactory.cpp10
-rw-r--r--src/plugins/General/hal/halfactory.h4
2 files changed, 1 insertions, 13 deletions
diff --git a/src/plugins/General/hal/halfactory.cpp b/src/plugins/General/hal/halfactory.cpp
index cbdd0d825..6046ba105 100644
--- a/src/plugins/General/hal/halfactory.cpp
+++ b/src/plugins/General/hal/halfactory.cpp
@@ -18,7 +18,6 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-
#include <QMessageBox>
#include <qmmp/qmmp.h>
#include "settingsdialog.h"
@@ -30,6 +29,7 @@ const GeneralProperties HalFactory::properties() const
GeneralProperties properties;
properties.name = tr("HAL Plugin");
properties.shortName = "hal";
+ properties.translation = QLatin1String(":/hal_plugin_");
properties.hasAbout = true;
properties.hasSettings = true;
properties.visibilityControl = false;
@@ -54,11 +54,3 @@ void HalFactory::showAbout(QWidget *parent)
tr("Written by: Ilya Kotov <forkotov02@ya.ru>") + "\n" +
tr("Based on Solid (KDE hardware library)"));
}
-
-QTranslator *HalFactory::createTranslator(QObject *parent)
-{
- QTranslator *translator = new QTranslator(parent);
- QString locale = Qmmp::systemLanguageID();
- translator->load(QString(":/hal_plugin_") + locale);
- return translator;
-}
diff --git a/src/plugins/General/hal/halfactory.h b/src/plugins/General/hal/halfactory.h
index 02c063993..a2b8b5ed9 100644
--- a/src/plugins/General/hal/halfactory.h
+++ b/src/plugins/General/hal/halfactory.h
@@ -24,8 +24,6 @@
@author Ilya Kotov <forkotov02@ya.ru>
*/
#include <QObject>
-#include <QTranslator>
-
#include <qmmpui/general.h>
#include <qmmpui/generalfactory.h>
@@ -39,8 +37,6 @@ public:
QObject *create(QObject *parent);
QDialog *createConfigDialog(QWidget *parent);
void showAbout(QWidget *parent);
- QTranslator *createTranslator(QObject *parent);
-
};
#endif