]> git.wh0rd.org Git - nano.git/commitdiff
Not just marking but actually translating a helpful message.
authorBenno Schulenberg <bensberg@justemail.net>
Fri, 28 Feb 2014 19:47:48 +0000 (19:47 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Fri, 28 Feb 2014 19:47:48 +0000 (19:47 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4626 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/rcfile.c

index 629fc861c39d200185a363075000bf3344335048..43530a1bd366969664afba4d82e51877a80dcb49 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
        * src/global.c (thanks_for_all_the_fish) - Remove a redundant
        '#ifdef DEBUG', it is contained within a wider one.
        * src/global.c (strtosc) - Correct a misspelled keyword.
+       * src/rcfile.c (check_vitals_mapped) - Actually translate a
+       helpful message, and reword it somewhat for clarity.
 
 2014-02-28  Eitan Adler  <lists@eitanadler.com>
        * src/nano.c (do_toggle) - Constify a char pointer, to fix
index 54213759aa93101993ecb7b9f3e783a1ca13d996..ce6d066520b889203766abe486fcc10c44d1be23 100644 (file)
@@ -985,7 +985,8 @@ static void check_vitals_mapped(void)
                if (!s) {
                    rcfile_error(N_("Fatal error: no keys mapped for function \"%s\""),
                        f->desc);
-                   fprintf(stderr, N_("Exiting.  Please use nano with the -I option if needed to adjust your nanorc settings\n"));
+                   fprintf(stderr, _("Exiting.  If needed, use nano with the -I option "
+                                    "to adjust your nanorc settings.\n"));
                    exit(1);
                }
            break;