From: Agnibho Mondal Date: Tue, 7 Nov 2023 19:21:28 +0000 (+0530) Subject: Clearer names for menu options X-Git-Tag: v0.5~49 X-Git-Url: https://code.agnibho.com/repo?a=commitdiff_plain;h=62a4fe9d8f4f55421881e1539e3246e00235d894;p=medscript.git Clearer names for menu options --- diff --git a/window.py b/window.py index 2cc3f59..940c54e 100644 --- a/window.py +++ b/window.py @@ -527,15 +527,15 @@ class MainWindow(QMainWindow): self.preset_additional=Preset("additional") self.preset_certificate=Preset("certificate") - action_new=QAction("New", self) + action_new=QAction("New File", self) action_new.setShortcut("Ctrl+N") action_new.triggered.connect(self.cmd_new) - action_open=QAction("Open", self) + action_open=QAction("Open File", self) action_open2=QAction(icon_open, "Open", self) action_open.setShortcut("Ctrl+O") action_open.triggered.connect(self.cmd_open) action_open2.triggered.connect(self.cmd_open) - action_save=QAction("Save", self) + action_save=QAction("Save File", self) action_save2=QAction(icon_save, "Save", self) action_save.setShortcut("Ctrl+S") action_save.triggered.connect(self.cmd_save) @@ -543,44 +543,44 @@ class MainWindow(QMainWindow): action_save_as=QAction("Save As", self) action_save_as.setShortcut("Ctrl+Shift+S") action_save_as.triggered.connect(self.cmd_save_as) - action_refresh=QAction("Refresh", self) + action_refresh=QAction("Refresh Interface", self) action_refresh.setShortcut("F5") action_refresh2=QAction(icon_refresh, "Refresh", self) action_refresh.triggered.connect(self.cmd_refresh) action_refresh2.triggered.connect(self.cmd_refresh) - action_quit=QAction("Quit", self) + action_quit=QAction("Quit MedScript", self) action_quit.setShortcut("Ctrl+Q") action_quit.triggered.connect(self.cmd_quit) - action_render=QAction("Render", self) + action_render=QAction("Render Prescription", self) action_render.setShortcut("Ctrl+R") action_render2=QAction(icon_render, "Render", self) action_render.triggered.connect(self.cmd_render) action_render2.triggered.connect(self.cmd_render) - action_sign=QAction("Sign", self) + action_sign=QAction("Sign Prescription", self) action_sign.triggered.connect(self.cmd_sign) - action_unsign=QAction("Unsign", self) + action_unsign=QAction("Delete Signature", self) action_unsign.triggered.connect(self.cmd_unsign) - action_verify=QAction("Verify", self) + action_verify=QAction("Verify Signature", self) action_verify.triggered.connect(self.cmd_verify) - action_configuration=QAction("Configuration", self) + action_configuration=QAction("Edit Configuration", self) action_configuration.triggered.connect(self.cmd_configuration) - action_prescriber=QAction("Prescriber", self) + action_prescriber=QAction("Current Prescriber", self) action_prescriber.triggered.connect(self.cmd_prescriber) - action_switch=QAction("Switch", self) + action_switch=QAction("Select Prescriber", self) action_switch.triggered.connect(self.cmd_switch) - action_preset=QAction("Preset", self) + action_preset=QAction("Edit Presets", self) action_preset.triggered.connect(self.cmd_preset) - action_installer=QAction("Installer", self) + action_installer=QAction("Package Installer", self) action_installer.triggered.connect(self.cmd_installer) - action_tabular=QAction("Tabular", self) + action_tabular=QAction("Export Spreadsheet", self) action_tabular.triggered.connect(self.cmd_tabular) - action_index=QAction("Index", self) + action_index=QAction("Show Index", self) action_index.triggered.connect(self.cmd_index) - action_update=QAction("Update", self) + action_update=QAction("Check Update", self) action_update.triggered.connect(self.cmd_update) - action_about=QAction("About", self) + action_about=QAction("About MedScript", self) action_about.triggered.connect(self.cmd_about) - action_help=QAction("Help", self) + action_help=QAction("Show Help", self) action_help.setShortcut("F1") action_help.triggered.connect(self.cmd_help)