diff options
Diffstat (limited to 'logic')
| -rw-r--r-- | logic/database.gd | 2 | ||||
| -rw-r--r-- | logic/stage.gd | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/logic/database.gd b/logic/database.gd index f3a5928..ed39d43 100644 --- a/logic/database.gd +++ b/logic/database.gd @@ -75,7 +75,7 @@ func delete_action(): if selected_idx < 0: return - dialog.setup("The entry with process ID '%s' will be deleted from the database." % db[selected_idx].process_id, "Yes, delete", "No") + dialog.setup("The entry with process ID '%s' will be deleted from the database." % db[selected_idx].process_id, "Delete", "No") dialog.connect("accepted", self, "delete_action_confirmed") popup.open_popup("Delete entry?", dialog) diff --git a/logic/stage.gd b/logic/stage.gd index 2101ad9..104e888 100644 --- a/logic/stage.gd +++ b/logic/stage.gd @@ -112,7 +112,7 @@ func save_action(): func discard_action(): if get_stage().hash() != staged_entry_hash: - dialog.setup("Changes made to this entry will be discarded.", "Yes, discard", "No") + dialog.setup("Changes made to this entry will be discarded.", "Discard", "No") dialog.connect("accepted", self, "discard_action_confirmed") popup.open_popup("Discard changes?", dialog) else: |
