diff --git a/src/Gui/CommandStd.cpp b/src/Gui/CommandStd.cpp index 37f69589e4..d408fc1267 100644 --- a/src/Gui/CommandStd.cpp +++ b/src/Gui/CommandStd.cpp @@ -134,7 +134,7 @@ StdCmdRecentFiles::StdCmdRecentFiles() :Command("Std_RecentFiles") { sGroup = "File"; - sMenuText = QT_TR_NOOP("Recent files"); + sMenuText = QT_TR_NOOP("Open Recent"); sToolTipText = QT_TR_NOOP("Recent file list"); sWhatsThis = "Std_RecentFiles"; sStatusTip = QT_TR_NOOP("Recent file list"); diff --git a/src/Gui/Workbench.cpp b/src/Gui/Workbench.cpp index e94a3e9fc9..35526d27c4 100644 --- a/src/Gui/Workbench.cpp +++ b/src/Gui/Workbench.cpp @@ -625,12 +625,12 @@ MenuItem* StdWorkbench::setupMenuBar() const // File auto file = new MenuItem( menuBar ); file->setCommand("&File"); - *file << "Std_New" << "Std_Open" << "Separator" << "Std_CloseActiveWindow" + *file << "Std_New" << "Std_Open" << "Std_RecentFiles" << "Separator" << "Std_CloseActiveWindow" << "Std_CloseAllWindows" << "Separator" << "Std_Save" << "Std_SaveAs" << "Std_SaveCopy" << "Std_SaveAll" << "Std_Revert" << "Separator" << "Std_Import" << "Std_Export" << "Std_MergeProjects" << "Std_ProjectInfo" << "Separator" << "Std_Print" << "Std_PrintPreview" << "Std_PrintPdf" - << "Separator" << "Std_RecentFiles" << "Separator" << "Std_Quit"; + << "Separator" << "Std_Quit"; // Edit auto edit = new MenuItem( menuBar );