+2016-03-20 Benno Schulenberg <bensberg@justemail.net>
+ * src/files.c (do_writeout), src/nano.c (do_exit): Normalize the
+ punctuation in some prompts: no space before a question mark, and
+ a semicolon instead of a comma between phrases.
+
2016-03-19 Benno Schulenberg <bensberg@justemail.net>
* src/search.c (search_init): Always remember the last typed string,
also when it's an invalid regex. This fixes Savannah bug #47440.
if (func == discard_buffer) {
if (openfile->modified)
i = do_yesno_prompt(FALSE,
- _("Save modified buffer anyway ? "));
+ _("Save modified buffer anyway? "));
else
i = 0;
if (name_exists) {
i = do_yesno_prompt(FALSE,
- _("File exists, OVERWRITE ? "));
+ _("File exists; OVERWRITE? "));
if (i == 0 || i == -1)
continue;
} else
#endif
{
i = do_yesno_prompt(FALSE,
- _("Save file under DIFFERENT NAME ? "));
+ _("Save file under DIFFERENT NAME? "));
if (i == 0 || i == -1)
continue;
}
openfile->current_stat->st_dev != st.st_dev ||
openfile->current_stat->st_ino != st.st_ino)) {
i = do_yesno_prompt(FALSE,
- _("File was modified since you opened it, continue saving ? "));
+ _("File was modified since you opened it;"
+ " continue saving? "));
if (i == 0 || i == -1)
continue;
}
#endif
-
}
/* Convert newlines to nulls, just before we save the file. */
no_current_file_name_warning();
i = do_yesno_prompt(FALSE,
- _("Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "));
+ _("Save modified buffer? (Answering \"No\" will"
+ " DISCARD changes.) "));
}
#ifdef DEBUG