diff options
author | jbj <jbj@localhost> | 1998-09-27 20:17:31 +0000 |
---|---|---|
committer | jbj <jbj@localhost> | 1998-09-27 20:17:31 +0000 |
commit | 6ee9a4ed5a86e417c41c7529ac950a44bba81c7f (patch) | |
tree | 3e62c703a5c13a48395e4d436f6f6a2f95035759 /support | |
parent | 12323741068f0bce365b7b1b88394ab93ff3e230 (diff) | |
download | shared-mime-info-6ee9a4ed5a86e417c41c7529ac950a44bba81c7f.tar.gz |
add Slovak translation (Stanislav Meduna <stano@trillian.eunet.sk>)
gettextify rpmMessage/rpmError/fprintf messages.
svn path=/trunk/; revision=414
Diffstat (limited to 'support')
-rw-r--r-- | support/popt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/support/popt.c b/support/popt.c index 0df31796..025d2d53 100644 --- a/support/popt.c +++ b/support/popt.c @@ -363,7 +363,9 @@ int poptGetNextOpt(poptContext con) { break; default: - printf("option type not implemented in popt\n"); + /* XXX I18N? */ + fprintf(stdout, "option type (%d) not implemented in popt\n", + opt->argInfo); exit(1); } } |