1
0
mirror of https://invent.kde.org/system/dolphin synced 2024-07-04 17:30:55 +00:00

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.
This commit is contained in:
ivan tkachenko 2022-11-17 00:50:16 +03:00
parent 80522b1cd0
commit a19f29f4e5
No known key found for this signature in database
GPG Key ID: AF72731B7C654CB3

View 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);