[Solved] Rename Std_MergeProject to Std_MergeProjects?

Discussions about the wiki documentation of FreeCAD and its translation.
Forum rules
Be nice to others! Respect the FreeCAD code of conduct!
Post Reply
User avatar
Roy_043
Veteran
Posts: 8578
Joined: Thu Dec 27, 2018 12:28 pm

[Solved] Rename Std_MergeProject to Std_MergeProjects?

Post by Roy_043 »

The command is called Std_MergeProjects. The page is called Std_MergeProject, without the ending 's'.
Last edited by Kunda1 on Wed Feb 26, 2020 4:50 pm, edited 1 time in total.
Reason: Marked [Solved]
vocx
Veteran
Posts: 5197
Joined: Thu Oct 18, 2018 9:18 pm

Re: Rename Std_MergeProject to Std_MergeProjects?

Post by vocx »

Reference https://github.com/FreeCAD/FreeCAD/blob ... #L323-L334

Code: Select all

DEF_STD_CMD_A(StdCmdMergeProjects)

StdCmdMergeProjects::StdCmdMergeProjects()
  : Command("Std_MergeProjects")
{
    sAppModule    = "File";
    sGroup        = QT_TR_NOOP("File");
    sMenuText     = QT_TR_NOOP("Merge project...");
    sToolTipText  = QT_TR_NOOP("Merge project");
    sWhatsThis    = "Std_MergeProjects";
    sStatusTip    = QT_TR_NOOP("Merge project");
}
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.
User avatar
Kunda1
Veteran
Posts: 13434
Joined: Thu Jan 05, 2017 9:03 pm

Re: [Solved] Rename Std_MergeProject to Std_MergeProjects?

Post by Kunda1 »

Done + along with language redirects
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
User avatar
Roy_043
Veteran
Posts: 8578
Joined: Thu Dec 27, 2018 12:28 pm

Re: [Solved] Rename Std_MergeProject to Std_MergeProjects?

Post by Roy_043 »

@Kunda1: Thank you.
renatorivo
Veteran
Posts: 2611
Joined: Tue Feb 21, 2012 8:07 pm
Location: Torino - Italy

Re: [Solved] Rename Std_MergeProject to Std_MergeProjects?

Post by renatorivo »

Roy_043 wrote: Wed Feb 26, 2020 7:11 pm @Kunda1: Thank you.
+1

Are we sure that all these redirects are a good solution? I would prefer reduce them to the minimum possible.
User avatar
Kunda1
Veteran
Posts: 13434
Joined: Thu Jan 05, 2017 9:03 pm

Re: [Solved] Rename Std_MergeProject to Std_MergeProjects?

Post by Kunda1 »

renatorivo wrote: Wed Feb 26, 2020 8:46 pm Are we sure that all these redirects are a good solution? I would prefer reduce them to the minimum possible.
Well it may be good to follow up and change the the links so they don't use the redirect. There is an option in pywikibot to look at the pages of links of 'what links here'. And that would be the way to clean up those links...but the regular expression (regex) needed for this would need to be thought of and tested.,.which I haven't done with pywikibot yet
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
Post Reply