fetchmail-friends
[Top] [All Lists]

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

2002-06-07 08:37:50
On Fri, Jun 07, 2002 at 12:30:26 +0200, Matthias Andree wrote:

Last but not least, fetchmail -V does not dump the fallback
configuration which may be helpful to aid debugging. Below is a trivial
patch to correct this.

Hello,

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);

Best regards,   
Byrial Jensen
Danish translator