|
Description
|
ldapaddent is not fully internationalized. There are several messages that
are not being gettext'ed.
For example:
genent_passwd() and certain other routines have the following code:
strcpy(parse_err_msg, "no uid");
And when parse_err_msg is actually getting printed.
printf(stderr, gettext("parse error: %s (line %d)\n"), parse_err_msg, lineno);
^^^^
The "no uid" string would not get localized.
|