commit 73afa544980beac31b382fe9d59e078dde4af5cd
parent 9c1f1bf60cd3a4c272172ed0bdf12e0d6ed3d3d7
Author: Andreas Gruhler <agruhl@gmx.ch>
Date: Sun, 16 Jan 2022 22:24:22 +0100
shorten confirmation message
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/export.c b/src/export.c
@@ -23,7 +23,7 @@ void ics_export(const char* ics_filepath, WINDOW* header, WINDOW* cal, WINDOW* a
wclear(header);
// ask for confirmation
- mvwprintw(header, 0, 0, "Export diary entries (and overwrite existing) file '%s'? [(Y)es/(n)o] ", ics_filepath);
+ mvwprintw(header, 0, 0, "Export diary entries to file '%s' (overwrite)? [(Y)es/(n)o] ", ics_filepath);
do {
conf_ch = wgetch(header);