diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-07-21 14:38:08 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-07-21 14:38:08 +0000 |
| commit | 0006966c0f307ec7dff51130ce26bbe3c7061418 (patch) | |
| tree | a9a760770de8b91c543e1308392bf2ec9e926a58 /src/plugins/Effect/stereo/effectstereofactory.cpp | |
| parent | 20967c016b4c63b75cb0af2b0f3ccc006addd6df (diff) | |
| download | qmmp-0006966c0f307ec7dff51130ce26bbe3c7061418.tar.gz qmmp-0006966c0f307ec7dff51130ce26bbe3c7061418.tar.bz2 qmmp-0006966c0f307ec7dff51130ce26bbe3c7061418.zip | |
changed translation api
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8196 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Effect/stereo/effectstereofactory.cpp')
| -rw-r--r-- | src/plugins/Effect/stereo/effectstereofactory.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/plugins/Effect/stereo/effectstereofactory.cpp b/src/plugins/Effect/stereo/effectstereofactory.cpp index 4c87179d8..105f23139 100644 --- a/src/plugins/Effect/stereo/effectstereofactory.cpp +++ b/src/plugins/Effect/stereo/effectstereofactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2015 by Ilya Kotov * + * Copyright (C) 2009-2018 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,7 +18,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <QTranslator> #include <QMessageBox> #include <qmmp/qmmp.h> #include "effectstereofactory.h" @@ -30,6 +29,7 @@ const EffectProperties EffectStereoFactory::properties() const EffectProperties properties; properties.name = tr("Extra Stereo Plugin"); properties.shortName = "stereo"; + properties.translation = QLatin1String(":/stereo_plugin_"); properties.hasSettings = true; properties.hasAbout = true; return properties; @@ -53,11 +53,3 @@ void EffectStereoFactory::showAbout(QWidget *parent) tr("Written by: Ilya Kotov <forkotov02@ya.ru>")+"\n"+ tr("Based on the Extra Stereo Plugin for Xmms by Johan Levin")); } - -QTranslator *EffectStereoFactory::createTranslator(QObject *parent) -{ - QTranslator *translator = new QTranslator(parent); - QString locale = Qmmp::systemLanguageID(); - translator->load(QString(":/stereo_plugin_") + locale); - return translator; -} |
