From 9245223f851cd38115fe14febdf5ede4873fdac6 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 11 Mar 2024 11:20:12 +0100 Subject: [PATCH] Fixes in phrases --- src/libslic3r/Format/3mf.cpp | 2 +- src/libslic3r/PrintConfig.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/Format/3mf.cpp b/src/libslic3r/Format/3mf.cpp index e84ee5b4d5..db5c064686 100644 --- a/src/libslic3r/Format/3mf.cpp +++ b/src/libslic3r/Format/3mf.cpp @@ -1003,7 +1003,7 @@ namespace Slic3r { // We support our 3mf contains only configuration without mesh, // others MUST contain mesh (triangles and vertices). if (!m_prusaslicer_generator_version.has_value() && model.objects.empty()) { - const std::string msg = (boost::format(_u8L("3mf File (\"%1%\") do not contain valid mesh.")) % filename).str(); + const std::string msg = (boost::format(_u8L("The 3MF file does not contain a valid mesh.\n\n\"%1%\"")) % filename).str(); throw Slic3r::RuntimeError(msg); } diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 508d7e574e..ffb19ce88d 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3359,7 +3359,8 @@ void PrintConfigDef::init_fff_params() def = this->add("wipe_tower_extra_flow", coPercent); def->label = L("Extra flow for purging"); - def->tooltip = L(""); + def->tooltip = L("Extra flow used for the purging lines on the wipe tower. This makes the purging lines thicker or narrower " + "than they normally would be. The spacing is adjusted automatically."); def->sidetext = L("%"); def->mode = comExpert; def->min = 100.;