From 1b90abe64085f09c3a913e063b486f2e9a1fe44a Mon Sep 17 00:00:00 2001 From: "qing.zhang" Date: Thu, 23 Jan 2025 18:21:14 +0800 Subject: [PATCH] ENH: translate Jira: none Signed-off-by: qing.zhang Change-Id: I2ed88be363eb5f1bd8a35269d669f3947d46e7f4 (cherry picked from commit 0e21d762be12a352be7c3e0411a71dcebcbf270c) --- src/slic3r/GUI/GLCanvas3D.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index d3e311801e..579333f012 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -1467,9 +1467,9 @@ static std::pair construct_extruder_unprintable_error(ObjectFilament std::string nozzle_name = nozzle_name_list[idx]; std::string model_prefix; if ((idx == 0 && left_unprintable_objects.size() > 1) || (idx == 1 && right_unprintable_objects.size() > 1)) - model_prefix = (boost::format(_u8L("The position or size of some models exceed the %s's printable range.")) % nozzle_name).str(); + model_prefix = (boost::format(_u8L("The position or size of some models exceeds the %s's printable range.")) % nozzle_name).str(); else - model_prefix = (boost::format(_u8L("The position or size of the model %s exceed the %s's printable range.")) + model_prefix = (boost::format(_u8L("The position or size of the model %s exceeds the %s's printable range.")) %object_result.object_filaments.front().object->name % nozzle_name).str(); tips[idx] += model_prefix;