]> Softwares of Agnibho - medscript.git/commitdiff
Clearer names for menu options
authorAgnibho Mondal <mondal@agnibho.com>
Tue, 7 Nov 2023 19:21:28 +0000 (00:51 +0530)
committerAgnibho Mondal <mondal@agnibho.com>
Tue, 7 Nov 2023 20:11:15 +0000 (01:41 +0530)
window.py

index 2cc3f59386aca3628b8d142d572149123712ee10..940c54ea0f505c1f449486c6fbee95488b35a262 100644 (file)
--- 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)