From b12fe534ae3f2aea74f8c8506b3ad2fea321227c Mon Sep 17 00:00:00 2001 From: dam Date: Sat, 2 Apr 2022 08:49:21 +0000 Subject: Improved modal dialog messages. --- menu/menu.gd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'menu') 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) -- cgit v1.2.3