aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/CommandLineOptions
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-01-23 18:47:15 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-01-23 18:47:15 +0000
commitc154161f2bcdf0ad1b9b194464b0e2de3dc2c4c5 (patch)
tree45a05af6a9ca813edb16810bfbd7f0cf1276cc23 /src/plugins/CommandLineOptions
parent06552c3c142f2c1bebb7d8f54a743bc08963cc25 (diff)
downloadqmmp-c154161f2bcdf0ad1b9b194464b0e2de3dc2c4c5.tar.gz
qmmp-c154161f2bcdf0ad1b9b194464b0e2de3dc2c4c5.tar.bz2
qmmp-c154161f2bcdf0ad1b9b194464b0e2de3dc2c4c5.zip
fixed '--help' output
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2561 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/CommandLineOptions')
-rw-r--r--src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.cpp6
-rw-r--r--src/plugins/CommandLineOptions/SeekOption/seekoption.cpp6
-rw-r--r--src/plugins/CommandLineOptions/StatusOption/statusoption.cpp6
3 files changed, 9 insertions, 9 deletions
diff --git a/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.cpp b/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.cpp
index 5384bcb39..d34e53e56 100644
--- a/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.cpp
+++ b/src/plugins/CommandLineOptions/IncDecVolumeOption/incdecvolumeoption.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2010 by Ilya Kotov *
+ * Copyright (C) 2008-2012 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -41,8 +41,8 @@ bool IncDecVolumeCommandLineOption::identify(const QString & str) const
const QString IncDecVolumeCommandLineOption::helpString() const
{
return QString(
- "--volume-inc " + tr("Increase volume with step 5")+"\n"
- "--volume-dec " + tr("Decrease volume with step 5")+"\n"
+ "--volume-inc " + tr("Increase volume with step 5")+"\n"
+ "--volume-dec " + tr("Decrease volume with step 5")+"\n"
);
}
diff --git a/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp b/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp
index e8dbacd30..59382bdea 100644
--- a/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp
+++ b/src/plugins/CommandLineOptions/SeekOption/seekoption.cpp
@@ -35,9 +35,9 @@ bool SeekOption::identify(const QString &str) const
const QString SeekOption::helpString() const
{
QString help;
- help += QString("--seek <time> ") + tr("Seek to position in the current track") + "\n";
- help += QString("--seek-fwd <time> ") + tr("Seek forward") + "\n";
- help += QString("--seek-bwd <time> ") + tr("Seek backwards") + "\n";
+ help += QString("--seek <time> ") + tr("Seek to position in the current track") + "\n";
+ help += QString("--seek-fwd <time> ") + tr("Seek forward") + "\n";
+ help += QString("--seek-bwd <time> ") + tr("Seek backwards") + "\n";
return help;
}
diff --git a/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp b/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp
index 2a46c076a..bf878e549 100644
--- a/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp
+++ b/src/plugins/CommandLineOptions/StatusOption/statusoption.cpp
@@ -36,10 +36,10 @@ bool StatusOption::identify(const QString &str) const
const QString StatusOption::helpString() const
{
QString help;
- help += QString("--status ") + tr("Print playback status") + "\n";
- help += QString("--nowplaying <fmt> ")
+ help += QString("--status ") + tr("Print playback status") + "\n";
+ help += QString("--nowplaying <fmt> ")
+ tr("Print formatted track name (example: qmmp --nowplaying \"%t - %a\")") + "\n";
- help += QString("--nowplaying-syntax ") + tr("Print --nowplaying syntax") + "\n";
+ help += QString("--nowplaying-syntax ") + tr("Print --nowplaying syntax") + "\n";
return help;
}