[TD]Use correct translate function (fix 335)
- another translation cycle will need to occur before the change is apparent.
This commit is contained in:
@@ -421,9 +421,11 @@ void CmdTechDrawView::activated(int iMsg)
|
||||
// If nothing was selected, then we offer to insert SVG or Images files.
|
||||
bool dontShowAgain = hGrp->GetBool("DontShowInsertFileMessage", false);
|
||||
if (!dontShowAgain) {
|
||||
auto msgText = QObject::tr("If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file.");
|
||||
QMessageBox msgBox;
|
||||
msgBox.setText(msgBox.tr("If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file."));
|
||||
QCheckBox dontShowCheckBox(msgBox.tr("Do not show this message again"), &msgBox);
|
||||
msgBox.setText(msgText);
|
||||
auto dontShowMsg = QObject::tr("Do not show this message again");
|
||||
QCheckBox dontShowCheckBox(dontShowMsg, &msgBox);
|
||||
msgBox.setCheckBox(&dontShowCheckBox);
|
||||
QPushButton* okButton = msgBox.addButton(QMessageBox::Ok);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user