aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/streambrowser
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/streambrowser')
-rw-r--r--src/plugins/General/streambrowser/streambrowserfactory.cpp9
-rw-r--r--src/plugins/General/streambrowser/streambrowserfactory.h2
2 files changed, 1 insertions, 10 deletions
diff --git a/src/plugins/General/streambrowser/streambrowserfactory.cpp b/src/plugins/General/streambrowser/streambrowserfactory.cpp
index 8c4b53fbe..4cdbd12cc 100644
--- a/src/plugins/General/streambrowser/streambrowserfactory.cpp
+++ b/src/plugins/General/streambrowser/streambrowserfactory.cpp
@@ -28,6 +28,7 @@ const GeneralProperties StreamBrowserFactory::properties() const
GeneralProperties properties;
properties.name = tr("Stream Browser Plugin");
properties.shortName = "streambrowser";
+ properties.translation = QLatin1String(":/streambrowser_plugin_");
properties.hasAbout = true;
properties.hasSettings = false;
properties.visibilityControl = false;
@@ -52,11 +53,3 @@ void StreamBrowserFactory::showAbout(QWidget *parent)
tr("This plugin allows one to add stream from IceCast stream directory")+"\n"+
tr("Written by: Ilya Kotov <forkotov02@ya.ru>"));
}
-
-QTranslator *StreamBrowserFactory::createTranslator(QObject *parent)
-{
- QTranslator *translator = new QTranslator(parent);
- QString locale = Qmmp::systemLanguageID();
- translator->load(QString(":/streambrowser_plugin_") + locale);
- return translator;
-}
diff --git a/src/plugins/General/streambrowser/streambrowserfactory.h b/src/plugins/General/streambrowser/streambrowserfactory.h
index fcaba574c..320bb77ba 100644
--- a/src/plugins/General/streambrowser/streambrowserfactory.h
+++ b/src/plugins/General/streambrowser/streambrowserfactory.h
@@ -24,7 +24,6 @@
@author Ilya Kotov <forkotov02@ya.ru>
*/
#include <QObject>
-#include <QTranslator>
#include <QDialog>
#include <qmmpui/general.h>
@@ -40,7 +39,6 @@ public:
QObject *create(QObject *parent);
QDialog *createConfigDialog(QWidget *parent);
void showAbout(QWidget *parent);
- QTranslator *createTranslator(QObject *parent);
};
#endif