From: GĂ©rald NICOLAS Date: Tue, 5 Oct 2021 15:43:16 +0000 (+0200) Subject: Traduction X-Git-Tag: V9_8_0a1~7 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4c96453d88e8820d410693c664e8daf7e3b17cb5;p=modules%2Fshaper.git Traduction --- diff --git a/src/XGUI/XGUI_InspectionPanel.cpp b/src/XGUI/XGUI_InspectionPanel.cpp index 58092f3bf..e48c60200 100644 --- a/src/XGUI/XGUI_InspectionPanel.cpp +++ b/src/XGUI/XGUI_InspectionPanel.cpp @@ -404,9 +404,9 @@ void XGUI_InspectionPanel::fillEdge(const GeomEdgePtr& theEdge) if (aCircle) { addStartEndPoints = aStartPnt->distance(aEndPnt) >= Precision::Confusion(); if (addStartEndPoints) - myTypeLbl->setText("Arc of circle"); + myTypeLbl->setText(tr("Arc of circle")); else - myTypeLbl->setText("Circle"); + myTypeLbl->setText(tr("Circle")); appendPointToParameters(tr("Center"), aCircle->center(), aParams); appendDirToParameters(tr("Normal"), aCircle->normal(), aParams); @@ -418,9 +418,9 @@ void XGUI_InspectionPanel::fillEdge(const GeomEdgePtr& theEdge) if (anEllipse) { addStartEndPoints = aStartPnt->distance(aEndPnt) >= Precision::Confusion(); if (addStartEndPoints) - myTypeLbl->setText("Arc of ellipse"); + myTypeLbl->setText(tr("Arc of ellipse")); else - myTypeLbl->setText("Ellipse"); + myTypeLbl->setText(tr("Ellipse")); appendPointToParameters(tr("Center"), anEllipse->center(), aParams); appendDirToParameters(tr("Normal"), anEllipse->normal(), aParams);