From 0006966c0f307ec7dff51130ce26bbe3c7061418 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 21 Jul 2018 14:38:08 +0000 Subject: changed translation api git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8196 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Input/gme/decodergmefactory.cpp | 10 +--------- src/plugins/Input/gme/decodergmefactory.h | 1 - 2 files changed, 1 insertion(+), 10 deletions(-) (limited to 'src/plugins/Input/gme') diff --git a/src/plugins/Input/gme/decodergmefactory.cpp b/src/plugins/Input/gme/decodergmefactory.cpp index a7c8d931a..d8de3b50b 100644 --- a/src/plugins/Input/gme/decodergmefactory.cpp +++ b/src/plugins/Input/gme/decodergmefactory.cpp @@ -18,7 +18,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include #include #include #include "settingsdialog.h" @@ -42,6 +41,7 @@ const DecoderProperties DecoderGmeFactory::properties() const properties.description = tr("Game Music Files"); //properties.contentType = ; properties.shortName = "gme"; + properties.translation = QLatin1String(":/gme_plugin_"); properties.hasAbout = true; properties.hasSettings = true; properties.noInput = true; @@ -106,11 +106,3 @@ void DecoderGmeFactory::showAbout(QWidget *parent) tr("This plugin uses Game_Music_Emu library to play game music files")+"\n"+ tr("Written by: Ilya Kotov ")); } - -QTranslator *DecoderGmeFactory::createTranslator(QObject *parent) -{ - QTranslator *translator = new QTranslator(parent); - QString locale = Qmmp::systemLanguageID(); - translator->load(QString(":/gme_plugin_") + locale); - return translator; -} diff --git a/src/plugins/Input/gme/decodergmefactory.h b/src/plugins/Input/gme/decodergmefactory.h index 12de413f2..40c738e11 100644 --- a/src/plugins/Input/gme/decodergmefactory.h +++ b/src/plugins/Input/gme/decodergmefactory.h @@ -39,7 +39,6 @@ public: MetaDataModel* createMetaDataModel(const QString &path, QObject *parent = 0); void showSettings(QWidget *parent); void showAbout(QWidget *parent); - QTranslator *createTranslator(QObject *parent); }; #endif -- cgit v1.2.3-13-gbd6f