]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Ensure there's a dot at the end of each --help options description
authorivan tkachenko <me@ratijas.tk>
Wed, 16 Nov 2022 21:50:16 +0000 (00:50 +0300)
committerivan tkachenko <me@ratijas.tk>
Mon, 12 Dec 2022 18:19:41 +0000 (21:19 +0300)
It will help make --help output more uniform, which in turn will be used
in Tab-completions for zsh.

src/main.cpp

index 9da0c6fe81d5381dc70a67e19a0bc688399802af..a45083e400e434019321d1685db024e07c4a304a 100644 (file)
@@ -142,7 +142,7 @@ int main(int argc, char **argv)
                                                                                         "will be selected.")));
     parser.addOption(QCommandLineOption(QStringList() << QStringLiteral("split"), i18nc("@info:shell", "Dolphin will get started with a split view.")));
     parser.addOption(QCommandLineOption(QStringList() << QStringLiteral("new-window"), i18nc("@info:shell", "Dolphin will explicitly open in a new window.")));
-    parser.addOption(QCommandLineOption(QStringList() << QStringLiteral("daemon"), i18nc("@info:shell", "Start Dolphin Daemon (only required for DBus Interface)")));
+    parser.addOption(QCommandLineOption(QStringList() << QStringLiteral("daemon"), i18nc("@info:shell", "Start Dolphin Daemon (only required for DBus Interface).")));
     parser.addPositionalArgument(QStringLiteral("+[Url]"), i18nc("@info:shell", "Document to open"));
 
     parser.process(app);