From 17d797772421e511d3bf397c0090ea1af2aa5b03 Mon Sep 17 00:00:00 2001 From: Ladislav Foldyna Date: Thu, 30 Nov 2023 12:37:30 +0100 Subject: [PATCH] Fixed #275 - Minor rewording --- core/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/main.cpp b/core/main.cpp index 4d7c0281..ee44df24 100644 --- a/core/main.cpp +++ b/core/main.cpp @@ -374,12 +374,12 @@ int main(int argc, char* argv[]) QCommandLineOption environmentName(QStringList() << "n" << "namespace", QCoreApplication::translate("main", "Run with the specific namespace."), QCoreApplication::translate("main", "namespace")); - QCommandLineOption translationFilename(QStringList() << "t" << "translation_file", - QCoreApplication::translate("main", "Path to the translation file"), - QCoreApplication::translate("main", "translation filename")); + QCommandLineOption translationFilename(QStringList() << "t" << "translation", + QCoreApplication::translate("main", "Translation file - absolute or relative path and QM file name."), + QCoreApplication::translate("main", "path/QM-filename")); QCommandLineOption forceLanguage(QStringList() << "l" << "language", - QCoreApplication::translate("main", "Overwrite language"), - QCoreApplication::translate("main", "language code")); + QCoreApplication::translate("main", "Set language. example: 'en' or 'en_US'. Ignore environment setting."), + QCoreApplication::translate("main", "code")); parser.addOption(environmentName); parser.addOption(translationFilename);