aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/ChangeLog2
-rw-r--r--util/miscutil.c14
2 files changed, 8 insertions, 8 deletions
diff --git a/util/ChangeLog b/util/ChangeLog
index 475458c1e..914b04c21 100644
--- a/util/ChangeLog
+++ b/util/ChangeLog
@@ -10,7 +10,7 @@
2006-04-11 Werner Koch <[email protected]>
- * iobuf.c (IOBUF_BUFFER_SIZE): New to repalce hardwired 8192.
+ * iobuf.c (IOBUF_BUFFER_SIZE): New to replace hardwired 8192.
2006-04-06 David Shaw <[email protected]>
diff --git a/util/miscutil.c b/util/miscutil.c
index 33776b196..698e80691 100644
--- a/util/miscutil.c
+++ b/util/miscutil.c
@@ -326,10 +326,10 @@ make_printable_string( const byte *p, size_t n, int delim )
int
answer_is_yes_no_default( const char *s, int def_answer )
{
- /* NOTE TO TRANSLATOR: See doc/TRANSLATE about this string. */
+ /* TRANSLATORS: See doc/TRANSLATE about this string. */
const char *long_yes = _("yes");
const char *short_yes = _("yY");
- /* NOTE TO TRANSLATOR: See doc/TRANSLATE about this string. */
+ /* TRANSLATORS: See doc/TRANSLATE about this string. */
const char *long_no = _("no");
const char *short_no = _("nN");
@@ -363,11 +363,11 @@ answer_is_yes( const char *s )
int
answer_is_yes_no_quit( const char *s )
{
- /* NOTE TO TRANSLATOR: See doc/TRANSLATE about this string. */
+ /* TRANSLATORS: See doc/TRANSLATE about this string. */
const char *long_yes = _("yes");
- /* NOTE TO TRANSLATOR: See doc/TRANSLATE about this string. */
+ /* TRANSLATORS: See doc/TRANSLATE about this string. */
const char *long_no = _("no");
- /* NOTE TO TRANSLATOR: See doc/TRANSLATE about this string. */
+ /* TRANSLATORS: See doc/TRANSLATE about this string. */
const char *long_quit = _("quit");
const char *short_yes = _("yY");
const char *short_no = _("nN");
@@ -403,9 +403,9 @@ answer_is_yes_no_quit( const char *s )
int
answer_is_okay_cancel (const char *s, int def_answer)
{
- /* NOTE TO TRANSLATOR: See doc/TRANSLATE about this string. */
+ /* TRANSLATORS: See doc/TRANSLATE about this string. */
const char *long_okay = _("okay|okay");
- /* NOTE TO TRANSLATOR: See doc/TRANSLATE about this string. */
+ /* TRANSLATORS: See doc/TRANSLATE about this string. */
const char *long_cancel = _("cancel|cancel");
const char *short_okay = _("oO");
const char *short_cancel = _("cC");