</message>
<message>
<source>GEOM_SCALE_DIMENSIONS</source>
- <translation>Length unit in the file is not a 'meter'. Do you want to scale a model?</translation>
+ <translation>Would you like to take into account the units?
+Otherwise the dimensions will be kept without modifications.</translation>
</message>
</context>
<context>
needConvert = aUnitName.SubString( 6, aUnitName.Length() ) != "M";
if ( needConvert ) {
- if ( igesAnswer == SUIT_MessageBox::YesToAll ) {
+ if ( igesAnswer == SUIT_MessageBox::NoToAll ) {
// converting for all files is already approved
fileT = "IGES_SCALE";
}
- else if ( igesAnswer != SUIT_MessageBox::NoToAll ) {
+ else if ( igesAnswer != SUIT_MessageBox::YesToAll ) {
SUIT_MessageBox::StandardButtons btns = SUIT_MessageBox::Yes | SUIT_MessageBox::No;
if ( i < fileNames.count()-1 ) btns = btns | SUIT_MessageBox::YesToAll | SUIT_MessageBox::NoToAll;
igesAnswer = SUIT_MessageBox::question( app->desktop(),
return false; // cancel (break) import operation
case SUIT_MessageBox::Yes:
case SUIT_MessageBox::YesToAll:
- fileT = "IGES_SCALE";
break; // scaling is confirmed
case SUIT_MessageBox::No:
case SUIT_MessageBox::NoAll:
+ fileT = "IGES_SCALE";
default:
break; // scaling is rejected
} // switch ( igesAnswer )