tweaks: elevate two messages, so they get shown with --mini or --zero

A file being in DOS or Mac format is unusual, and thus noteworthy.
master
Benno Schulenberg 2021-11-20 16:09:37 +01:00
parent 7785c3f7cf
commit f147131e7c
1 changed files with 2 additions and 2 deletions

View File

@ -811,11 +811,11 @@ void read_file(FILE *f, int fd, const char *filename, bool undoable)
#ifndef NANO_TINY
else if (format == MAC_FILE)
/* TRANSLATORS: Keep the next three messages at most 78 characters. */
statusline(HUSH, P_("Read %zu line (Converted from Mac format)",
statusline(REMARK, P_("Read %zu line (Converted from Mac format)",
"Read %zu lines (Converted from Mac format)",
num_lines), num_lines);
else if (format == DOS_FILE)
statusline(HUSH, P_("Read %zu line (Converted from DOS format)",
statusline(REMARK, P_("Read %zu line (Converted from DOS format)",
"Read %zu lines (Converted from DOS format)",
num_lines), num_lines);
#endif