fetchmail-friends
[Top] [All Lists]

Re: [fetchmail]Re: fetchmail SIGPIPE error with unescaped ^\.$

2002-06-07 08:49:30
Byrial Jensen <byrial(_at_)image(_dot_)dk>:
Please always call the gettext() function when handling text which
is presented to the user, so the texts can be presented in the local
language. I.e. instead of

+   fputs("Fallback MDA: ", stdout);
+#ifdef FALLBACK_MDA
+   fputs(FALLBACK_MDA, stdout);
+#else
+   fputs("(none)", stdout);

please write

      fputs(GT_("Fallback MDA: "), stdout);
#ifdef FALLBACK_MDA
      fputs(FALLBACK_MDA, stdout);
else
      fputs(GT_("(none)"), stdout);

Done.
-- 
                <a href="http://www.tuxedo.org/~esr/";>Eric S. Raymond</a>