Replace "Select a media (use Arrow keys, then press Enter):" message by

"Select a media and choose 'Proceed' using arrow keys:"
This commit is contained in:
Christophe Grenier 2022-11-16 07:33:02 +01:00
parent d4df329408
commit 548a12d704
2 changed files with 2 additions and 2 deletions

View file

@ -113,7 +113,7 @@ static int photorec_disk_selection_ncurses(struct ph_param *params, struct ph_op
wmove(stdscr,5,0);
wprintw(stdscr,"comes with ABSOLUTELY NO WARRANTY.");
wmove(stdscr,7,0);
wprintw(stdscr,"Select a media (use Arrow keys, then press Enter):");
wprintw(stdscr,"Select a media and choose 'Proceed' using arrow keys:");
for(i=0,element_disk=list_disk;
element_disk!=NULL && i<offset+NBR_DISK_MAX;
i++, element_disk=element_disk->next)

View file

@ -96,7 +96,7 @@ static int testdisk_disk_selection_ncurses(int verbose,int dump_ind, const list_
wmove(stdscr,5,0);
wprintw(stdscr,"comes with ABSOLUTELY NO WARRANTY.");
wmove(stdscr,7,0);
wprintw(stdscr,"Select a media (use Arrow keys, then press Enter):");
wprintw(stdscr,"Select a media and choose 'Proceed' using arrow keys:");
for(i=0,element_disk=list_disk;
element_disk!=NULL && i<offset+NBR_DISK_MAX;
i++, element_disk=element_disk->next)