Fix Text Literals for Translation

- these strings were noted as being difficult to
  translate on Crowdin
This commit is contained in:
wandererfan
2019-01-15 16:07:05 -05:00
committed by wmayer
parent bd346113cd
commit 94bd69a4fe
5 changed files with 23 additions and 21 deletions

View File

@@ -200,7 +200,7 @@ void CmdTechDrawNewDimension::activated(int iMsg)
subs.push_back(SubNames[1]);
} else {
QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Incorrect Selection"),
QObject::tr("Can't make a Dimension from this selection"));
QObject::tr("Can not make a Dimension from this selection"));
return;
}
@@ -1079,7 +1079,7 @@ bool _checkDrawViewPart(Gui::Command* cmd) {
if( !objFeat ) {
QMessageBox::warning( Gui::getMainWindow(),
QObject::tr("Incorrect selection"),
QObject::tr("No DrawViewPart in selection.") );
QObject::tr("No View of a Part in selection.") );
return false;
}
return true;
@@ -1096,7 +1096,7 @@ bool _checkPartFeature(Gui::Command* cmd) {
}
if(!result) {
QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Incorrect selection"),
QObject::tr("No DrawViewPart in selection."));
QObject::tr("No Feature with Shape in selection."));
}
return result;
}