diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-01-23 18:47:15 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-01-23 18:47:15 +0000 |
| commit | c154161f2bcdf0ad1b9b194464b0e2de3dc2c4c5 (patch) | |
| tree | 45a05af6a9ca813edb16810bfbd7f0cf1276cc23 /src/app/builtincommandlineoption.cpp | |
| parent | 06552c3c142f2c1bebb7d8f54a743bc08963cc25 (diff) | |
| download | qmmp-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/app/builtincommandlineoption.cpp')
| -rw-r--r-- | src/app/builtincommandlineoption.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/app/builtincommandlineoption.cpp b/src/app/builtincommandlineoption.cpp index 50e834f05..6f8fae9c4 100644 --- a/src/app/builtincommandlineoption.cpp +++ b/src/app/builtincommandlineoption.cpp @@ -56,19 +56,19 @@ bool BuiltinCommandLineOption::identify(const QString &str) const const QString BuiltinCommandLineOption::helpString() const { return QString( - "-e, --enqueue "+tr("Don't clear the playlist") + "\n" + - "-p, --play "+tr("Start playing current song")+"\n" + - "-u, --pause "+tr("Pause current song")+ "\n" - "-t, --play-pause "+tr("Pause if playing, play otherwise")+ "\n" - "-s, --stop "+tr("Stop current song")+ "\n" + - "-j, --jump-to-file "+tr("Display Jump to File dialog")+ "\n" + - "-q, --quit "+tr("Quit application") + "\n" + - "--volume <0..100> "+tr("Set playback volume (example: qmmp --volume 20)") + "\n" - "--next "+tr("Skip forward in playlist")+ "\n" + - "--previous "+tr("Skip backwards in playlist")+"\n" + - "--toggle-visibility "+tr("Show/hide application")+ "\n" + - "--add-file "+tr("Display Add File dialog")+ "\n" + - "--add-dir "+tr("Display Add Directory dialog") + "-e, --enqueue "+tr("Don't clear the playlist") + "\n" + + "-p, --play "+tr("Start playing current song")+"\n" + + "-u, --pause "+tr("Pause current song")+ "\n" + "-t, --play-pause "+tr("Pause if playing, play otherwise")+ "\n" + "-s, --stop "+tr("Stop current song")+ "\n" + + "-j, --jump-to-file "+tr("Display Jump to File dialog")+ "\n" + + "-q, --quit "+tr("Quit application") + "\n" + + "--volume <0..100> "+tr("Set playback volume (example: qmmp --volume 20)") + "\n" + "--next "+tr("Skip forward in playlist")+ "\n" + + "--previous "+tr("Skip backwards in playlist")+"\n" + + "--toggle-visibility "+tr("Show/hide application")+ "\n" + + "--add-file "+tr("Display Add File dialog")+ "\n" + + "--add-dir "+tr("Display Add Directory dialog") ); } |
