summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbj <jbj@localhost>1998-09-27 20:17:31 +0000
committerjbj <jbj@localhost>1998-09-27 20:17:31 +0000
commit6ee9a4ed5a86e417c41c7529ac950a44bba81c7f (patch)
tree3e62c703a5c13a48395e4d436f6f6a2f95035759
parent12323741068f0bce365b7b1b88394ab93ff3e230 (diff)
downloadgnome-common-6ee9a4ed5a86e417c41c7529ac950a44bba81c7f.tar.gz
add Slovak translation (Stanislav Meduna <stano@trillian.eunet.sk>)
gettextify rpmMessage/rpmError/fprintf messages. svn path=/trunk/; revision=414
-rw-r--r--support/popt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/support/popt.c b/support/popt.c
index 0df3179..025d2d5 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);
}
}