From af9c0cca23cf812f158f48928ff74085184c6d33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Allan=20Nordh=C3=B8y?= Date: Fri, 28 Jul 2017 02:42:35 +0200 Subject: [PATCH] display, URLs, esc ' --- src/app/cmdoptions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/cmdoptions.cpp b/src/app/cmdoptions.cpp index 8e9dc919b..c01faefa2 100644 --- a/src/app/cmdoptions.cpp +++ b/src/app/cmdoptions.cpp @@ -523,7 +523,7 @@ QString makeUsage(const QString &prgName) stream << QObject::tr("Options:") << '\n'; #ifndef Q_OS_WIN - stream << SHOW_VERSION_OPTION.usage() << wrapText(QObject::tr("Displays program version and exit")) << '\n'; + stream << SHOW_VERSION_OPTION.usage() << wrapText(QObject::tr("Display program version and exit")) << '\n'; #endif stream << SHOW_HELP_OPTION.usage() << wrapText(QObject::tr("Displays this help message and exit")) << '\n'; stream << WEBUI_PORT_OPTION.usage(QObject::tr("port")) @@ -544,7 +544,7 @@ QString makeUsage(const QString &prgName) "to the profile directory")) << '\n'; stream << PORTABLE_OPTION.usage() << wrapText(QObject::tr("Shortcut for --profile=/profile --relative-fastresume")) << '\n'; - stream << Option::padUsageText(QObject::tr("files or urls")) + stream << Option::padUsageText(QObject::tr("files or URLs")) << wrapText(QObject::tr("Downloads the torrents passed by the user")) << '\n' << '\n'; @@ -553,7 +553,7 @@ QString makeUsage(const QString &prgName) stream << PAUSED_OPTION.usage() << wrapText(QObject::tr("Add torrents as started or paused")) << '\n'; stream << SKIP_HASH_CHECK_OPTION.usage() << wrapText(QObject::tr("Skip hash check")) << '\n'; stream << CATEGORY_OPTION.usage(QObject::tr("name")) - << wrapText(QObject::tr("Assign torrents to category. If the category doesn't exist, it will be " + << wrapText(QObject::tr("Assign torrents to category. If the category doesn\'t exist, it will be " "created.")) << '\n'; stream << SEQUENTIAL_OPTION.usage() << wrapText(QObject::tr("Download files in sequential order")) << '\n'; stream << FIRST_AND_LAST_OPTION.usage()