]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/XGUI/XGUI_DeflectionDialog.cpp
Salome HOME
Issue #1735: Names in deflection dialog box.
[modules/shaper.git] / src / XGUI / XGUI_DeflectionDialog.cpp
index 4ce9dcfd6e895ffc22870df08d4cd986c94535b4..60ebe7a92be8657b82c4c8ae9f640b111033993e 100755 (executable)
 XGUI_DeflectionDialog::XGUI_DeflectionDialog(QWidget* theParent)
   : QDialog(theParent)
 {
-  setWindowTitle("Deflection");
+  setWindowTitle(tr("Deflection"));
   QGridLayout* aLay = new QGridLayout(this);
 
   myDeflection = new ModuleBase_DoubleSpinBox(this);
   myDeflection->setDecimals(12);
   myDeflection->setRange(0, 1);
   myDeflection->setSingleStep(0.001);
-  aLay->addWidget(new QLabel("Deviation", this), 0, 0);
+  aLay->addWidget(new QLabel(tr("Deflection value"), this), 0, 0);
   aLay->addWidget(myDeflection, 0, 1);
 
   QDialogButtonBox* aButtons = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel,