aboutsummaryrefslogtreecommitdiff
path: root/menu/menu.gd
diff options
context:
space:
mode:
Diffstat (limited to 'menu/menu.gd')
-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)