┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2010-05-04 18:09:27 +0000
committerPeter Penz <[email protected]>2010-05-04 18:09:27 +0000
commit824f600ca0c27e03193a5e3cfdf34c2907c5f081 (patch)
tree3071ed43abc6c3b85bca8a48c325b65c0c49a491 /src
parent6193693d1e1f931c2eb88016c08984d73bcc3ff2 (diff)
Fix description for the "--select" option
svn path=/trunk/KDE/kdebase/apps/; revision=1122794
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 4a17c84f3..29e7fba6d 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -70,13 +70,9 @@ KDE_EXPORT int kdemain(int argc, char **argv)
KCmdLineOptions options;
- // TODO KDE SC 4.5: The string freeze is valid and no new localized strings are allowed.
- // To get in the --select option that was available in Konqueror 3, an already existing
- // string ("Document to open") is used as workaround (the --select option will most probably
- // anyhow used by applications and not by users).
- const KLocalizedString& documentToOpen = ki18nc("@info:shell", "Document to open");
- options.add("select", documentToOpen);
- options.add("+[Url]", documentToOpen);
+ options.add("select", ki18nc("@info:shell", "The files and directories passed as arguments "
+ "will be selected."));
+ options.add("+[Url]", ki18nc("@info:shell", "Document to open"));
KCmdLineArgs::addCmdLineOptions(options);
if (!DolphinApplication::start()) {