diff --git a/share/translations/keepassxc_en.ts b/share/translations/keepassxc_en.ts index 42a650c886..29e20cf498 100644 --- a/share/translations/keepassxc_en.ts +++ b/share/translations/keepassxc_en.ts @@ -7890,10 +7890,6 @@ Kernel: %3 %4 read password of the database from stdin - - allow app screen recordering and screenshots - - Locked databases. @@ -7956,6 +7952,10 @@ Kernel: %3 %4 Access to all entries is denied + + allow screenshots and app recording (Windows/macOS) + + QtIOCompressor diff --git a/src/main.cpp b/src/main.cpp index 3797e89981..d8ccc089be 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);