From: ivan tkachenko Date: Wed, 16 Nov 2022 21:50:16 +0000 (+0300) Subject: Ensure there's a dot at the end of each --help options description X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/a19f29f4e5f4f942713502f56f5266937722be96?ds=inline Ensure there's a dot at the end of each --help options description It will help make --help output more uniform, which in turn will be used in Tab-completions for zsh. --- diff --git a/src/main.cpp b/src/main.cpp index 9da0c6fe8..a45083e40 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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);