[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nano-devel] [PATCH 2/3] files: improve the wording of the normal file-w
From: |
Benno Schulenberg |
Subject: |
[Nano-devel] [PATCH 2/3] files: improve the wording of the normal file-writing prompts |
Date: |
Sun, 25 Feb 2018 19:57:22 +0100 |
From: Brand Huntsman <address@hidden>
Make them similar to the prompts for writing out a selection.
Signed-off-by: Brand Huntsman <address@hidden>
---
src/files.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/files.c b/src/files.c
index 56dc2b64..0591f28a 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.2