From 19ed899304622860f14e31f45e9cab83963295c7 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Thu, 10 Oct 2013 07:17:34 +0000 Subject: rgscan: added description, removed useless code git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3764 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/rgscan/rgscanfactory.cpp | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'src/plugins/General/rgscan/rgscanfactory.cpp') diff --git a/src/plugins/General/rgscan/rgscanfactory.cpp b/src/plugins/General/rgscan/rgscanfactory.cpp index 8d1099818..f0d31ab53 100644 --- a/src/plugins/General/rgscan/rgscanfactory.cpp +++ b/src/plugins/General/rgscan/rgscanfactory.cpp @@ -25,8 +25,8 @@ const GeneralProperties RGScanFactory::properties() const { GeneralProperties properties; - properties.name = tr("ReplayGain Scaner"); - properties.shortName = "rgscaner"; + properties.name = tr("ReplayGain Scanner Plugin"); + properties.shortName = "rgscan"; properties.hasAbout = true; properties.hasSettings = false; properties.visibilityControl = false; @@ -46,11 +46,15 @@ QDialog *RGScanFactory::createConfigDialog(QWidget *parent) void RGScanFactory::showAbout(QWidget *parent) { - /*QMessageBox::about (parent, tr("About Converter Plugin"), - tr("Qmmp Converter Plugin")+"\n"+ - tr("This plugin converts supported audio files to other file formats " - "using external command-line encoders") +"\n"+ - tr("Written by: Ilya Kotov "));*/ + QMessageBox::about (parent, tr("About ReplayGain Scanner Plugin"), + tr("ReplayGain Scanner Plugin for Qmmp")+"\n"+ + tr("This plugin scans audio files and gives information for volume normalization") + "\n" + + tr("Written by: Ilya Kotov ") + "\n" + + tr("Based on source code by:") + "\n" + + tr("David Robinson ") + "\n" + + tr("Glen Sawyer ") + "\n" + + tr("Frank Klemm")); + } QTranslator *RGScanFactory::createTranslator(QObject *parent) @@ -61,4 +65,4 @@ QTranslator *RGScanFactory::createTranslator(QObject *parent) return translator; } -Q_EXPORT_PLUGIN2(rgscaner, RGScanFactory) +Q_EXPORT_PLUGIN2(rgscan, RGScanFactory) -- cgit v1.2.3-13-gbd6f