diff options
author | jbj <devnull@localhost> | 2000-02-23 17:34:41 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2000-02-23 17:34:41 +0000 |
commit | becec721d0a3e2f927b1abed7ef792724f9a642d (patch) | |
tree | 01256b4dd77fe33cd5b8c739510445d28d6e9924 /rpm.c | |
parent | 6e545408441c511267b1252e29ea0668f3cc37ce (diff) | |
download | librpm-tizen-becec721d0a3e2f927b1abed7ef792724f9a642d.tar.gz librpm-tizen-becec721d0a3e2f927b1abed7ef792724f9a642d.tar.bz2 librpm-tizen-becec721d0a3e2f927b1abed7ef792724f9a642d.zip |
i18n lookaside.
CVS patchset: 3581
CVS date: 2000/02/23 17:34:41
Diffstat (limited to 'rpm.c')
-rwxr-xr-x | rpm.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -131,6 +131,9 @@ static struct poptOption optionsTable[] = { { "httpport", '\0', POPT_ARG_STRING, &httpPort, 0, NULL, NULL}, { "httpproxy", '\0', POPT_ARG_STRING, &httpProxy, 0, NULL, NULL}, { NULL, 'i', 0, 0, 'i', NULL, NULL}, + { "i18ndomains", '\0', POPT_ARG_STRING, &i18ndomains, 0, + N_("i18n catalogue domains to search for package text"), + "DOMAIN1[:DOMAIN2...]" }, { "ignorearch", '\0', 0, &ignoreArch, 0, NULL, NULL}, { "ignoreos", '\0', 0, &ignoreOs, 0, NULL, NULL}, { "ignoresize", '\0', 0, &ignoreSize, 0, NULL, NULL}, @@ -615,13 +618,14 @@ int main(int argc, const char ** argv) showrc = 0; signIt = 0; showVersion = 0; + specedit = 0; test = 0; _url_debug = 0; /* XXX Eliminate query linkage loop */ parseSpecVec = parseSpec; freeSpecVec = freeSpec; - specedit = NULL; + i18ndomains = NULL; /* set up the correct locale */ setlocale(LC_ALL, "" ); |