Mesh: Crowdin: fix typo in translation [skip ci]

ref: https://crowdin.com/translate/freecad/561/en-en?filter=basic&value=0#6585564
This commit is contained in:
luz paz
2021-02-21 20:06:00 -05:00
committed by wwmayer
parent f39002fb07
commit d761c9d2c0

View File

@@ -107,7 +107,7 @@ void CmdMeshTransform::activated(int)
std::string fName = getUniqueObjectName("Move");
std::vector<Gui::SelectionSingleton::SelObj> cSel = getSelection().getSelection();
openCommand(QT_TRANSLATE_NOOP("Command", "Mesh Mesh Create"));
openCommand(QT_TRANSLATE_NOOP("Command", "Mesh Create"));
doCommand(Doc,"App.activeDocument().addObject(\"Mesh::Transform\",\"%s\")",fName.c_str());
doCommand(Doc,"App.activeDocument().%s.Source = App.activeDocument().%s",fName.c_str(),cSel[0].FeatName);
doCommand(Gui,"Gui.hide(\"%s\")",cSel[0].FeatName);
@@ -146,7 +146,7 @@ void CmdMeshDemolding::activated(int)
std::string fName = getUniqueObjectName("Demolding");
std::vector<Gui::SelectionSingleton::SelObj> cSel = getSelection().getSelection();
openCommand(QT_TRANSLATE_NOOP("Command", "Mesh Mesh Create"));
openCommand(QT_TRANSLATE_NOOP("Command", "Mesh Create"));
doCommand(Doc,"App.activeDocument().addObject(\"Mesh::TransformDemolding\",\"%s\")",fName.c_str());
doCommand(Doc,"App.activeDocument().%s.Source = App.activeDocument().%s",fName.c_str(),cSel[0].FeatName);
doCommand(Gui,"Gui.hide(\"%s\")",cSel[0].FeatName);