aboutsummaryrefslogtreecommitdiff
path: root/menu
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-04-02 08:49:21 +0000
committerdam <dam@gudinoff>2022-04-02 08:49:21 +0000
commitb12fe534ae3f2aea74f8c8506b3ad2fea321227c (patch)
tree47afc50dcf418ca13b53da8eb1e5ef660ca44d8a /menu
parent8491abc4805cee3b2dfb74817ef8908df085c5cf (diff)
downloadsurgery-log-b12fe534ae3f2aea74f8c8506b3ad2fea321227c.tar.zst
surgery-log-b12fe534ae3f2aea74f8c8506b3ad2fea321227c.zip
Improved modal dialog messages.
Diffstat (limited to 'menu')
-rw-r--r--menu/menu.gd6
1 files changed, 3 insertions, 3 deletions
diff --git a/menu/menu.gd b/menu/menu.gd
index 021c005..6bb5de0 100644
--- a/menu/menu.gd
+++ b/menu/menu.gd
@@ -69,7 +69,7 @@ func export_option_sets_action():
func clear_option_sets_action():
- dialog.setup("Do you want to delete all option sets?", "Yes, delete.", "No")
+ dialog.setup("All option sets from the dropdown menus will be deleted.", "Yes, delete.", "No")
dialog.connect("accepted", stage, "clear_option_sets")
popup.open_popup("Clear option sets?", dialog)
@@ -85,7 +85,7 @@ func export_data_action():
func clear_data_action():
- dialog.setup("Do you want to delete all entries from the database?", "Yes, delete.", "No")
+ dialog.setup("All entries from the database will be deleted.", "Yes, delete.", "No")
dialog.connect("accepted", database, "clear_database")
popup.open_popup("Clear database?", dialog)
@@ -97,7 +97,7 @@ func about_action():
# @DAM Hide this debug method before release.
func test_fake_db_action():
- dialog.setup("Do you want to delete all entries from the database and replace by fake entries?", "Yes, replace.", "No")
+ dialog.setup("All entries from the database will be deleted and new fake entries inserted.", "Yes", "No")
dialog.connect("accepted", database, "fake_database")
popup.open_popup("Fake DB?", dialog)