diff -wur nano-fresh/src/global.c nano-new/src/global.c --- nano-fresh/src/global.c 2006-06-03 22:23:16.000000000 +0200 +++ nano-new/src/global.c 2006-06-07 22:14:15.000000000 +0200 @@ -352,7 +352,7 @@ const char *nano_back_msg = N_("Move back one character"); #ifndef NANO_TINY const char *nano_nextword_msg = N_("Move forward one word"); - const char *nano_prevword_msg = N_("Move backward one word"); + const char *nano_prevword_msg = N_("Move back one word"); #endif const char *nano_prevline_msg = N_("Move to the previous line"); const char *nano_nextline_msg = N_("Move to the next line"); @@ -408,12 +408,12 @@ N_("Refresh (redraw) the current screen"); #ifndef NANO_TINY const char *nano_case_msg = - N_("Make the current search/replace case (in)sensitive"); + N_("Toggle case sensitivity of the search"); const char *nano_reverse_msg = - N_("Make the current search/replace go backwards"); + N_("Reverse the direction of the search"); #endif #ifdef HAVE_REGEX_H - const char *nano_regexp_msg = N_("Use regular expressions"); + const char *nano_regexp_msg = N_("Toggle the use of regular expressions"); #endif #ifndef NANO_TINY const char *nano_prev_history_msg = @@ -425,18 +425,18 @@ const char *nano_tofiles_msg = N_("Go to file browser"); #endif #ifndef NANO_TINY - const char *nano_dos_msg = N_("Write file out in DOS format"); - const char *nano_mac_msg = N_("Write file out in Mac format"); + const char *nano_dos_msg = N_("Toggle use of DOS format"); + const char *nano_mac_msg = N_("Toggle use of Mac format"); #endif - const char *nano_append_msg = N_("Append to the current file"); - const char *nano_prepend_msg = N_("Prepend to the current file"); + const char *nano_append_msg = N_("Toggle appending"); + const char *nano_prepend_msg = N_("Toggle prepending"); #ifndef NANO_TINY const char *nano_backup_msg = - N_("Back up original file when saving"); + N_("Toggle backing up of original file"); const char *nano_execute_msg = N_("Execute external command"); #endif #if !defined(NANO_TINY) && defined(ENABLE_MULTIBUFFER) - const char *nano_multibuffer_msg = N_("Insert into new buffer"); + const char *nano_multibuffer_msg = N_("Toggle the use of a new buffer"); #endif #ifndef DISABLE_BROWSER const char *nano_exitbrowser_msg = N_("Exit from the file browser"); @@ -1355,7 +1355,7 @@ /* If we're using restricted mode, the suspend toggle is disabled. * It's useless since suspending is disabled. */ if (!ISSET(RESTRICTED)) - toggle_init_one(TOGGLE_SUSPEND_KEY, N_("Suspend"), FALSE, + toggle_init_one(TOGGLE_SUSPEND_KEY, N_("Suspension"), FALSE, SUSPEND); } #endif /* !NANO_TINY */ diff -wur nano-fresh/src/nano.c nano-new/src/nano.c --- nano-fresh/src/nano.c 2006-06-07 21:30:25.000000000 +0200 +++ nano-new/src/nano.c 2006-06-07 23:08:18.000000000 +0200 @@ -788,7 +788,7 @@ print_opt("-l", "--nofollow", N_("Don't follow symbolic links, overwrite")); #ifndef DISABLE_MOUSE - print_opt("-m", "--mouse", N_("Enable mouse")); + print_opt("-m", "--mouse", N_("Enable use of the mouse")); #endif #ifndef DISABLE_OPERATINGDIR print_opt(_("-o "), _("--operatingdir="), @@ -810,8 +810,8 @@ #ifndef DISABLE_WRAPPING print_opt("-w", "--nowrap", N_("Don't wrap long lines")); #endif - print_opt("-x", "--nohelp", N_("Don't show help window")); - print_opt("-z", "--suspend", N_("Enable suspend")); + print_opt("-x", "--nohelp", N_("Don't show the two help lines")); + print_opt("-z", "--suspend", N_("Enable suspension")); /* This is a special case. */ print_opt("-a, -b, -e,", "", NULL); @@ -996,7 +996,7 @@ /* Temporarily leave curses mode. */ endwin(); - printf(_("\n\n\n\n\n\nUse \"fg\" to return to nano\n")); + printf(_("\n\n\n\n\n\nUse \"fg\" to return to nano.\n")); fflush(stdout); /* Restore the old terminal settings. */ @@ -1373,10 +1373,10 @@ switch (input) { /* Handle the "universal" edit window shortcuts. */ case NANO_XON_KEY: - statusbar(_("XON ignored, mumble mumble.")); + statusbar(_("XON ignored, mumble mumble")); break; case NANO_XOFF_KEY: - statusbar(_("XOFF ignored, mumble mumble.")); + statusbar(_("XOFF ignored, mumble mumble")); break; #ifndef NANO_TINY case NANO_SUSPEND_KEY: diff -wur nano-fresh/src/rcfile.c nano-new/src/rcfile.c --- nano-fresh/src/rcfile.c 2006-06-07 21:34:25.000000000 +0200 +++ nano-new/src/rcfile.c 2006-06-07 23:07:56.000000000 +0200 @@ -844,7 +844,7 @@ if (errors) { errors = FALSE; - fprintf(stderr, _("\nPress Enter to continue starting nano\n")); + fprintf(stderr, _("\nPress Enter to continue starting nano.\n")); while (getchar() != '\n') ; }