Fixes in phrases

This commit is contained in:
Lukas Matena 2024-03-11 11:20:12 +01:00
parent b133579126
commit 9245223f85
2 changed files with 3 additions and 2 deletions

View File

@ -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);
}

View File

@ -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.;