Commit dcb4e3a6 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

clarify comment

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2456 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 5 additions and 5 deletions
+5 -5
...@@ -3649,11 +3649,11 @@ int do_yesno(bool all, const char *msg) ...@@ -3649,11 +3649,11 @@ int do_yesno(bool all, const char *msg)
const char *allstr; /* And all, surprise! */ const char *allstr; /* And all, surprise! */
/* yesstr, nostr, and allstr are strings of any length. Each string /* yesstr, nostr, and allstr are strings of any length. Each string
* consists of all characters accepted as a valid character for that * consists of all single-byte characters accepted as valid
* value. The first value will be the one displayed in the * characters for that value. The first value will be the one
* shortcuts. Translators: if possible, specify both the shortcuts * displayed in the shortcuts. Translators: if possible, specify
* for your language and English. For example, in French: "OoYy" * both the shortcuts for your language and English. For example,
* for "Oui". */ * in French: "OoYy" for "Oui". */
yesstr = _("Yy"); yesstr = _("Yy");
nostr = _("Nn"); nostr = _("Nn");
allstr = _("Aa"); allstr = _("Aa");
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment