Skip to content

Commit

Permalink
Fixed #275 - Minor rewording
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Nov 30, 2023
1 parent c2f38c6 commit 17d7977
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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. <code> example: 'en' or 'en_US'. Ignore environment setting."),
QCoreApplication::translate("main", "code"));

parser.addOption(environmentName);
parser.addOption(translationFilename);
Expand Down

0 comments on commit 17d7977

Please sign in to comment.