Solved: Rename: Part_Shapebuilder to Part_Builder

Discussions about the wiki documentation of FreeCAD and its translation.
Forum rules
Be nice to others! Respect the FreeCAD code of conduct!
Post Reply
vocx
Veteran
Posts: 5197
Joined: Thu Oct 18, 2018 9:18 pm

Solved: Rename: Part_Shapebuilder to Part_Builder

Post by vocx »

The Part_Shapebuilder page should be renamed to Part_Builder.

The name of the wiki page must match the sWhatsThis value.

https://github.com/FreeCAD/FreeCAD/blob ... 1537-L1549

Code: Select all

DEF_STD_CMD_A(CmdPartBuilder)

CmdPartBuilder::CmdPartBuilder()
  :Command("Part_Builder")
{
    sAppModule    = "Part";
    sGroup        = QT_TR_NOOP("Part");
    sMenuText     = QT_TR_NOOP("Shape builder...");
    sToolTipText  = QT_TR_NOOP("Advanced utility to create shapes");
    sWhatsThis    = "Part_Builder";
    sStatusTip    = sToolTipText;
    sPixmap       = "Part_Shapebuilder";
}
The icon name is "Part_Shapebuilder", however, the command itself is named "Part_Builder", and thus the wiki page should use this same name.
Last edited by vocx on Wed Jun 03, 2020 7:44 pm, edited 1 time in total.
Always add the important information to your posts if you need help. Also see Tutorials and Video tutorials.
To support the documentation effort, and code development, your donation is appreciated: liberapay.com/FreeCAD.
renatorivo
Veteran
Posts: 2611
Joined: Tue Feb 21, 2012 8:07 pm
Location: Torino - Italy

Re: Rename: Part_Shapebuilder to Part_Builder

Post by renatorivo »

Done, even Redirect
User avatar
Kunda1
Veteran
Posts: 13434
Joined: Thu Jan 05, 2017 9:03 pm

Re: Rename: Part_Shapebuilder to Part_Builder

Post by Kunda1 »

renatorivo wrote: Thu Mar 26, 2020 9:19 pm Done, even Redirect
Missing redirect for
https://wiki.freecadweb.org/Part_Shapebuilder/es
https://wiki.freecadweb.org/Part_Shapebuilder/tr
...
haven't checked them all..

@renatorivo have you seen the script in https://forum.freecadweb.org/viewtopic. ... t=tutorial ?
Alone you go faster. Together we go farther
Please mark thread [Solved]
Want to contribute back to FC? Checkout:
'good first issues' | Open TODOs and FIXMEs | How to Help FreeCAD | How to report Bugs
renatorivo
Veteran
Posts: 2611
Joined: Tue Feb 21, 2012 8:07 pm
Location: Torino - Italy

Re: Rename: Part_Shapebuilder to Part_Builder

Post by renatorivo »

Kunda1 wrote: Thu Mar 26, 2020 9:29 pm Missing redirect for
Sorry now it should be okay
Kunda1 wrote: Thu Mar 26, 2020 9:29 pm have you seen the script....?
Seen but not yet experienced. Thanks for reminding me of this script.
Post Reply