]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Fix description for the "--select" option
authorPeter Penz <peter.penz19@gmail.com>
Tue, 4 May 2010 18:09:27 +0000 (18:09 +0000)
committerPeter Penz <peter.penz19@gmail.com>
Tue, 4 May 2010 18:09:27 +0000 (18:09 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=1122794

src/main.cpp

index 4a17c84f385b21c65ccd2324e4baca89d74591a9..29e7fba6d8834631df8d429c99074f2ea85f63f9 100644 (file)
@@ -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()) {