+ auto othersGrp = new QGroupBox(_("Potential workarounds"));
+ mSyncEncChk = new QCheckBox (_("Block Outlook during encrypt / sign"));
+ mSyncDecChk = new QCheckBox (_("Block Outlook during decrypt / verify"));
+
+ auto othersLay = new QVBoxLayout(othersGrp);
+ othersLay->addWidget(mSyncDecChk);
+ othersLay->addWidget(mSyncEncChk);
+
+ baseLay->addWidget(othersGrp);
+
+ auto bugReportLabel = new QLabel(QStringLiteral("<a href=\"https://www.gpg4win.org/reporting-bugs.html\">%1</a>").arg(_("How to report a problem?")));