>From d46d327501d68fd369c182402c7b01cf6d12c223 Mon Sep 17 00:00:00 2001 From: Brand Huntsman Date: Sun, 25 Feb 2018 04:01:37 -0700 Subject: [PATCH 2/3] use similar wording when writing entire buffer or selection to file Signed-off-by: Brand Huntsman --- src/files.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/files.c b/src/files.c index 59ac56b1..3d0312df 100644 --- a/src/files.c +++ b/src/files.c @@ -2061,11 +2061,11 @@ int do_writeout(bool exiting, bool withprompt) (method == APPEND) ? _("Append Selection to File") : _("Write Selection to File"); else if (method != OVERWRITE) - msg = (method == PREPEND) ? _("File Name to Prepend to") : - _("File Name to Append to"); + msg = (method == PREPEND) ? _("Prepend to File") : + _("Append to File"); else #endif /* !NANO_TINY */ - msg = _("File Name to Write"); + msg = _("Write to File"); present_path = mallocstrcpy(present_path, "./"); -- 2.16.1