commit ba38d61f225614bbd2ea9d5ff61d7b8373bdfcb0
parent 4a9b97b101561df4865be8f1b590d78377461772
Author: Benno Schulenberg <bensberg@justemail.net>
Date: Tue, 5 Apr 2016 16:13:54 +0200
files: prune a message to be less than 76 characters
So it will fit on the screen when using a standard 80-column terminal.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/files.c b/src/files.c
@@ -940,8 +940,8 @@ void read_file(FILE *f, int fd, const char *filename, bool undoable, bool checkw
(unsigned long)num_lines), (unsigned long)num_lines);
else
statusbar(
- P_("Read %lu line (Converted from DOS and Mac format - Warning: No write permission)",
- "Read %lu lines (Converted from DOS and Mac format - Warning: No write permission)",
+ P_("Read %lu line (Converted from DOS and Mac format - NO write permission)",
+ "Read %lu lines (Converted from DOS and Mac format - NO write permission)",
(unsigned long)num_lines), (unsigned long)num_lines);
} else if (format == 2) {
openfile->fmt = MAC_FILE;