From 77ba80dcc9bd1fdb6334ee382e20f798b9eda594 Mon Sep 17 00:00:00 2001 From: Filip Sykala - NTB T15p Date: Mon, 16 Oct 2023 11:49:53 +0200 Subject: [PATCH] Do not translate debug phrazes --- src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp index e873b2c786..1e56e1eeca 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp @@ -1431,8 +1431,8 @@ void GLGizmoSVG::draw_preview(){ count_of_points += count_points(expoly); } } - // TRN: All the three placeholders are numbers - std::string tooltip = GUI::format(_L("SVG contains %1% shapes which create %2% polygons with %3% line segments"), + // Do not translate it is only for debug + std::string tooltip = GUI::format("%1% shapes, which create %2% polygons with %3% line segments", count_of_shapes, count_of_expolygons, count_of_points); ImGui::SetTooltip("%s", tooltip.c_str()); }