From 4c96453d88e8820d410693c664e8daf7e3b17cb5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=A9rald=20NICOLAS?= Date: Tue, 5 Oct 2021 17:43:16 +0200 Subject: [PATCH] Traduction --- src/XGUI/XGUI_InspectionPanel.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); -- 2.39.2