diff --git a/share/translations/keepassxc_en.ts b/share/translations/keepassxc_en.ts index 176cfa671e..c6246e38d8 100644 --- a/share/translations/keepassxc_en.ts +++ b/share/translations/keepassxc_en.ts @@ -7850,10 +7850,6 @@ Kernel: %3 %4 read password of the database from stdin - - allow app screen recordering and screenshots - - Locked databases. @@ -7973,6 +7969,10 @@ This options is deprecated, use --set-key-file instead. KeePassXC is not running. No open database to lock + + allow screenshots and app recording (Windows/macOS) + + QtIOCompressor diff --git a/src/main.cpp b/src/main.cpp index d320f6590c..0faa2c06ba 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -78,7 +78,7 @@ int main(int argc, char** argv) QCommandLineOption keyfileOption("keyfile", QObject::tr("key file of the database"), "keyfile"); QCommandLineOption pwstdinOption("pw-stdin", QObject::tr("read password of the database from stdin")); QCommandLineOption allowScreenCaptureOption("allow-screencapture", - QObject::tr("allow app screen recordering and screenshots")); + QObject::tr("allow screenshots and app recording (Windows/macOS)")); QCommandLineOption helpOption = parser.addHelpOption(); QCommandLineOption versionOption = parser.addVersionOption(); @@ -89,10 +89,7 @@ int main(int argc, char** argv) parser.addOption(keyfileOption); parser.addOption(pwstdinOption); parser.addOption(debugInfoOption); - - if (osUtils->canPreventScreenCapture()) { - parser.addOption(allowScreenCaptureOption); - } + parser.addOption(allowScreenCaptureOption); parser.process(app);