diff -wur nano-cvs/src/files.c nano-new/src/files.c --- nano-cvs/src/files.c 2006-06-08 19:33:42.000000000 +0200 +++ nano-new/src/files.c 2006-06-14 11:04:53.000000000 +0200 @@ -1748,21 +1748,21 @@ const char *formatstr, *backupstr; formatstr = (openfile->fmt == DOS_FILE) ? - N_(" [DOS Format]") : (openfile->fmt == MAC_FILE) ? - N_(" [Mac Format]") : ""; + _(" [DOS Format]") : (openfile->fmt == MAC_FILE) ? + _(" [Mac Format]") : ""; - backupstr = ISSET(BACKUP_FILE) ? N_(" [Backup]") : ""; + backupstr = ISSET(BACKUP_FILE) ? _(" [Backup]") : ""; if (openfile->mark_set && !exiting) msg = (append == PREPEND) ? - N_("Prepend Selection to File") : (append == APPEND) ? - N_("Append Selection to File") : - N_("Write Selection to File"); + _("Prepend Selection to File") : (append == APPEND) ? + _("Append Selection to File") : + _("Write Selection to File"); else #endif /* !NANO_TINY */ - msg = (append == PREPEND) ? N_("File Name to Prepend to") : - (append == APPEND) ? N_("File Name to Append to") : - N_("File Name to Write"); + msg = (append == PREPEND) ? _("File Name to Prepend to") : + (append == APPEND) ? _("File Name to Append to") : + _("File Name to Write"); /* If we're using restricted mode, the filename isn't blank, * and we're at the "Write File" prompt, disable tab @@ -1776,7 +1776,7 @@ #ifndef NANO_TINY NULL, #endif - edit_refresh, "%s%s%s", _(msg), + edit_refresh, "%s%s%s", msg, #ifndef NANO_TINY formatstr, backupstr #else