I try to complete more and more of the German translation of the manual.
The manual is complete but not fully translated. At this time, I had a
look what is to do, to include the German in language into Maxima and
its distributions. Until now, I have done the following extension in the
file configure.in:
AC_ARG_ENABLE(lang-de,
[ --enable-lang-de German language support],
[case "${enableval}" in
yes) lang_de=true ;;
no) lang_de=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-lang-de) ;;
esac],
[lang_de=false])
AM_CONDITIONAL(LANG_DE, test x$lang_DE = xtrue)
Perhaps, someone gives me some hints, which files must be modified, to
get German language support.
Dieter Kaiser