From ba38d61f225614bbd2ea9d5ff61d7b8373bdfcb0 Mon Sep 17 00:00:00 2001
From: Benno Schulenberg <bensberg@justemail.net>
Date: Tue, 5 Apr 2016 16:13:54 +0200
Subject: [PATCH] files: prune a message to be less than 76 characters

So it will fit on the screen when using a standard 80-column terminal.
---
 src/files.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/files.c b/src/files.c
index 13f70698..a24b5612 100644
--- 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;
-- 
GitLab