Eric S Raymond <esr(_at_)thyrsus(_dot_)com> writes:
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.
Not useful. See my reply to Byrial.
--
Matthias Andree