diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-23 22:50:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-23 22:50:17 +0000 |
commit | d74e76f9f6b05428358a6248ac506dc38c323c7e (patch) | |
tree | fcaf79e75b038c550015f200838057561e17308e /locale | |
parent | 8ba3c7d939fd02e4bef1f311d941fc04bf5e19e8 (diff) | |
download | glibc-d74e76f9f6b05428358a6248ac506dc38c323c7e.tar.gz glibc-d74e76f9f6b05428358a6248ac506dc38c323c7e.tar.xz glibc-d74e76f9f6b05428358a6248ac506dc38c323c7e.zip |
Update.
* sunrpc/rpc_main.c (open_output): Allow better translation of error message. (close_output): Likewise. * locale/programs/localedef.c: Unify messages. * malloc/obstack.c: Likewise. Suggested by Vladimir Michl <Vladimir.Michl@upol.cz>.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/programs/localedef.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/locale/programs/localedef.c b/locale/programs/localedef.c index 5a7035dc13..fc9683f69d 100644 --- a/locale/programs/localedef.c +++ b/locale/programs/localedef.c @@ -92,10 +92,11 @@ void (*argp_program_version_hook) (FILE *, struct argp_state *) = print_version; static const struct argp_option options[] = { { NULL, 0, NULL, 0, N_("Input Files:") }, - { "charmap", 'f', "FILE", 0, + { "charmap", 'f', N_("FILE"), 0, N_("Symbolic character names defined in FILE") }, - { "inputfile", 'i', "FILE", 0, N_("Source definitions are found in FILE") }, - { "repertoire-map", 'u', "FILE", 0, + { "inputfile", 'i', N_("FILE"), 0, + N_("Source definitions are found in FILE") }, + { "repertoire-map", 'u', N_("FILE"), 0, N_("FILE contains mapping from symbolic names to UCS4 values") }, { NULL, 0, NULL, 0, N_("Output control:") }, |