Part: Fix translation bug in FaceMaker

This commit is contained in:
Chris Hennes
2024-01-22 12:14:54 -06:00
parent 6dda56117a
commit 84380b3a56
5 changed files with 11 additions and 10 deletions

View File

@@ -244,12 +244,12 @@ TopoDS_Shape FaceMakerCheese::makeFace(const std::vector<TopoDS_Wire>& w)
std::string FaceMakerCheese::getUserFriendlyName() const
{
return {QT_TRANSLATE_NOOP("Part_FaceMaker","Cheese facemaker")};
return {tr("Cheese facemaker").toStdString()};
}
std::string FaceMakerCheese::getBriefExplanation() const
{
return {QT_TRANSLATE_NOOP("Part_FaceMaker","Supports making planar faces with holes, but no islands inside holes.")};
return {tr("Supports making planar faces with holes, but no islands inside holes.").toStdString()};
}
void FaceMakerCheese::Build_Essence()