- remove almost all explicit uses of stderr in rpmlib using rpmError().
CVS patchset: 4406
CVS date: 2001/01/03 20:19:27
- (popt): add POPT_ARGFLAG_OPTIONAL for long options with optional arg.
- (popt): diddle auto-help to include type of arg expected.
- use popt autohelp for rpm helper binaries.
+ - fix: avoid locale issues with strcasecmp/strncasecmp (#23199).
+ - remove almost all explicit uses of stderr in rpmlib using rpmError().
3.0.6 -> 4.0
- use DIRNAMES/BASENAMES/DIRINDICES not FILENAMES in packages and db.
./rpmio/rpmmessages.h \
./rpmio/rpmrpc.c \
./rpmio/rpmurl.h \
+ ./rpmio/strcasecmp.c \
./rpmio/stubs.c \
./rpmio/ugid.c \
./rpmio/ugid.h \
return (strtok(NULL, " \t\n")) ? 1 : 0;
}
-static int parseYesNo(char *s)
+static inline int parseYesNo(const char *s)
{
- if (!s || (s[0] == 'n' || s[0] == 'N') ||
- !strcasecmp(s, "false") ||
- !strcasecmp(s, "off") ||
- !strcmp(s, "0")) {
- return 0;
- }
-
- return 1;
+ return ((!s || (s[0] == 'n' || s[0] == 'N' || s[0] == '0') ||
+ !xstrcasecmp(s, "false") || !xstrcasecmp(s, "off"))
+ ? 0 : 1);
}
struct tokenBits {
static int isMemberInEntry(Header header, const char *name, int tag)
{
- char **names;
+ const char ** names;
int count;
- /*
- * XXX The strcasecmp below is necessary so the old (rpm < 2.90) style
- * XXX os-from-uname (e.g. "Linux") is compatible with the new
- * XXX os-from-platform (e.g "linux" from "sparc-*-linux").
- */
- if (headerGetEntry(header, tag, NULL, (void **)&names, &count)) {
- while (count--) {
- if (!strcasecmp(names[count], name)) {
- FREE(names);
- return 1;
- }
- }
- FREE(names);
- return 0;
+ if (!headerGetEntry(header, tag, NULL, (void **)&names, &count))
+ return -1;
+ while (count--) {
+ if (!xstrcasecmp(names[count], name))
+ break;
}
-
- return -1;
+ FREE(names);
+ return (count >= 0 ? 1 : 0);
}
static int checkForValidArchitectures(Spec spec)
initPreambleList();
for (p = preambleList; p->token; p++) {
- if (!strncasecmp(spec->line, p->token, p->len))
+ if (!xstrncasecmp(spec->line, p->token, p->len))
break;
}
if (p->token == NULL)
for (p = partList; p->token != NULL; p++) {
char c;
- if (strncasecmp(line, p->token, p->len))
+ if (xstrncasecmp(line, p->token, p->len))
continue;
c = *(line + p->len);
if (c == '\0' || isspace(c))
SKIPNONSPACE(be);
if (be == b)
break;
- /*
- * XXX The strncasecmp below is necessary so the old (rpm < 2.90) style
- * XXX os-from-uname (e.g. "Linux") is compatible with the new
- * XXX os-from-platform (e.g "linux" from "sparc-*-linux").
- */
- if (toklen != (be-b) || strncasecmp(token, b, (be-b)))
+ if (toklen != (be-b) || xstrncasecmp(token, b, (be-b)))
continue;
rc = 1;
break;
dnl Checks for libraries.
-AC_CHECK_FUNC(strcasecmp, [], [
- AC_CHECK_LIB(ucb, strcasecmp, [LIBS="$LIBS -lc -lucb" USEUCB=y])
-])
AC_CHECK_FUNC(setreuid, [], [
AC_CHECK_LIB(ucb, setreuid, [if echo $LIBS | grep -- -lucb >/dev/null ;then :; else LIBS="$LIBS -lc -lucb" USEUCB=y;fi])
])
dnl XXX AC_CHECK_FUNCS(gethostname mkdir mkfifo rmdir select uname)
AC_CHECK_FUNCS(basename getcwd getwd inet_aton mtrace putenv realpath setenv)
-AC_CHECK_FUNCS(stpcpy stpncpy strcasecmp strncasecmp strcspn)
+AC_CHECK_FUNCS(stpcpy stpncpy strcspn)
AC_CHECK_FUNCS(strdup strerror strtol strtoul strspn strstr)
AC_CHECK_FUNCS(regcomp)
#include "system.h"
#include "cpio.h"
+#include "rpmerr.h"
#include "debug.h"
/*@access FD_t@*/
strcpy(buf, hdr->path);
strcat(buf, "-RPMDELETE");
if (rename(hdr->path, buf)) {
- fprintf(stderr, _("can't rename %s to %s: %s\n"),
+ rpmError(RPMERR_RENAME, _("can't rename %s to %s: %s\n"),
hdr->path, buf, strerror(errno));
return CPIOERR_UNLINK_FAILED;
}
if (unlink(buf)) {
- fprintf(stderr, _("can't unlink %s: %s\n"),
+ rpmError(RPMERR_UNLINK, _("can't unlink %s: %s\n"),
buf, strerror(errno));
#if 0
return CPIOERR_UNLINK_FAILED;
}
if ((rc = getNextHeader(cfd, hdr))) {
#if 0 /* XXX this is the failure point for an unreadable rpm */
- fprintf(stderr, _("getNextHeader: %s\n"), cpioStrerror(rc));
+ rpmError(RPMERR_BADPACKAGE, _("getNextHeader: %s\n"),
+ cpioStrerror(rc));
#endif
return rc;
}
rc = -1;
if (printit && rc) {
- fprintf(stderr, _("db%d error(%d)"), dbi->dbi_api, rc);
if (msg)
- fprintf(stderr, _(" performing %s"), msg);
- fprintf(stderr, ": %s\n", db_strerror(error));
+ rpmError(RPMERR_DBERR, _("db%d error(%d) from %s: %s\n"),
+ dbi->dbi_api, rc, msg, db_strerror(error));
+ else
+ rpmError(RPMERR_DBERR, _("db%d error(%d): %s\n"),
+ dbi->dbi_api, rc, db_strerror(error));
}
return rc;
dbi->dbi_db = NULL;
}
- if (dbi->dbi_debug)
- fprintf(stderr, "db1close: rc %d db %p\n", rc, dbi->dbi_db);
-
rpmMessage(RPMMESS_DEBUG, _("closed db file %s\n"), urlfn);
/* Remove temporary databases */
if (dbi->dbi_temporary) {
rc = -1;
if (printit && rc) {
- fprintf(stderr, "*** db%d %s rc %d %s\n", dbi->dbi_api, msg,
- rc, db_strerror(error));
+ if (msg)
+ rpmError(RPMERR_DBERR, _("db%d error(%d) from %s: %s\n"),
+ dbi->dbi_api, rc, msg, db_strerror(error));
+ else
+ rpmError(RPMERR_DBERR, _("db%d error(%d): %s\n"),
+ dbi->dbi_api, rc, db_strerror(error));
}
return rc;
break;
}
if (opt->longName == NULL) {
- fprintf(stderr, _("dbiSetConfig: unrecognized db option: \"%s\" ignored\n"), o);
+ rpmError(RPMERR_DBCONFIG,
+ _("unrecognized db option: \"%s\" ignored\n"), o);
continue;
}
case POPT_ARG_LONG:
aLong = strtol(p, &pe, 0);
if (pe) {
- if (!strncasecmp(pe, "Mb", 2))
+ if (!xstrncasecmp(pe, "Mb", 2))
aLong *= 1024 * 1024;
- else if (!strncasecmp(pe, "Kb", 2))
+ else if (!xstrncasecmp(pe, "Kb", 2))
aLong *= 1024;
else if (*pe != '\0') {
- fprintf(stderr,_("%s has invalid numeric value, skipped\n"),
+ rpmError(RPMERR_DBCONFIG,
+ _("%s has invalid numeric value, skipped\n"),
opt->longName);
continue;
}
if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_LONG) {
if (aLong == LONG_MIN || aLong == LONG_MAX) {
- fprintf(stderr, _("%s has too large or too small long value, skipped\n"),
+ rpmError(RPMERR_DBCONFIG,
+ _("%s has too large or too small long value, skipped\n"),
opt->longName);
continue;
}
break;
} else {
if (aLong > INT_MAX || aLong < INT_MIN) {
- fprintf(stderr, _("%s has too large or too small integer value, skipped\n"),
+ rpmError(RPMERR_DBCONFIG,
+ _("%s has too large or too small integer value, skipped\n"),
opt->longName);
continue;
}
rc = error;
if (printit && rc) {
- fprintf(stderr, _("db%d error(%d)"), dbi->dbi_api, rc);
if (msg)
- fprintf(stderr, _(" performing %s"), msg);
- fprintf(stderr, ": %s\n", db_strerror(error));
+ rpmError(RPMERR_DBERR, _("db%d error(%d) from %s: %s\n"),
+ dbi->dbi_api, rc, msg, db_strerror(error));
+ else
+ rpmError(RPMERR_DBERR, _("db%d error(%d): %s\n"),
+ dbi->dbi_api, rc, db_strerror(error));
}
return rc;
#include "system.h"
#include <rpmio_internal.h>
+#include <rpmerr.h>
#include "falloc.h"
#include "debug.h"
/* XXX W2DO? exit(EXIT_FAILURE) forces the user to discover rpm --rebuilddb */
if (!header.isFree) {
- fprintf(stderr, _("free list corrupt (%u)- please run\n"
+ rpmError(RPMERR_FREELIST, _("free list corrupt (%u)- please run\n"
"\t\"rpm --rebuilddb\"\n"
"More information is available from http://www.rpm.org "
"or the rpm-list@redhat.com mailing list\n"
} u;
};
-#if HAVE_MCHECK_H
-static int probe_headers = 0;
-#define HEADERPROBE(_h, _msg) if (probe_headers) headerProbe((_h), (_msg))
-
-static void headerProbeAddr(Header h, const char * msg,
- void * p, const char * imsg)
-{
- const char * mchkstr = NULL;
- switch (mprobe(p)) {
- case MCHECK_DISABLED:
- case MCHECK_OK:
- return;
- /*@notreached@*/ break;
- case MCHECK_HEAD:
- mchkstr = "HEAD";
- break;
- case MCHECK_TAIL:
- mchkstr = "TAIL";
- break;
- case MCHECK_FREE:
- mchkstr = "FREE";
- break;
- }
- fprintf(stderr, "*** MCHECK_%s h %p", mchkstr, h);
- if (imsg && p)
- fprintf(stderr, " %s %p", imsg, p);
- if (msg)
- fprintf(stderr, " %s", msg);
- fprintf(stderr, "\n");
-}
-
-static void headerProbe(Header h, const char *msg)
-{
- char imsg[256];
- int i;
-
- headerProbeAddr(h, msg, h, "header");
- sprintf(imsg, "index (used %d)", h->indexUsed);
- headerProbeAddr(h, msg, h->index, imsg);
- for (i = 0; i < h->indexUsed; i++) {
- sprintf(imsg, "index[%d:%d].data", i, h->indexUsed);
- headerProbeAddr(h, msg, h->index[i].data, imsg);
- }
-}
-#else /* HAVE_MCHECK_H */
-#define HEADERPROBE(_h, _msg)
-#endif /* HAVE_MCHECK_H */
-
/**
* Return length of entry data.
* @param type entry data type
{
struct indexEntry * entry;
- HEADERPROBE(h, "intGetEntry");
/* First find the tag */
entry = findEntry(h, tag, RPM_NULL_TYPE);
if (entry == NULL) {
Header headerLink(Header h)
{
- HEADERPROBE(h, "headerLink");
h->nrefs++;
/*@-refcounttrans@*/ return h; /*@=refcounttrans@*/
}
* @param h header from
* @param newH header to
* @param actions array of file dispositions
- * @return 0 always
+ * @return 0 on success, 1 on failure
*/
static int mergeFiles(Header h, Header newH, enum fileActions * actions)
{
free (data);
break;
default:
- fprintf(stderr, _("Data type %d not supported\n"), (int) type);
- exit(EXIT_FAILURE);
- /*@notreached@*/
+ rpmError(RPMERR_DATATYPE, _("Data type %d not supported\n"),
+ (int) type);
+ return 1;
+ /*@notreached@*/ break;
}
}
headerGetEntry(newH, RPMTAG_DIRINDEXES, NULL, (void **) &newDirIndexes,
headerModifyEntry(oldH, RPMTAG_MULTILIBS, RPM_INT32_TYPE,
&multiLib, 1);
}
- mergeFiles(oldH, h, actions);
+ if (mergeFiles(oldH, h, actions)) {
+ rc = 2;
+ goto exit;
+ }
}
if (rpmdbAdd(ts->rpmdb, h)) {
case POPT_RMBUILD: rba->buildAmount |= RPMBUILD_RMBUILD; break;
case POPT_BUILDROOT:
if (rba->buildRootOverride) {
- fprintf(stderr, _("buildroot already specified"));
- exit(EXIT_FAILURE);
- /*@notreached@*/
+ rpmError(RPMERR_BUILDROOT, _("buildroot already specified, ignoring %s\n"), arg);
+ break;
}
rba->buildRootOverride = xstrdup(arg);
break;
if (*fdp == NULL && fnp && *fnp) {
fd = Fopen(*fnp, ((flags & O_WRONLY) ? "w.ufdio" : "r.ufdio"));
if (fd == NULL || Ferror(fd)) {
- fprintf(stderr, _("%s: open failed: %s\n"), *fnp,
+ rpmError(RPMERR_OPEN, _("%s: open failed: %s\n"), *fnp,
Fstrerror(fd));
return 1;
}
/* open a temp file */
if (*fdp == NULL && (fnp == NULL || *fnp == NULL)) {
if (makeTempFile(NULL, (fnp ? &fn : NULL), &fd)) {
- fprintf(stderr, _("makeTempFile failed\n"));
+ rpmError(RPMERR_MAKETEMP, _("makeTempFile failed\n"));
return 1;
}
if (fnp)
while ((count = Fread(buffer, sizeof(buffer[0]), sizeof(buffer), *sfdp)) > 0) {
if (Fwrite(buffer, sizeof(buffer[0]), count, *tfdp) < 0) {
- fprintf(stderr, _("%s: Fwrite failed: %s\n"), *tfnp,
+ rpmError(RPMERR_FWRITE, _("%s: Fwrite failed: %s\n"), *tfnp,
Fstrerror(*tfdp));
goto exit;
}
}
if (count < 0) {
- fprintf(stderr, _("%s: Fread failed: %s\n"), *sfnp, Fstrerror(*sfdp));
+ rpmError(RPMERR_FREAD, _("%s: Fread failed: %s\n"), *sfnp, Fstrerror(*sfdp));
goto exit;
}
goto exit;
if (readLead(fd, l)) {
- fprintf(stderr, _("%s: readLead failed\n"), rpm);
+ rpmError(RPMERR_READLEAD, _("%s: readLead failed\n"), rpm);
goto exit;
}
switch (l->major) {
case 1:
- fprintf(stderr, _("%s: Can't sign v1.0 RPM\n"), rpm);
+ rpmError(RPMERR_BADSIGTYPE, _("%s: Can't sign v1.0 RPM\n"), rpm);
goto exit;
/*@notreached@*/ break;
case 2:
- fprintf(stderr, _("%s: Can't re-sign v2.0 RPM\n"), rpm);
+ rpmError(RPMERR_BADSIGTYPE, _("%s: Can't re-sign v2.0 RPM\n"), rpm);
goto exit;
/*@notreached@*/ break;
default:
}
if (rpmReadSignature(fd, &sig, l->signature_type)) {
- fprintf(stderr, _("%s: rpmReadSignature failed\n"), rpm);
+ rpmError(RPMERR_SIGGEN, _("%s: rpmReadSignature failed\n"), rpm);
goto exit;
}
if (sig == NULL) {
- fprintf(stderr, _("%s: No signature available\n"), rpm);
+ rpmError(RPMERR_SIGGEN, _("%s: No signature available\n"), rpm);
goto exit;
}
l->signature_type = RPMSIG_HEADERSIG;
if (writeLead(ofd, l)) {
- fprintf(stderr, _("%s: writeLead failed: %s\n"), trpm,
+ rpmError(RPMERR_WRITELEAD, _("%s: writeLead failed: %s\n"), trpm,
Fstrerror(ofd));
goto exit;
}
if (rpmWriteSignature(ofd, sig)) {
- fprintf(stderr, _("%s: rpmWriteSignature failed: %s\n"), trpm,
+ rpmError(RPMERR_SIGGEN, _("%s: rpmWriteSignature failed: %s\n"), trpm,
Fstrerror(ofd));
goto exit;
}
}
if (readLead(fd, &lead)) {
- fprintf(stderr, _("%s: readLead failed\n"), rpm);
+ rpmError(RPMERR_READLEAD, _("%s: readLead failed\n"), rpm);
res++;
goto bottom;
}
switch (l->major) {
case 1:
- fprintf(stderr, _("%s: No signature available (v1.0 RPM)\n"), rpm);
+ rpmError(RPMERR_BADSIGTYPE, _("%s: No signature available (v1.0 RPM)\n"), rpm);
res++;
goto bottom;
/*@notreached@*/ break;
break;
}
if (rpmReadSignature(fd, &sig, l->signature_type)) {
- fprintf(stderr, _("%s: rpmReadSignature failed\n"), rpm);
+ rpmError(RPMERR_SIGGEN, _("%s: rpmReadSignature failed\n"), rpm);
res++;
goto bottom;
}
if (sig == NULL) {
- fprintf(stderr, _("%s: No signature available\n"), rpm);
+ rpmError(RPMERR_SIGGEN, _("%s: No signature available\n"), rpm);
res++;
goto bottom;
}
if (res2) {
if (rpmIsVerbose()) {
- fprintf(stderr, "%s", (char *)buffer);
+ rpmError(RPMERR_SIGVFY, "%s", (char *)buffer);
} else {
- fprintf(stderr, "%s%s%s%s%s%s%s%s\n", (char *)buffer,
+ rpmError(RPMERR_SIGVFY, "%s%s%s%s%s%s%s%s\n", (char *)buffer,
_("NOT OK"),
(missingKeys[0] != '\0') ? _(" (MISSING KEYS:") : "",
(char *)missingKeys,
}
} else {
if (rpmIsVerbose()) {
- fprintf(stdout, "%s", (char *)buffer);
+ rpmError(RPMERR_SIGVFY, "%s", (char *)buffer);
} else {
- fprintf(stdout, "%s%s%s%s%s%s%s%s\n", (char *)buffer,
+ rpmError(RPMERR_SIGVFY, "%s%s%s%s%s%s%s%s\n", (char *)buffer,
_("OK"),
(missingKeys[0] != '\0') ? _(" (MISSING KEYS:") : "",
(char *)missingKeys,
rpmMessage(RPMMESS_ERROR,
_("cannot open Packages database in %s\n"), dn);
free((void *)dn);
- exit(EXIT_FAILURE);
+ numFailed++;
+ pkgURL[i] = NULL;
+ break;
}
rpmdep = rpmtransCreateSet(db, rootdir);
dbIsOpen = 1;
dn = rpmGetPath( (rootdir ? rootdir : ""), "%{_dbpath}", NULL);
rpmMessage(RPMMESS_ERROR, _("cannot open %s/packages.rpm\n"), dn);
free((void *)dn);
- exit(EXIT_FAILURE);
+ return -1;
}
rpmdep = rpmtransCreateSet(db, rootdir);
static void rebuildCompatTables(int type, const char *name);
static int optionCompare(const void * a, const void * b) {
- return strcasecmp(((struct rpmOption *) a)->name,
+ return xstrcasecmp(((struct rpmOption *) a)->name,
((struct rpmOption *) b)->name);
}
{
int i;
-/*
- * XXX The strcasecmp below is necessary so the old (rpm < 2.90) style
- * XXX os-from-uname (e.g. "Linux") is compatible with the new
- * XXX os-from-platform (e.g "linux" from "sparc-*-linux").
- * XXX A copy of this string is embedded in headers and is
- * XXX used by rpmInstallPackage->{os,arch}Okay->rpmMachineScore->.
- * XXX to verify correct arch/os from headers.
- */
for (i = 0; i < table->count; i++)
- if (!strcasecmp(table->list[i].name, name))
+ if (!xstrcasecmp(table->list[i].name, name))
return table->list + i;
return NULL;
if ((co = strrchr(c, '-')) == NULL) {
co = c;
} else {
- if (!strcasecmp(co, "-gnu"))
+ if (!xstrcasecmp(co, "-gnu"))
*co = '\0';
if ((co = strrchr(c, '-')) == NULL)
co = c;
{ const char *name = rpmExpand("%{_signature}", NULL);
if (!(name && *name != '%'))
rc = 0;
- else if (!strcasecmp(name, "none"))
+ else if (!xstrcasecmp(name, "none"))
rc = 0;
- else if (!strcasecmp(name, "pgp"))
+ else if (!xstrcasecmp(name, "pgp"))
rc = RPMSIGTAG_PGP;
- else if (!strcasecmp(name, "pgp5")) /* XXX legacy */
+ else if (!xstrcasecmp(name, "pgp5")) /* XXX legacy */
rc = RPMSIGTAG_PGP;
- else if (!strcasecmp(name, "gpg"))
+ else if (!xstrcasecmp(name, "gpg"))
rc = RPMSIGTAG_GPG;
else
rc = -1; /* Invalid %_signature spec in macro file */
result[0] = '\0';
while (fgets(buf, 1024, file)) {
strcat(result, buf);
- if (!strncasecmp("gpg: Can't check signature: Public key not found", buf, 48)) {
+ if (!xstrncasecmp("gpg: Can't check signature: Public key not found", buf, 48)) {
res = RPMSIG_NOKEY;
}
}
fakefork.c fnmatch.c getcwd.c getmntent.c \
getwd.c glob.c memcmp.c \
mktime.c myrealloc.c putenv.c realpath.c \
- setenv.c stpcpy.c stpncpy.c strcasecmp.c \
- strncasecmp.c strcspn.c strdup.c strerror.c \
+ setenv.c stpcpy.c stpncpy.c \
+ strcspn.c strdup.c strerror.c \
strftime.c strcspn.c strstr.c strtol.c \
strtoul.c
+++ /dev/null
-/* Copyright (C) 1991, 1992, 1995, 1996, 1997 Free Software Foundation, Inc.
-
- NOTE: The canonical source of this file is maintained with the GNU C Library.
- Bugs can be reported to bug-glibc@prep.ai.mit.edu.
-
- This program is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; either version 2, or (at your option) any
- later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
- USA. */
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <ctype.h>
-#include <string.h>
-
-#ifndef weak_alias
-# define __strcasecmp strcasecmp
-# define TOLOWER(Ch) tolower (Ch)
-#else
-# ifdef USE_IN_EXTENDED_LOCALE_MODEL
-# define __strcasecmp __strcasecmp_l
-# define TOLOWER(Ch) __tolower_l ((Ch), loc)
-# else
-# define TOLOWER(Ch) tolower (Ch)
-# endif
-#endif
-
-#ifdef USE_IN_EXTENDED_LOCALE_MODEL
-# define LOCALE_PARAM , loc
-# define LOCALE_PARAM_DECL __locale_t loc;
-#else
-# define LOCALE_PARAM
-# define LOCALE_PARAM_DECL
-#endif
-
-/* Compare S1 and S2, ignoring case, returning less than, equal to or
- greater than zero if S1 is lexicographically less than,
- equal to or greater than S2. */
-int
-__strcasecmp (s1, s2 LOCALE_PARAM)
- const char *s1;
- const char *s2;
- LOCALE_PARAM_DECL
-{
- const unsigned char *p1 = (const unsigned char *) s1;
- const unsigned char *p2 = (const unsigned char *) s2;
- unsigned char c1, c2;
-
- if (p1 == p2)
- return 0;
-
- do
- {
- c1 = TOLOWER (*p1++);
- c2 = TOLOWER (*p2++);
- if (c1 == '\0')
- break;
- }
- while (c1 == c2);
-
- return c1 - c2;
-}
-#ifndef __strcasecmp
-weak_alias (__strcasecmp, strcasecmp)
-#endif
+++ /dev/null
-/* Compare at most N characters of two strings without taking care for
- the case.
- Copyright (C) 1992, 1996, 1997 Free Software Foundation, Inc.
-
- NOTE: The canonical source of this file is maintained with the GNU C Library.
- Bugs can be reported to bug-glibc@prep.ai.mit.edu.
-
- This program is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; either version 2, or (at your option) any
- later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
- USA. */
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <string.h>
-#include <ctype.h>
-
-#ifndef weak_alias
-# define __strncasecmp strncasecmp
-# define TOLOWER(Ch) tolower (Ch)
-#else
-# ifdef USE_IN_EXTENDED_LOCALE_MODEL
-# define __strncasecmp __strncasecmp_l
-# define TOLOWER(Ch) __tolower_l ((Ch), loc)
-# else
-# define TOLOWER(Ch) tolower (Ch)
-# endif
-#endif
-
-#ifdef USE_IN_EXTENDED_LOCALE_MODEL
-# define LOCALE_PARAM , loc
-# define LOCALE_PARAM_DECL __locale_t loc;
-#else
-# define LOCALE_PARAM
-# define LOCALE_PARAM_DECL
-#endif
-
-/* Compare no more than N characters of S1 and S2,
- ignoring case, returning less than, equal to or
- greater than zero if S1 is lexicographically less
- than, equal to or greater than S2. */
-int
-__strncasecmp (s1, s2, n LOCALE_PARAM)
- const char *s1;
- const char *s2;
- size_t n;
- LOCALE_PARAM_DECL
-{
- const unsigned char *p1 = (const unsigned char *) s1;
- const unsigned char *p2 = (const unsigned char *) s2;
- unsigned char c1, c2;
-
- if (p1 == p2 || n == 0)
- return 0;
-
- do
- {
- c1 = TOLOWER (*p1++);
- c2 = TOLOWER (*p2++);
- if (c1 == '\0' || c1 != c2)
- return c1 - c2;
- } while (--n > 0);
-
- return c1 - c2;
-}
-#ifndef __strncasecmp
-weak_alias (__strncasecmp, strncasecmp)
-#endif
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 2000-08-23 22:24+0100\n"
"Last-Translator: Milan Kerslager <milan.kerslager@spsselib.hiedu.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"ovìøit instalaci balíèku pou¾itím stejných voleb pro specifikaci balíèku, "
"jako pro -q"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "nekontrolovat závislosti balíèkù"
msgid "bin/src package (prep, compile, install, package)"
msgstr "bin/src balíèek (pøíprava, kompilace, instalace, zabalení)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "pøeskoèit pøímo na urèenou etapu (pouze pro c,i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "po dokonèení odstranit sestavovací strom"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr "po dokonèení odstranit zdrojové kódy"
msgid "remove spec file when done"
msgstr "po dokonèení odstranit spec soubor"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr "generovat PGP/GPG podpis"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr "øádek %d: Druhý %%files seznam"
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Architektura je vyøazena: %s"
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr "Architektura není vyøazena: %s"
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr "OS je vyøazen: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr "OS není vyøazen: %s"
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr "Polo¾ka %s musí být v balíèku pøítomna: %s"
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Duplikovaná polo¾ka %s v balíèku: %s"
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nemohu otevøít ikonu %s: %s"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nemohu pøeèíst ikonu %s: %s"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr "Neznámý typ ikony: %s"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "øádek %d: Poèkozená znaèka: %s"
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "øádek %d: Prázdná znaèka: %s"
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "øádek %d: Nepøípustný znak '-' v %s: %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot nemù¾e být \"/\": %s"
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "øádek %d: Prefixy nesmí konèit znakem \"/\": %s"
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "øádek %d: Docdir musí zaèínat '/': %s"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "øádek %d: Polo¾ka Epoch/Serial musí být èíslo: %s"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "øádek %d: ©patné èíslo %s: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "øádek %d: ©patný formát BuildArchitecture: %s"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Interní chyba: ©patná znaèka: %d"
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr "¹patná specifikace balíèku: %s"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr "Balíèek ji¾ existuje: %s"
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "øádek %d: Neznámá znaèka: %s"
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr "Spec soubor nemù¾e pou¾ít BuildRoot"
msgid "line %d: Second %s"
msgstr "øádek %d: Druhý %s"
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr "øádek %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr "Neuzavøený %%if"
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean vrátil %d"
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: %%else bez poèíteèního if"
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: %%endif bez poèáteèního if"
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr "po¹kozený pøíkaz %%include"
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr "®ádné architektury pro sestavení"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr "Balíèek nemá ¾ádné %%description: %s"
msgid "line %d: Bad %s number: %s\n"
msgstr "øádek %d: ©patné èíslo %s: %s\n"
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Nemohu pøejmenovat %s na %s: %s\n"
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "Nemohu provést unlink %s: %s\n"
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr "(chyba: 0x%x)"
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr "©patné magické èíslo"
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr "©patná nebo neèitelná hlavièka"
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr "Velikost hlavièky je pøili¹ velká"
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr "Neznámý typ souboru"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr "Chybìjící hardlink"
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr "Interní chyba"
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr "selhal - "
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
-#, c-format
-msgid "db%d error(%d)"
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
+#, fuzzy, c-format
+msgid "db%d error(%d) from %s: %s\n"
msgstr "db%d error(%d)"
-#: lib/db1.c:93 lib/db3.c:453
-#, c-format
-msgid " performing %s"
-msgstr " provádím %s"
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
+#, fuzzy, c-format
+msgid "db%d error(%d): %s\n"
+msgstr "db%d error(%d)"
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr "zavøen db soubor %s\n"
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr "odstranìn db soubor %s\n"
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr "¹patný db soubor %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "otevírám db soubor %s mode 0x%x\n"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "nemohu zamknout databázi %s"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr "výhradní"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr "sdílený"
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr "zavøeno db prostøedí %s/%s(%s)\n"
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr "smazáno db prostøedí %s/%s(%s)\n"
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr "otevøeno db prostøedí %s/%s(%s) %s\n"
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr "zavøen db index %s/%s(%s)\n"
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr "otevøen db index %s/%s(%s) %s mode=0x%x\n"
-#: lib/db3.c:267
-#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+#: lib/db3.c:268
+#, fuzzy, c-format
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr "dbiSetConfig: ignorována neznámá db volba: \"%s\"\n"
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr "%s má neplatnou numerickou hodnotu, pøeskoèeno\n"
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr "%s má moc velkou nebo moc malou long hodnotu, pøeskoèeno\n"
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr "%s má pøíli¹ velkou nebo moc malou celoèíselnou hodnotu, pøeskoèeno\n"
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr "uzavøeno DB prostøedí %s/%s\n"
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr "odstranìno db prostøedí %s/%s\n"
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "otevírám db environment %s/%s %s\n"
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr "uzavøen db index %s/%s\n"
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otevírám db index %s/%s %s mode=0x%x\n"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "nemohu zamknout databázi zámkem %s v %s/%s\n"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr "uzamèen db index %s/%s\n"
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"na http://www.rpm.org nebo v diskuzním listu rpm-list@redhat.com.\n"
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(není èíslo)"
msgstr "soubor %s je na neznámém zaøízení"
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
#, fuzzy
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "Poèet RPM_STRING_TYPE pro grabData() musí být 1.\n"
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datový typ %d není podporován\n"
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "Chybný poèet pro headerAddEntry(): %d\n"
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "chybí { po %"
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "po %{ chybí }"
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "prázdný formát znaèky"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "prázdné jméno znaèky"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "neznámá znaèka"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "na konci pole oèekáváno ]"
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "neoèekávaná ]"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "neoèekávaná }"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "ve výrazu oèekáván ?"
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr "ve výrazu je po ? oèekávána {"
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "ve výrazu je oèekávána }"
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr "v podvýrazu je po ? oèekávána :"
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr "ve výrazu je po : oèekávána {"
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "na konci výrazu je oèekáváno |"
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(neznámý typ)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "rozbalování archívu selhalo %s%s: %s"
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr " na souboru "
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr "instaluji zdrojový balíèek\n"
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr "nemohu vytvoøir adresáø pro zdrojové soubory: %s"
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr "nemohu zapsat do %s"
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr "zdrojové soubory v: %s\n"
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr "nemohu vytvoøit adresáø pro spec soubory: %s"
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr "spec soubor v: %s\n"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr "zdrojový balíèek neobsahuje spec soubor"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr "pøejmenovávám %s na %s\n"
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "pøejmenování %s na %s selhalo: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární"
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "balíèek: %s-%s-%s test souborù = %d\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr "ukonèuji instalaci, proto¾e je spu¹tìn --test\n"
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr "spou¹tím pøípadný pøedinstalaèní skript\n"
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "pøeskakuji %s - pøenos selhal - %s\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "varování: %s vytvoøeno jako %s"
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "varování: %s ulo¾eno jako %s"
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr "spou¹tím pøípadný postinstalaèní skript\n"
msgstr "tato verze RPM podporuje práci s balíèky s hlavním (major) èíslem <= 4"
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr "buildroot ji¾ byl nastaven"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "pøíprava (rozbalí zdroje a aplikuje záplaty)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
#, fuzzy
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr "provádím %%prep èást podle spec souboru"
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "provádím %%install èást podle spec souboru"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "kontrola èásti %%files ve spec souboru"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "vytvoøení zdrojového a binárního balíèku podle spec souboru"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "vytvoøení binárního balíèku podle spec souboru"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "vytvoøení zdrojového balíèku podle spec souboru"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "pøíprava (rozbalí zdroje a aplikuje záplaty)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
#, fuzzy
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr "provádím %%prep èást z tar souboru"
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr "provádím %%install èást z tar souboru"
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "kontrola èásti %%files z tar souboru"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "vytvoøení zdrojového a binárního balíèku z tar souboru"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "vytvoøení binárního balíèku z tar souboru"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "vytvoøení zdrojového balíèku z tar souboru"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "vytvoøení binárního balíèku ze zdrojového"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "¾ádné balíèky\n"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "provádím %%install èást ze zdrojového balíèku"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr "build root pøedefinován"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr "nespou¹tìt ¾ádné etapy vytváøení balíèku"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
#, fuzzy
msgid "do not accept i18N msgstr's from specfile"
msgstr "ignorovat I18N zprávy ve spec souboru"
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr "po dokonèení odstranit spec soubor"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr "cílová platforma pøedefinována"
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
#, fuzzy
msgid "lookup i18N strings in specfile catalog"
msgstr "vyhledat I18N øetìzce katalogu spec souboru"
msgid "record %d could not be read\n"
msgstr "záznam %d nelze pøeèíst\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "balíèek %s není nainstalován\n"
msgid "retrieved %d packages\n"
msgstr "pøijato %d balíèkù\n"
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "nemohu otevøít soubor %s: %s\n"
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nemù¾e být nainstalován\n"
msgid "cannot open Packages database in %s\n"
msgstr "nemohu otevøít databázi balíèkù v %s\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr "balíèek %s není pøemístitelný\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr "chyba pøi ètení ze souboru %s\n"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "soubor %s vy¾aduje novìj¹í verzi RPM\n"
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "nalezeno %d zdrojových a %d binárních balíèkù\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "nevyøe¹ené závislosti:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr "instaluji binární balíèky\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "chyba: nemohu otevøít %s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" urèuje více balíèkù\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "odstranìní tìchto balíèkù by poru¹ilo závislosti:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "Instaluji %s\n"
msgid "missing architecture name at %s:%d"
msgstr "chybí název architektury u %s:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Neúplný datový øádek %s:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "Pøíli¹ mnoho parametrù v datovém øádku %s:%d"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "Chybné èíslo architektury nebo OS: %s (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "Neúplný standardní øádek %s:%d"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "Pøíli¹ mnoho parametrù ve výchozím øádku u %s:%d"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr "Nemohu expandovat %s"
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr "Nemohu èíst %s, HOME je pøíli¹ velký."
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "Nemohu otevøít %s pro ètení: %s."
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "Nemohu èíst %s: %s."
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "chybí ':' (nalezeno na 0x%02x) v %s:%d"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "chybí parametr pro %s u %s:%d"
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "expanze %s selhala na %s:%d \"%s\""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "nemohu otevøít soubor %s na %s:%d: %s"
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "chybí architektura pro %s u %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "chybná volba '%s' u %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr "Neznámý systém: %s\n"
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Zkontaktujte prosím rpm-list@redhat.com\n"
msgstr "Chybná odezva FTP serveru"
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+#, fuzzy
+msgid "Server I/O error"
msgstr "IO chyba serveru"
#: rpmio/rpmio.c:543
msgstr "Selhalo navázání datového spojení se serverem"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "IO chyba pøi lokálním souboru"
#: rpmio/rpmio.c:561
msgid "failed to create %s: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
+#~ msgid " performing %s"
+#~ msgstr " provádím %s"
+
#, fuzzy
#~ msgid ""
#~ " %s {-b|t}[plcibas] [-v] [--short-circuit] [--clean] [--macros "
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 2000-03-07 05:17+01:00\n"
"Last-Translator: K. Christiansen <kenneth@gnu.org>\n"
"Language-Team: Danish/Dansk <dansk@klid.dk>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr " ... som %s\n"
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
-msgstr ""
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
+msgstr "Kan ikke åbne spec-fil %s: %s\n"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "ingen pakker\n"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr "modtager %d pakker\n"
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "kan ikke åbne fil %s: %s\n"
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr "Kan ikke åbne %s/packages.rpm\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr "installerer binære pakker\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "Kan ikke åbne %s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan ikke åbne %s: %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr "Kan ikke udvide %s"
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "kan ikke åbne %s ved %s:%d: %s"
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "manglende arkitektur for %s ved %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "ugyldig flag '%s' ved %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr "Ukendt system: %s\n"
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Kontakt venligst rpm-list@redhat.com\n"
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
-msgstr ""
+#, fuzzy
+msgid "Server I/O error"
+msgstr "Tidsudløb for tjener"
#: rpmio/rpmio.c:543
msgid "Server timeout"
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 1998-08-03 18:02+02:00\n"
"Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
"Language-Team: German <de@li.org>\n"
msgstr ""
"Ein Paket mit denselben Paketspezifikations-Optionen wie bei -q überprüfen"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "Dateiabhängigkeiten nicht überprüfen"
"Binär- und Quellpaket erstellen (präparieren, kompilieren, installieren und "
"Paketieren"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "Direkt zur angegeben Stufe springen (nur für c und i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "Erstellungsdateibaum nach Beendigung löschen"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
#, fuzzy
msgid "remove sources when done"
msgstr "Quellen und spec-Dateien nach Beendigung löschen"
msgid "remove spec file when done"
msgstr "Quellen und spec-Dateien nach Beendigung löschen"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
#, fuzzy
msgid "generate PGP/GPG signature"
msgstr "PGP-Signatur generieren"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nicht möglich %s zu schreiben"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(unbekannter Typ)"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "Verschiebungen müssen mit einem »/« beginnen"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "ungültige Paket-Nummer: %s\n"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "ungültige Paket-Nummer: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "fehlende Architektur für %s bei %s:%d"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Optionen der Paketauswahl:"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgstr ""
# , c-format
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
#, fuzzy
msgid "No buildable architectures"
msgstr "Paket-Architektur nicht überprüfen"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "Paket %s wird nicht in %s aufgeführt"
msgstr "ungültige Paket-Nummer: %s\n"
# , c-format
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "Fehler: "
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
#, fuzzy
msgid "Unknown file type"
msgstr "(unbekannter Typ)"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
#, fuzzy
msgid "Internal error"
msgstr "Fataler Fehler: "
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
#, fuzzy
msgid " failed - "
msgstr "pgp fehlgeschlagen"
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
# , c-format
-#: lib/db1.c:422
+#: lib/db1.c:421
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "kann %s lock für die Datenbank nicht bekommen"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr "exklusiv"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr "geteilt"
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "kann %s lock für die Datenbank nicht bekommen"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(keine Zahl)"
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "fehlende { nach %{"
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "fehlende } nach %{"
# »Tag« übersetzen??? -ke-
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "leeres »Tag«-Format"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "leerer »Tag«-Name"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "unbekannter »Tag«"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "] am Ende des Arrays erwartet"
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "unerwartete ]"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "unerwartete }"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "? im Ausdruck erwartet"
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
#, fuzzy
msgid "{ expected after ? in expression"
msgstr "{ nach ? im Ausdruck erwartet"
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "} im Ausdruck erwartet"
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ": nach ? Unterausdruck erwartet"
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
#, fuzzy
msgid "{ expected after : in expression"
msgstr "{ nach : im Ausdruck erwartet"
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "| am Ende des Ausdrucks erwartet"
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(unbekannter Typ)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
#, fuzzy
msgid "installing a source package\n"
msgstr "Paket installieren"
-#: lib/install.c:720
+#: lib/install.c:721
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "kann Datei %s nicht öffnen: "
# , c-format
-#: lib/install.c:760
+#: lib/install.c:761
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
#, fuzzy
msgid "source package contains no .spec file"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "umbennen von %s nach %s fehlgeschlagen: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/install.c:974
+#: lib/install.c:975
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
"Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
+# , c-format
#: lib/poptBT.c:94
-msgid "buildroot already specified"
-msgstr ""
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
+msgstr "Lesen von %s fehlgeschlagen: %s."
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "präparieren (Quellen entpacken und Patch-Dateien anwenden"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "Paket installieren"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "präparieren (Quellen entpacken und Patch-Dateien anwenden"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "Erstelle die Pakete für das Betriebssystem <BS>"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr ""
"Binärpaket erstellen (präparieren, kompilieren, installieren und paketieren)"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "Anfrage an alle Pakete"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "Paket installieren"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
#, fuzzy
msgid "override build root"
msgstr "Benutze <VERZ> als Stammverzeichnis beim Erstellen"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "Keine Stufen ausführen"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
#, fuzzy
msgid "remove specfile when done"
msgstr "Quellen und spec-Dateien nach Beendigung löschen"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr "Eintrag %d konnte nicht gelesen werden\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "Paket %s ist nicht installiert\n"
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "Fehler: %s kann nicht installiert werden\n"
msgid "cannot open Packages database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
#, fuzzy
msgid "installing binary packages\n"
msgstr "Paket installieren"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" bezeichnet mehrere Pakete\n"
# oder besser: "... verletzen" ?
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "Installiere %s\n"
msgid "missing architecture name at %s:%d"
msgstr "fehlender Name cer Architektur bei %s:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Unvollständige Datenzeile bei %s:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "Zu viele Argumente in der Datenzeile bei %s:%d"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "Unzureichende arch/os Zahl: %s (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "Unvollständige Standardzeile bei %s:%d"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "Zu viele Argumente in der Standardzeile bei %s:%d"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
# , c-format
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
# , c-format
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "fehlender ':' bei %s:%d"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "fehlendes Argument für %s bei %s:%d"
# , c-format
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "fehlende Architektur für %s bei %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "unzureichende Option '%s' bei %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
#: rpmio/rpmio.c:540
#, fuzzy
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr "FTP IO-Fehler"
#: rpmio/rpmio.c:543
msgstr "Aufbau einer Datenverbindung zum FTP-Server fehlgeschlagen"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "IO-Fehler bei lokaler Datei"
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
"tarkista paketin asennus käyttäen samoja paketin määrittelyparametrejä kuin "
"-q "
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "älä tarkista paketin riippuvuuksia"
msgid "bin/src package (prep, compile, install, package)"
msgstr "bin/src-paketti (valmistele, käännä, asenna, paketoi)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "siirry suoraan määriteltyyn vaiheeseen (vain c ja i yhteydessä)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "poista käännöspuu, kun valmis"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
#, fuzzy
msgid "remove sources when done"
msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
msgid "remove spec file when done"
msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
#, fuzzy
msgid "generate PGP/GPG signature"
msgstr "generoi PGP-allekirjoitus"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(tuntematon tyyppi)"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "en voinut avata %s: %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "siirtojen pitää alkaa /-merkillä"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "virheellinen paketin numero: %s\n"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "virheellinen paketin numero: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Paketin määrittelyparametrit:"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "en voinut avata %s: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
#, fuzzy
msgid "No buildable architectures"
msgstr "älä tarkista paketin arkkitehtuuria"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "paketti %s ei ole %s:ssä"
msgid "line %d: Bad %s number: %s\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "En voi lukea %s: %s."
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "virhe: "
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
#, fuzzy
msgid "Unknown file type"
msgstr "(tuntematon tyyppi)"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
#, fuzzy
msgid "Internal error"
msgstr "vakava virhe: "
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
#, fuzzy
msgid " failed - "
msgstr "pgp epäonnistui"
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "en voinut avata %s: %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "en voi saada %s lukitusta tietokantaan"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr "poissulkevaa"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr "jaettua"
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "en voi saada %s lukitusta tietokantaan"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(ei ole luku)"
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "puuttuva '{' '%':n jälkeen"
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "puuttuva '{' '%{':n jälkeen"
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "tyhjä nimiön formaatti"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "tyhjä nimiön nimi"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "tuntematon nimiö"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "']' puuttuu taulukkomäärittelyn lopusta"
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "odottamaton ']'"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "odottamaton '}'"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "odotin '?'-merkkiä ilmauksessa"
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
#, fuzzy
msgid "{ expected after ? in expression"
msgstr "odotin '{' '?'-merkin jälkeen ilmauksessa "
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "odotin '}'-merkkiä ilmauksessa"
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr "odotin ':' '?'-merkin jälkeen ali-ilmauksessa "
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
#, fuzzy
msgid "{ expected after : in expression"
msgstr "odotin '{' ':'-merkin jälkeen ilmauksessa "
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "odotin '}'-merkkiä ilmauksen lopussa"
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(tuntematon tyyppi)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
#, fuzzy
msgid "installing a source package\n"
msgstr "asenna paketti"
-#: lib/install.c:720
+#: lib/install.c:721
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:760
+#: lib/install.c:761
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
#, fuzzy
msgid "source package contains no .spec file"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
"tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
#: lib/poptBT.c:94
-msgid "buildroot already specified"
-msgstr ""
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
+msgstr "En voi lukea %s: %s."
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "valmistele (pura lähdekoodi ja tee korjaukset)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "asenna paketti"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "valmistele (pura lähdekoodi ja tee korjaukset)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "käännä paketit käyttöjärjestelmälle <kj>"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "binääripaketti (valmistele, käännä, asenna, paketoi)"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "kysele kaikki paketit"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "asenna paketti"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
#, fuzzy
msgid "override build root"
msgstr "käytä <hakem> käännöspuun juurena"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "älä suorita mitään vaiheita"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
#, fuzzy
msgid "remove specfile when done"
msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr "tietuetta %d ei voitu lukea\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "paketti %s ei ole asennettu\n"
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "virhe: %s ei voida asentaa\n"
msgid "cannot open Packages database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "puuttuvat riippuvuudet:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
#, fuzzy
msgid "installing binary packages\n"
msgstr "asenna paketti"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" määrittää useita paketteja\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "virhe: en voi avata %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "Asennan: %s\n"
msgid "missing architecture name at %s:%d"
msgstr "puuttuva arkkitehtuurin nimi, %s:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Epätäydellinen datarivi, %s:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "liian monta parametriä datarivillä %s:%d"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "Huono arkkitehtuuri/käyttöjärjestelmä numero: %s (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "Epätäydellinen oletusrivi, %s:%d"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "liian monta parametriä oletusrivillä %s:%d"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "En voi avata %s luettavaksi: %s."
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "En voi lukea %s: %s."
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "puuttuva ':', %s:%d"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "%s:n puuttuva parametri %s:%d"
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "en voinut avata %s: %s"
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "huono parametri '%s', %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
#: rpmio/rpmio.c:540
#, fuzzy
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr "FTP:n IO-virhe"
#: rpmio/rpmio.c:543
msgstr "En saanut data-yhteyttä FTP-palvelijaan"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "Paikallisen tiedoston IO-virhe"
#: rpmio/rpmio.c:561
msgid ""
-msgstr "POT-Creation-Date: 2001-01-01 19:44-0500\n"
+msgstr "POT-Creation-Date: 2001-01-03 14:05-0500\n"
#: build.c:26
#, fuzzy, c-format
"options as -q"
msgstr "\t\t\t mêmes options de spécification de package qu'avec -q"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr "\t\t\t a - package bin/src (prépare, compile, installe, package)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
#, fuzzy
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
" --short-circuit - passe directement à l'étape spécifiée (seulement "
"pour c,i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
#, fuzzy
msgid "remove build tree when done"
msgstr " --clean - efface l'arborescence après construction"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
#, fuzzy
msgid "remove sources when done"
msgstr " --clean - efface l'arborescence après construction"
msgid "remove spec file when done"
msgstr " --clean - efface l'arborescence après construction"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
#, fuzzy
msgid "generate PGP/GPG signature"
msgstr " --sign - genère une signature PGP"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Options de spécification de package:"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "impossible d'ouvrir: %s\n"
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
#, fuzzy
msgid "No buildable architectures"
msgstr "%s ne peut être construit sur cette architecture\n"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "aucun package n'a été spécifié pour la désinstallation"
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
#, fuzzy
msgid " failed - "
msgstr "La construction a échoué.\n"
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "impossible d'ouvrir: %s\n"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, fuzzy, c-format
msgid "cannot get %s lock on database"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
#, fuzzy
msgid "unexpected ]"
msgstr "source de requête inattendue"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
#, fuzzy
msgid "unexpected }"
msgstr "source de requête inattendue"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
#, fuzzy
msgid "source package contains no .spec file"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
-msgstr ""
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
+msgstr "impossible d'ouvrir: %s\n"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "\t\t\t p - prépare (extrait le source et applique les patches)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "\t\t\t p - prépare (extrait le source et applique les patches)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "\t\t\t b - package binaire (prépare, compile, installe, package)"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
#, fuzzy
msgid "remove specfile when done"
msgstr " --clean - efface l'arborescence après construction"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "aucun package n'a été spécifié pour l'installation"
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "aucun package n'a été spécifié pour l'installation"
msgid "cannot open Packages database in %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s."
msgstr "impossible d'ouvrir: %s\n"
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 2000-08-02 13:00+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "gat ekki búið til %s: %s\n"
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "gat ekki búið til %s: %s\n"
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
-msgstr ""
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
+msgstr "Gat ekki lesið spec skrá frá %s\n"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "fyrirspurn á pakkann sem á <skrá>"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "get ekki opnað %s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 1999-12-01 22:49 +JST\n"
"Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
# build root [BuildRoot]
# net share [¥Í¥Ã¥È¶¦Í]
# reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë]
-# $Id: ja.po,v 1.139 2001/01/02 17:19:36 jbj Exp $
+# $Id: ja.po,v 1.140 2001/01/03 20:19:29 jbj Exp $
#: rpm.c:185 rpmqv.c:386
#, c-format
msgid "rpm: %s\n"
"-q ¤ÈƱÍͤËƱ¤¸¥Ñ¥Ã¥±¡¼¥¸»ØÄꥪ¥×¥·¥ç¥ó¤ò¼è¤ê\n"
"¥¤¥ó¥¹¥È¡¼¥ë¤Î¾õ¶·¤ò¸¡¾Ú¤·¤Þ¤¹"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
msgid "bin/src package (prep, compile, install, package)"
msgstr "¥Ð¥¤¥Ê¥ê/¥½¡¼¥¹¤ò¥Ñ¥Ã¥±¡¼¥¸²½ (prep¡¢compile¡¢install¡¢package)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "»ØÄꤷ¤¿²áÄø¤Þ¤Ç¥¹¥¥Ã¥×¤·¤Þ¤¹ (c¡¢i ¤Ç¤Î¤ß͸ú)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ó¥°¸åºîÀ®¥Ä¥ê¡¼¤òºï½ü¤·¤Þ¤¹"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
#, fuzzy
msgid "remove sources when done"
msgstr "½ªÎ»¸å¥½¡¼¥¹¤òºï½ü¤·¤Þ¤¹"
msgid "remove spec file when done"
msgstr "½ªÎ»¸å¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Þ¤¹"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
#, fuzzy
msgid "generate PGP/GPG signature"
msgstr "PGP/GPG ½ð̾¤òÀ¸À®¤·¤Þ¤¹"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%%files ¥ê¥¹¥È"
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr "¥¢¡¼¥¥Æ¥¯¥Á¥ã¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr "¥¢¡¼¥¥Æ¥¯¥Á¥ã¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr "OS ¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr "%s ¥Õ¥£¡¼¥ë¥É¤Ï¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ËɬÍפǤ¹: %s"
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ÎÆó½Å¤Î %s ¥¨¥ó¥È¥ê: %s"
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr "ÉÔÌÀ¤Ê¥¢¥¤¥³¥ó¥¿¥¤¥×: %s"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "%d ¹ÔÌÜ: ÉÔ´°Á´¤Ê·Á¤Î¥¿¥°: %s"
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "%d ¹ÔÌÜ: ¶õ¤Î¥¿¥°: %s"
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "%d ¹ÔÌÜ: %s Ãæ¤ËÉÔÀµ¤Êʸ»ú '-' : %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "%d ¹ÔÌÜ: BuildRoot ¤Ï \"/\" ¤Ë¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "%d ¹ÔÌÜ: Prefixes ¤Ï \"/\" ¤Ç½ª¤ï¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "%d ¹ÔÌÜ: Docdir ¤Ï '/' ¤Ç»Ï¤Þ¤é¤Ê¤¯¤Æ¤Ï¤¤¤±¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "%d ¹ÔÌÜ: Epoch/Serial ¥Õ¥£¡¼¥ë¥É¤ÏÈÖ¹æ¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê BuildArchitecture ¥Õ¥©¡¼¥Þ¥Ã¥È: %s"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "ÆâÉô¥¨¥é¡¼: ¤Ë¤»¤Î¥¿¥° %d"
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr "ÉÔÀµ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤Î»ØÄê: %s"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹: %s"
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÌÀ¤Ê¥¿¥°: %s"
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ï BuildRoot ¤ò»ÈÍѤǤ¤Þ¤»¤ó"
msgid "line %d: Second %s"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%s"
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr "%d ¹ÔÌÜ: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó: %s\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr "%%if ¤¬ÊĤ¸¤Æ¤¤¤Þ¤»¤ó"
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s%d: parseExpressionBoolean ¤¬ %d ¤òÊÖ¤·¤Þ¤·¤¿"
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
#, fuzzy
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: if ¤¬¤Ê¤¤¤Î¤Ë %%else ¤¬¤¢¤ê¤Þ¤¹"
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
#, fuzzy
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: if ¤¬¤Ê¤¤¤Î¤Ë %%endif ¤¬¤¢¤ê¤Þ¤¹"
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr "¤ª¤«¤·¤Ê %%include ¥¹¥Æ¡¼¥È¥á¥ó¥È¤Ç¤¹"
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr "ºîÀ®(build)²Äǽ¤Ê¥¢¡¼¥¥Æ¥¯¥Á¥ã¤Ï¤¢¤ê¤Þ¤»¤ó"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ï %%description ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
msgid "line %d: Bad %s number: %s\n"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n"
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤¬¤Ç¤¤Þ¤»¤ó: %s\n"
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, fuzzy, c-format
msgid "can't unlink %s: %s\n"
msgstr "%s ¤òºï½ü(unlink)¤Ç¤¤Þ¤»¤ó: %s\n"
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "(¥¨¥é¡¼ 0x%x)"
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr "ÉÔÀµ¤Ê¥Þ¥¸¥Ã¥¯"
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr "ÉÔÀµ¤Ê/ÉÔ²ÄÆɤʥإåÀ"
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礤¹¤®¤Þ¤¹"
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
#, fuzzy
msgid "Unknown file type"
msgstr "ÉÔÌÀ¤Ê¥Õ¥¡¥¤¥ë¥¿¥¤¥×"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
#, fuzzy
msgid "Internal error"
msgstr "ÆâÉô¥¨¥é¡¼"
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
#, fuzzy
msgid " failed - "
msgstr "¼ºÇÔ - "
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, fuzzy, c-format
msgid "removed db file %s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/db1.c:422
+#: lib/db1.c:421
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr "½ü³°"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr "¶¦Í"
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, fuzzy, c-format
msgid "closed db environment %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/db3.c:494
+#: lib/db3.c:500
#, fuzzy, c-format
msgid "removed db environment %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"¾ÜºÙ¤Ê¾ðÊ󤬼èÆÀ¤Ç¤¤Þ¤¹¡£\n"
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)"
msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
#, fuzzy
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabDate() RPM_STRING_TYPE ¥«¥¦¥ó¥È¤Ï 1 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n"
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "headerAddEntry() ¤ÎÉÔÀµ¤Ê¥«¥¦¥ó¥È: %d\n"
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "% ¤Î¸å¤Ë { ¤¬¤¢¤ê¤Þ¤»¤ó"
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "%{ ¤Î¸å¤Ë } ¤¬¤¢¤ê¤Þ¤»¤ó"
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "¶õ¤Î¥¿¥°¥Õ¥©¡¼¥Þ¥Ã¥È"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "¶õ¤Î¥¿¥°Ì¾"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "ÉÔÌÀ¤Ê¥¿¥°"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "ÇÛÎó¤Î¸å¤Ë ] ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "ͽ´ü¤»¤Ì ]"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "ͽ´ü¤»¤Ì }"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "¼°Ãæ¤Ç ? ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr "¼°Ãæ¤Ç ? ¤Î¸å¤Ë { ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "¼°Ãæ¤Ë } ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr "°Ê²¼¤Î ? ¥µ¥Ö¼°¤Î ¤Ë: ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr "¼°Ãæ¤Ç : ¤Î¸å¤Ë { ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "¼°¤Î½ª¤ê¤Ë | ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(ÉÔÌÀ¤Ê¥¿¥¤¥×)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿Ä¹¤Ë¼ºÇÔ %s%s: %s"
-#: lib/install.c:651
+#: lib/install.c:652
#, fuzzy
msgid " on file "
msgstr "¥Õ¥¡¥¤¥ë¾å"
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/install.c:720
+#: lib/install.c:721
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "%s ¤òºîÀ®¤Ç¤¤Þ¤»¤ó: %s"
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr "%s ¤Ø½ñ¤¹þ¤á¤Þ¤»¤ó"
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr "¥½¡¼¥¹¤Ï: %s\n"
-#: lib/install.c:750
+#: lib/install.c:751
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "%s ¤òºîÀ®¤Ç¤¤Þ¤»¤ó: %s"
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr "spec ¥Õ¥¡¥¤¥ë¤Ï: %s\n"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr "--test ¤ò¼Â¹Ô¤¹¤ë¤è¤¦¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤òÃæ»ß¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr "¥×¥ê¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "%s ¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹ - žÁ÷¼ºÇÔ - %s\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
-#: lib/install.c:1189
+#: lib/install.c:1193
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
"¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr "¥Ó¥ë¥É¥ë¡¼¥È¤Ï¤¹¤Ç¤Ë»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "prep (¥½¡¼¥¹¤òŸ³«¤·¥Ñ¥Ã¥Á¤òÅö¤Æ¤Þ¤¹)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "°Ê²¼¤Î¥«¥¿¥í¥°¤«¤é i18n ¥»¥¯¥·¥ç¥ó¤òÃÖ¤´¹¤¨¤Þ¤¹"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "prep (¥½¡¼¥¹¤òŸ³«¤·¥Ñ¥Ã¥Á¤òÅö¤Æ¤Þ¤¹)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "°Ê²¼¤Î¥«¥¿¥í¥°¤«¤é i18n ¥»¥¯¥·¥ç¥ó¤òÃÖ¤´¹¤¨¤Þ¤¹"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "¥Ð¥¤¥Ê¥ê¤ò¥Ñ¥Ã¥±¡¼¥¸²½ (prep¡¢compile¡¢install¡¢package)"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
#, fuzzy
msgid "override build root"
msgstr "¥Ó¥ë¥É¥ë¡¼¥È¤ò¾å½ñ¤¤·¤Þ¤¹"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "ºîÀ®¤¹¤ë¤¿¤á¤Î¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
#, fuzzy
msgid "do not accept i18N msgstr's from specfile"
msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤«¤é I18N ¤Ê msgstr ¤ò¼õ¤±Æþ¤ì¤Þ¤»¤ó"
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
#, fuzzy
msgid "remove specfile when done"
msgstr "½ªÎ»¸å¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Þ¤¹"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr "¥¿¡¼¥²¥Ã¥È¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤ò¾å½ñ¤¤·¤Þ¤¹"
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
#, fuzzy
msgid "lookup i18N strings in specfile catalog"
msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¥«¥¿¥í¥°Ãæ¤Î I18N ʸ»úÎó¤òõ¤·¤Æ¤¤¤Þ¤¹"
msgid "record %d could not be read\n"
msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
msgid "retrieved %d packages\n"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¼èÆÀ¤·¤Þ¤·¤¿\n"
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó: %s"
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤¤Þ¤»¤ó\n"
msgid "cannot open Packages database in %s\n"
msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ¤Þ¤»¤ó"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "°Í¸À¤Î·çÇ¡:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü¤¹¤ë¤È°Í¸À¤òÇ˲õ¤·¤Þ¤¹:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
msgid "missing architecture name at %s:%d"
msgstr "%s:%d ¤Ë¥¢¡¼¥¥Æ¥¯¥Á¥ã̾¤¬¤¢¤ê¤Þ¤»¤ó"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "%s:%d ¤Ç¥Ç¡¼¥¿¹Ô¤¬ÉÔ´°Á´¤Ç¤¹"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "%s:%d ¤Ç¥Ç¡¼¥¿¹Ô¤Ë°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "ÉÔÀµ¤Ê arch/os ÈÖ¹æ: %s (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "%s:%d ¤ÇÉÔ´°Á´¤Ê¥Ç¥Õ¥©¥ë¥È¹Ô"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "%s:%d ¤Ç¥Ç¥Õ¥©¥ë¥È¹Ô¤Ï°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr "¿Ä¥¤Ç¤¤Þ¤»¤ó %s"
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "Æɤ߹þ¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó: %s¡£"
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£"
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "%s:%d ¤Ç ':' ¤¬¤¢¤ê¤Þ¤»¤ó"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "%s ¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó %s:%d"
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "%s ¤Î¿Ä¥¼ºÇÔ %s:%d \"%s\""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó %s:%d"
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "%s ÍѤΥ¢¡¼¥¥Æ¥¯¥Á¥ã¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "'%s' ¤ÎÉÔÀµ¤Ê¥ª¡¼¥×¥ó %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr "ÉÔÌÀ¤Ê¥·¥¹¥Æ¥à: %s\n"
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr "rpm-list@redhat.com ¤ËÏ¢Íí¤ò²¼¤µ¤¤\n"
#: rpmio/rpmio.c:540
#, fuzzy
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr "¥µ¡¼¥Ð IO ¥¨¥é¡¼"
#: rpmio/rpmio.c:543
msgstr "¥µ¡¼¥Ð¤È¤Î¥Ç¡¼¥¿¥³¥Í¥¯¥·¥ç¥ó¤Î³ÎΩ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "¥í¡¼¥«¥ë¥Õ¥¡¥¤¥ë¤Î IO ¥¨¥é¡¼"
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 2000-08-17 20:22+02:00\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
"verifisér en pakkeinstallasjon ved å bruke samme alternativer for "
"pakkespesifikasjon som -q"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "ikke verifiser pakkeavhengigheter"
msgid "bin/src package (prep, compile, install, package)"
msgstr "bin/src pakke (prep, kompilér, installér, pakk)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "hopp rett til spesifisert steg (kun for c,i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "fjern byggtréet når ferdig"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr "fjern kildekoden når ferdig"
msgid "remove spec file when done"
msgstr "fjern specfilen når ferdig"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr "generér PGP/GPG signatur"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "kunne ikke opprette %s: %s\n"
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "kunne ikke opprette %s: %s\n"
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
-msgstr ""
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
+msgstr "Feil under lesing av spec fil fra %s\n"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "prep (pakk ut kildekoden og legg til patcher)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "fant %d kilde- og %d binærpakker\n"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "spør pakke som eier <fil>"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "prep (pakk ut kildekoden og legg til patcher)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "fant %d kilde- og %d binærpakker\n"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "binær pakke (prep, kompilér, installér, pakk)"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr "kan ikke åpne pakkedatabase i %s\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakke %s kan ikke relokeres\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr "feil under lesing fra fil %s\n"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "fil %s trenger en nyere versjon av RPM\n"
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "fant %d kilde- og %d binærpakker\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "feilede avhengigheter:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr "installerer binærpakker\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "kan ikke åpne %s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" spesifiserer flere pakker\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "fjerning av disse pakkene vil ødelegge avhengigheter:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan ikke åpne %s: %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
msgid "missing architecture name at %s:%d"
msgstr "manglende navn på arkitektur ved %s:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Ukomplett datalinje ved %s:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 1999-05-25 17:00+0100\n"
"Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
"options as -q"
msgstr "sprawd¼ stan pakietu (u¿ywa tych samych opcji co -q)"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "nie sprawdzaj zale¿no¶ci pakietu"
msgid "bin/src package (prep, compile, install, package)"
msgstr "pakiet binarny/¼ród³owy (preparuj, kompiluj, instaluj, pakiet)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "przejd¼ od razu do podanego etapu (tylko dla c,i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "usuñ budowane drzewo po skoñczeniu"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr "usuñ ¼ród³a po zakoñczeniu"
msgid "remove spec file when done"
msgstr "usuñ speca po zakoñczeniu"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr "generuj sygnaturê PGP/GPG"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr "linia %d: Druga lista %%files"
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Architektura nie jest wspierana: %s"
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr "Architektura nie jest wspierana: %s"
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr "Ten OS nie jest wspierany: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr "Ten OS nie jest wspierany: %s"
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr "pole %s musi byæ obecne w pakiecie: %s"
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Podwójne wpisy %s w pakiecie: %s"
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nie mo¿na odczytaæ ikony: %s"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nie mo¿na odczytaæ ikony: %s"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr "Nieznany typ ikony: %s"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "linia %d: Niepoprawna forma etykiety: %s"
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "linia %d: Pusta etykieta: %s"
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "linia %d: Nielegalny znak '-' w %s: %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "linia %d: wpis BuildRoot nie mo¿e byæ \"/\": %s"
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "linia %d: Prefiksy nie mog± siê koñczyæ na \"/\": %s"
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "linia %d: wpis Docdir musi siê zaczynaæ od '/': %s"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "linia %d: pole Epoch/Serial musi byæ liczb±: %s"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "linia %d: B³êdny numer %s: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "linia %d: B³êdny format wpisu BuildArchitecture: %s"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "B³±d wewnêtrzny: Fa³szywa etykieta %d"
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr "B³êdna specyfikacja pakietu: $s"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr "Pakiet ju¿ istnieje: %s"
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "linia %d: Nieznana etykieta: %s"
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr "W pliku spec nie mo¿na u¿ywaæ wpisów BuildRoot"
msgid "line %d: Second %s"
msgstr "linia %d: Drugi %s"
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr "linia %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "Nie mo¿na otworzyæ: %s\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr "Niedomkniête %%if"
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: Napotkano %%else bez if"
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: Napotkano %%endif bez if"
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr "b³ednie sformatowany wpis %%include"
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr "Nie mo¿na budowaæ na takie architektury"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr "Pakiet nie ma %%description: %s"
msgid "line %d: Bad %s number: %s\n"
msgstr "linia %d: B³êdny numer %s: %s\n"
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "nie mo¿na zmieniæ nazwy %s na %s: %s\n"
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "nie mo¿na odwi±zaæ %s: %s\n"
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr "(b³±d 0x%x)"
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr "B³êdny magic"
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr "B³êdny/nieczytelny nag³ówek"
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr "Rozmiar nag³ówka jest zbyt du¿y"
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr "Nieznany typ pliku"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr "Brak twardego dowi±zania"
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr "B³±d wewnêtrzny"
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr " nie powiod³o siê -"
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, fuzzy, c-format
msgid "removed db file %s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: lib/db1.c:422
+#: lib/db1.c:421
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "b³êdny status pliku: %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, fuzzy, c-format
msgid "closed db environment %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: lib/db3.c:494
+#: lib/db3.c:500
#, fuzzy, c-format
msgid "removed db environment %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(nie jest liczb±)"
msgstr "plik %s jest na nieznanym urz±dzeniu"
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
#, fuzzy
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n"
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ danych %d nie jest obs³ugiwany\n"
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "B³edny licznik dla headerAddEntry(): %d\n"
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "brak { po %"
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "brak } po %{"
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "pusty format etykiety"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "pusta nazwa etykiety"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "nieznana etykieta"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "spodziewany ] na koñcu tablicy"
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "nie spodziewany ]"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "nie spodziewany }"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "spodziewany ? w wyra¿eniu"
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr "spodziewany { po ? w wyra¿eniu"
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "spodziewany } w wyra¿eniu"
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr "spodziewany : po podwyra¿eniu ?"
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr "spodziewany { po : w wyra¿eniu"
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "spodziewany | na koñcu wyra¿enia"
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(nieznany typ)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr " na pliku "
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr "instacja pakietu ¼ród³owego\n"
-#: lib/install.c:720
+#: lib/install.c:721
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "nie mo¿na utworzyæ %s"
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr "nie mo¿na zapisaæ do %s"
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr "¼ród³a w: %s\n"
-#: lib/install.c:750
+#: lib/install.c:751
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "nie mo¿na utworzyæ %s"
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr "plik spec w: %s\n"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr "zmiana nazwy %s na %s\n"
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "zmiana nazwy z %s na %s nie powiod³a sie: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "pakiet: %s-%s-%s test plików = %d\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr "przebieg testowy - instalacja zatrzymana\n"
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr "uruchamianie skryptu preinstall (je¶li istnieje)\n"
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "ostrze¿enie: %s utworzony jako %s"
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "ostrze¿enie: %s zapisany jako %s"
-#: lib/install.c:1189
+#: lib/install.c:1193
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
"tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr "buildroot by³ ju¿ wcze¶niej podany"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "preparuj (rozpakuj ¼ród³a i na³ó¿ ³aty)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "instacja pakietu ¼ród³owego\n"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "preparuj (rozpakuj ¼ród³a i na³ó¿ ³aty)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "pakiet binarny (preparuj, kompiluj, instaluj, pakiet)"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "znaleziono %d pakietów\n"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "instacja pakietu ¼ród³owego\n"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr "wymu¶ build root"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr "nie wykonuj ¿adnych etapów budowania"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
#, fuzzy
msgid "do not accept i18N msgstr's from specfile"
msgstr "nie akceptuj wpisów I18N ze speca"
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr "usuñ speca po zakoñczeniu"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr "wymu¶ platformê docelow±"
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
#, fuzzy
msgid "lookup i18N strings in specfile catalog"
msgstr "wyszukaj wpisy I18N w katalogu speca"
msgid "record %d could not be read\n"
msgstr "nie mo¿na odczytaæ rekordu %d\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "pakiet %s nie jest zainstalowany\n"
msgid "retrieved %d packages\n"
msgstr "¶ci±gniêto %d pakietów\n"
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie mo¿na otworzyæ pliku %s: %s"
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie mo¿e byæ zainstalowany\n"
msgid "cannot open Packages database in %s\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakiet %s nie jest przesuwalny\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr "b³±d czytania z pliku %s\n"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "plik %s wymaga nowszej wersji RPM\n"
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "niespe³nione zale¿no¶ci:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr "instalacja pakietów binarnych\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" okre¶la wiele pakietów\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie mo¿na otworzyæ %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "Instalacja %s\n"
msgid "missing architecture name at %s:%d"
msgstr "brak nazwy architektury przy %s:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Niekompletna linia danych przy %s:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "Zbyt wiele argumentów w linii danych przy %s:%d"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "B³êdny numer arch/os: %s (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "Niekompletna domy¶lna linia przy %s:%d"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "Zbyt wiele argumentów w linii domy¶lnej przy %s:%d"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr "Nie mo¿na rozszerzyæ %s"
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "Odczytanie %s nie powiod³o siê: %s."
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "brak ':' przy %s:%d"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "brak argumentu dla %s przy %s:%d"
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "nie mo¿na otworzyæ %s przy %s:%d"
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "brak architektury dla %s przy %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "b³êdna opcja '%s' przy %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr "Nieznany system: %s\n"
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n"
msgstr "B³êdna odpowied¼ serwera"
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+#, fuzzy
+msgid "Server I/O error"
msgstr "B³±d WE/WY(IO) serwera"
#: rpmio/rpmio.c:543
msgstr "Otwarcie transmisji danych z serwera nie powiod³o siê"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "B³±d WE/WY(IO) na lokalnym pliku"
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 2000-08-01 21:11+01:00\n"
"Last-Translator: Pedro Morais <morais@poli.org>\n"
"Language-Team: pt <morais@poli.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
-msgstr ""
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
+msgstr "não consigo abrir ficheiro spec %s: %s\n"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
"não consegui abrir %s/packages.rpm\n"
"\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
# Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
#
msgid ""
-msgstr "POT-Creation-Date: 2001-01-01 19:44-0500\n"
+msgstr "POT-Creation-Date: 2001-01-03 14:05-0500\n"
# , c-format
#: build.c:26
"verifique uma instalação de pacote usando as mesmas opções de especificação "
"de pacote do -q"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "não verifique as dependências do pacote"
msgid "bin/src package (prep, compile, install, package)"
msgstr "pacote bin/src (prep, compile, instale, pacote)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "pule direto para o estágio especificado (somente para c,i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "remova a árvore de construção quando terminar"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
#, fuzzy
msgid "remove sources when done"
msgstr "remova a árvore de construção quando terminar"
msgid "remove spec file when done"
msgstr "remova a árvore de construção quando terminar"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
#, fuzzy
msgid "generate PGP/GPG signature"
msgstr "gere assinatura PGP"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "argumentos para o --dbpath devem começar com uma /"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Opcões para especificação de pacotes:"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgstr ""
# , c-format
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
# , c-format
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
# , c-format
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
#, fuzzy
msgid "No buildable architectures"
msgstr "%s não pode ser construido nesta arquitetura\n"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "não foi passado pacote para desinstalação"
msgstr ""
# , c-format
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
#, fuzzy
msgid " failed - "
msgstr "Construção falhou.\n"
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
# , c-format
-#: lib/db1.c:422
+#: lib/db1.c:421
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "Não consegui abrir: %s\n"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, fuzzy, c-format
msgid "cannot get %s lock on database"
msgstr "não foi passado pacote para desinstalação"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "não foi passado pacote para desinstalação"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
#, fuzzy
msgid "unexpected ]"
msgstr "fonte de pesquisa não esperado"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
#, fuzzy
msgid "unexpected }"
msgstr "fonte de pesquisa não esperado"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
#, fuzzy
msgid "installing a source package\n"
msgstr "instale pacote"
# , c-format
-#: lib/install.c:720
+#: lib/install.c:721
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "Não consegui abrir: %s\n"
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
# , c-format
-#: lib/install.c:750
+#: lib/install.c:751
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "Não consegui abrir: %s\n"
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
#, fuzzy
msgid "source package contains no .spec file"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "não foi passado pacote para instalação"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
# , c-format
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
+# , c-format
#: lib/poptBT.c:94
-msgid "buildroot already specified"
-msgstr ""
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
+msgstr "Não consegui ler o arquivo spec de %s\n"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "prep (descompacte fontes e aplique patches)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "instale pacote"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "prep (descompacte fontes e aplique patches)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "pacote binário (prep, compile, instale, pacote)"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "pesquise todos os pacotes"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "instale pacote"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
#, fuzzy
msgid "override build root"
msgstr "use s como o root da construção"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "não execute nenhum estágio"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
#, fuzzy
msgid "remove specfile when done"
msgstr "remova a árvore de construção quando terminar"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "não foi passado pacote para instalação"
msgstr ""
# , c-format
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "não foi passado pacote para instalação"
msgid "cannot open Packages database in %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "não foi passado pacote para instalação"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
#, fuzzy
msgid "failed dependencies:\n"
msgstr "lista dependências do pacote"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
#, fuzzy
msgid "installing binary packages\n"
msgstr "instale pacote"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
#, fuzzy
msgid "removing these packages would break dependencies:\n"
msgstr "lista dependências do pacote"
# , c-format
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
# , c-format
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s."
msgstr "Não consegui abrir: %s\n"
# , c-format
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, fuzzy, c-format
msgid "Failed to read %s: %s."
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
# , c-format
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 1999-04-10 12:00+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 2000-08-08 01:20+0300\n"
"Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
"×ÅÒÉÆÉÃÉÒÏ×ÁÔØ ÉÎÓÔÁÌÌÑÃÉÀ ÐÁËÅÔÁ, ÉÓÐÏÌØÚÕÑ ÔÅ ÖÅ ÏÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ "
"ÐÁËÅÔÁ, ÞÔÏ É -q"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÐÁËÅÔÁ"
msgstr ""
"bin/src package (ÉÓÐÏÌÎÉÔØ %prep, %build, %install, ÓÏÚÄÁÔØ RPM É SRPM)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "ÐÅÒÅÊÔÉ ÎÅÐÏÓÒÅÄÓÔ×ÅÎÎÏ Ë ÕËÁÚÁÎÎÏÍÕ ÜÔÁÐÕ (ÔÏÌØËÏ ÄÌÑ c,i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÄÅÒÅ×Ï ÉÓÈÏÄÎÉËÏ×"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÉÓÈÏÄÎÉËÉ"
msgid "remove spec file when done"
msgstr "ÕÄÁÌÉÔØ spec-ÆÁÊÌ ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ PGP/GPG-ÐÏÄÐÉÓØ"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÊ ÓÐÉÓÏË %%files"
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr "áÒÈÉÔÅËÔÕÒÁ ÉÓËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr "áÒÈÉÔÅËÔÕÒÁ ÎÅ ×ËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr "ïó ÉÓËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr "ïó ÎÅ ×ËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr "ðÏÌÅ %s ÏÂÑÚÁÎÏ ÐÒÉÓÕÔÓÔ×Ï×ÁÔØ × ÐÁËÅÔÅ: %s"
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "äÕÂÌÉÒÕÀÝÉÅÓÑ ÚÁÐÉÓÉ %s × ÐÁËÅÔÅ: %s"
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ ÐÉËÔÏÇÒÁÍÍÙ: %s"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÔÜÇ: %s"
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "ÓÔÒÏËÁ %d: ðÕÓÔÏÊ ÔÜÇ: %s"
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "ÓÔÒÏËÁ %d: îÅÄÏÐÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ '-' × %s: %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot ÎÅ ÍÏÖÅÔ ÂÙÔØ \"/\": %s"
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "ÓÔÒÏËÁ %d: ðÒÅÆÉËÓ ÎÅ ÍÏÖÅÔ ÚÁËÁÎÞÉ×ÁÔØÓÑ ÎÁ \"/\": %s"
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "ÓÔÒÏËÁ %d: Docdir ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó '/': %s"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "ÓÔÒÏËÁ %d: ðÏÌÅ Epoch/Serial ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ: %s"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ BuildArchitecture: %s"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ: îÅÉÚ×ÅÓÔÎÙÊ ÑÒÌÙË %d"
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÐÁËÅÔÁ: %s"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr "ðÁËÅÔ ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ: %s"
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "ÓÔÒÏËÁ %d: îÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ: %s"
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr "æÁÊÌ spec ÎÅ ÍÏÖÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ BuildRoot"
msgid "line %d: Second %s"
msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÅ %s"
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr "ÓÔÒÏËÁ %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr "îÅÚÁËÒÙÔÙÊ %%if"
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean ËÏÄ ×ÏÚ×ÒÁÔÁ: %d"
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: îÁÊÄÅÎ %%else ÂÅÚ %%if"
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: îÁÊÄÅÎ %%endif ÂÅÚ %%if"
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr "ÎÅ×ÅÒÎÏÅ ÏÂßÑ×ÌÅÎÉÅ %%include"
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr "îÅÔ ÁÒÈÉÔÅËÔÕÒ, ÄÌÑ ËÏÔÏÒÙÈ ×ÏÚÍÏÖÎÁ ÓÂÏÒËÁ"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s"
msgid "line %d: Bad %s number: %s\n"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %s\n"
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ ÓÓÙÌËÕ %s: %s\n"
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr "(ÏÛÉÂËÁ 0x%x)"
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr "îÅ×ÅÒÎÙÊ magic"
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr "îÅ×ÅÒÎÙÊ/ÎÅÞÉÔÁÅÍÙÊ ÚÁÇÏÌÏ×ÏË"
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË"
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ ÆÁÊÌÁ"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ÖÅÓÔËÁÑ ÓÓÙÌËÁ"
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ"
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr "ÎÅ ÕÄÁÌÏÓØ - "
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
-#, c-format
-msgid "db%d error(%d)"
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
+#, fuzzy, c-format
+msgid "db%d error(%d) from %s: %s\n"
msgstr "db%d ÏÛÉÂËÁ(%d)"
-#: lib/db1.c:93 lib/db3.c:453
-#, c-format
-msgid " performing %s"
-msgstr " ÉÓÐÏÌÎÑÅÔÓÑ %s"
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
+#, fuzzy, c-format
+msgid "db%d error(%d): %s\n"
+msgstr "db%d ÏÛÉÂËÁ(%d)"
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr "ÚÁËÒÙÔ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr "ÕÄẠ́ΠÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "ÏÔËÒÙ×ÅÔÓÑ ÆÁÊÌ %s ÂÁÚÙ ÄÁÎÎÙÈ × ÒÅÖÉÍÅ 0x%x\n"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÂÌÏËÉÒÏ×ËÕ %s ÂÁÚÙ ÄÁÎÎÙÈ"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr "ÒÁÚÄÅÌÑÅÍÙÊ"
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr "ÚÁËÒÙÔÏ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s(%s)\n"
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr "ÕÄÁÌÅÎÏ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s(%s)\n"
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s(%s) %s\n"
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr "ÚÁËÒÙÔ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s(%s)\n"
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s(%s) %s mode=0x%x\n"
-#: lib/db3.c:267
-#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+#: lib/db3.c:268
+#, fuzzy, c-format
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr "dbiSetConfig: ÎÅÏÐÏÚÎÁÎÎÁÑ ÏÐÃÉÑ ÂÁÚÙ ÄÁÎÎÙÈ: \"%s\" ÐÒÏÉÇÎÏÒÉÒÏ×ÁÎÁ\n"
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr "%s ÉÍÅÅÔ ÎÅ×ÅÒÎÕÀ ÞÉÓÌÏ×ÕÀ ×ÅÌÉÞÉÎÕ, ÐÒÏÐÕÝÅÎÏ\n"
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr "%s ÉÍÅÅÔ ÓÌÉÛËÏÍ ÍÁÌÕÀ ÉÌÉ ÓÌÉÛËÏÍ ÂÏÌØÛÕÀ ×ÅÌÉÞÉÎÕ long, ÐÒÏÐÕÝÅÎÏ\n"
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
"%s ÉÍÅÅÔ ÓÌÉÛËÏÍ ÍÁÌÕÀ ÉÌÉ ÓÌÉÛËÏÍ ÂÏÌØÛÕÀ ×ÅÌÉÞÉÎÕ integer, ÐÒÏÐÕÝÅÎÏ\n"
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr "ÚÁËÒÙÔÏ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr "ÕÄÁÌÅÎÏ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s\n"
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr "ÚÁËÒÙÔ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s mode=0x%x\n"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÂÌÏËÉÒÏ×ËÕ %s ÎÁ %s/%s\n"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr "ÚÁÂÌÏËÉÒÏ×ÁÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"ÒÁÓÓÙÌËÉ rpm-list@redhat.com\n"
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(ÎÅ ÞÉÓÌÏ)"
msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å"
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
#, fuzzy
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabData() RPM_STRING_TYPE count must be 1.\n"
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr "ôÉÐ ÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "îÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÄÌÑ headerAddEntry(): %d\n"
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"{\" ÐÏÓÌÅ \"%\""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"}\" ÐÏÓÌÅ \"%{\""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "ÐÕÓÔÏÊ ÆÏÒÍÁÔ ÔÜÇÁ"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "ÐÕÓÔÏÅ ÉÍÑ ÔÜÇÁ"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "× ËÏÎÃÅ ÍÁÓÓÉ×Á ÏÖÉÄÁÌÁÓØ \"]\""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"]\""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"}\""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÏÓØ \"?\""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÏÓØ \"{\""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÏÓØ \"}\""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÏÓØ \":\""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \":\" ÏÖÉÄÁÌÏÓØ \"{\""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "× ËÏÎÃÅ ×ÙÒÁÖÅÎÉÑ ÏÖÉÄÁÌÓÑ \"|\""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s"
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr " ÎÁ ÆÁÊÌÅ "
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ\n"
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ sourcedir %s"
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÉÓÁÔØ × %s"
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr "ÉÓÈÏÄÎÉËÉ ×: %s\n"
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ specdir %s"
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr "ÆÁÊÌ spec ×: %s\n"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ .spec"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "ÏÛÉÂËÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÑ %s × %s: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr "ÏÂÎÁÒÕÖÅÎ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ"
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr "ÕÓÔÁÎÏ×ËÁ ÐÒÅËÒÁÝÁÅÔÓÑ, Ô.Ë. ÍÙ ÉÓÐÏÌÎÑÅÍ --test\n"
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr "ÉÓÐÏÌÎÑÅÔÓÑ ÓËÒÉÐÔ preinstall (ÅÓÌÉ ÅÓÔØ)\n"
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "%s ÐÒÏÐÕÓËÁÅÔÓÑ - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "×ÎÉÍÁÎÉÅ: %s ÓÏÚÄÁÎ ËÁË %s"
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "×ÎÉÍÁÎÉÅ: %s ÓÏÈÒÁÎÅÎ ËÁË %s"
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr "×ÙÐÏÌÎÑÅÔÓÑ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n"
msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 4"
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr "buildroot ÕÖÅ ÕËÁÚÁÎ"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "prep (ÓÅËÃÉÑ %prep, ÒÁÚ×ÅÒÎÕÔØ ÉÓÈÏÄÎÉËÉ É ÎÁÌÏÖÉÔØ ÚÁÐÌÁÔÙ)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
#, fuzzy
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr "×ÙÐÏÌÎÉÔØ ÐÏ ÓÔÁÄÉÀ %%prep ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ"
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "×ÙÐÏÌÎÉÔØ ÐÏ ÓÔÁÄÉÀ %%install ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "ÐÒÏ×ÅÒÉÔØ ÒÁÚÄÅÌ %%files ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "ÓÏÂÒÁÔØ ÉÓÈÏÄÎÙÊ É Ä×ÏÉÞÎÙÊ ÐÁËÅÔÙ ÐÏ ÆÁÊÌÕ ÓÐÅÃÉÆÉËÁÃÉÉ"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "ÓÏÂÒÁÔØ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ÐÏ ÆÁÊÌÕ ÓÐÅÃÉÆÉËÁÃÉÉ"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "ÓÏÂÒÁÔØ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÐÏ ÆÁÊÌÕ ÓÐÅÃÉÆÉËÁÃÉÉ"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "prep (ÓÅËÃÉÑ %prep, ÒÁÚ×ÅÒÎÕÔØ ÉÓÈÏÄÎÉËÉ É ÎÁÌÏÖÉÔØ ÚÁÐÌÁÔÙ)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
#, fuzzy
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr "×ÙÐÏÌÎÉÔØ ÐÏ ÓÔÁÄÉÀ %%prep ÉÚ ÁÒÈÉ×Á tar"
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr "×ÙÐÏÌÎÉÔØ ÐÏ ÓÔÁÄÉÀ %%install ÉÚ ÁÒÈÉ×Á tar"
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "ÐÒÏ×ÅÒÉÔØ ÓÅËÃÉÀ %%files ÉÚ ÁÒÈÉ×Á tar"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "ÓÏÂÒÁÔØ ÉÓÈÏÄÎÙÊ É Ä×ÏÉÞÎÙÊ ÐÁËÅÔÙ ÉÚ ÁÒÈÉ×Á tar"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "ÓÏÂÒÁÔØ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ÉÚ ÁÒÈÉ×Á tar"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "ÓÏÂÒÁÔØ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÉÚ ÁÒÈÉ×Á tar"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "ÓÏÂÒÁÔØ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ÉÚ ÉÓÈÏÄÎÏÇÏ ÐÁËÅÔÁ"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "×ÙÐÏÌÎÉÔØ ÐÏ ÓÔÁÄÉÀ %%install ÉÚ ÁÒÈÉ×Á tar"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr "ÐÅÒÅÏÐÒÅÄÅÌÉÔØ build root"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr "ÎÅ ×ÙÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÜÔÁÐÏ× ÓÂÏÒËÉ"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
#, fuzzy
msgid "do not accept i18N msgstr's from specfile"
msgstr "ÎÅ ÐÒÉÎÉÍÁÔØ ÓÔÒÏË I18N ÉÚ spec-ÆÁÊÌÁ"
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr "ÐÅÒÅÏÐÒÅÄÅÌÉÔØ ÃÅÌÅ×ÕÀ ÐÌÁÔÆÏÒÍÕ"
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
#, fuzzy
msgid "lookup i18N strings in specfile catalog"
msgstr "ÉÓËÁÔØ ÓÔÒÏËÉ I18N × ËÁÔÁÌÏÇÅ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ"
msgid "record %d could not be read\n"
msgstr "ÚÁÐÉÓØ %d ÎÅ ÞÉÔÁÅÔÓÑ\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
msgid "retrieved %d packages\n"
msgstr "ÐÏÌÕÞÅÎÏ %d ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
msgid "cannot open Packages database in %s\n"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "ÏÛÉÂËÁ ÏÔËÒÙÔÉÑ %s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
msgid "missing architecture name at %s:%d"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÎÁÚ×ÁÎÉÅ ÁÒÈÉÔÅËÔÕÒÙ × %s:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÄÁÎÎÙÈ × %s:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÄÁÎÎÙÈ × %s:%d"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "îÅ×ÅÒÎÙÊ ÎÏÍÅÒ arch/os: %s (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÒÁÓËÒÙÔØ %s"
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ %s, ÚÎÁÞÅÎÉÅ HOME ÓÌÉÛËÏÍ ×ÅÌÉËÏ."
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s."
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ %s: %s."
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ':' (ÎÁÊÄÅÎ 0x%02x) × %s:%d"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÇÕÍÅÎÔ ÄÌÑ %s × %s:%d"
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "ÏÛÉÂËÁ ÒÁÓËÒÙÔÉÑ %s ÎÁ %s:%d \"%s\""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s × %s:%d %s"
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÈÉÔÅËÔÕÒÁ ÄÌÑ %s × %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "ÎÅ×ÅÒÎÁÑ ÏÐÃÉÑ '%s' × %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÓÉÓÔÅÍÁ: %s\n"
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n"
msgstr "îÅ×ÅÒÎÙÊ ÏÔ×ÅÔ ÓÅÒ×ÅÒÁ"
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+#, fuzzy
+msgid "Server I/O error"
msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ ÓÅÒ×ÅÒÁ"
#: rpmio/rpmio.c:543
msgstr "îÅ ÍÏÇÕ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ ÄÌÑ ÄÁÎÎÙÈ Ó ÓÅÒ×ÅÒÏÍ"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ × ÌÏËÁÌØÎÙÊ ÆÁÊÌ"
#: rpmio/rpmio.c:561
msgid "failed to create %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n"
+#~ msgid " performing %s"
+#~ msgstr " ÉÓÐÏÌÎÑÅÔÓÑ %s"
+
#, fuzzy
#~ msgid ""
#~ " %s {-b|t}[plcibas] [-v] [--short-circuit] [--clean] [--macros "
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 1999-04-08 21:37+02:00\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
"overi» in¹taláciu balíka s pou¾itím rovnakých volieb ¹pecifikácia balíka ako "
"pre -q"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "neoverova» závislosti balíka"
msgid "bin/src package (prep, compile, install, package)"
msgstr "binárny a zdrojový balík (príprava, kompilácia, in¹talácia, zabalenie)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "preskoèi» priamo k urèenej etape (iba pre c, i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "po ukonèení odstráni» adresár, v ktorom sa balík zostavoval"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
#, fuzzy
msgid "remove sources when done"
msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
msgid "remove spec file when done"
msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr "vytvori» PGP/GPG podpis"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr "riadok %d: Druhý %%files zoznam"
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Architektúra je vynechaná: %s"
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr "Architektúra nie je obsiahnutá: %s"
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr "OS je vynechaný: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr "OS nie je obsiahnutý: %s"
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr "V balíku musí existova» pole %s: %s"
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Duplicitné záznamy %s v balíku: %s"
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr "Neznámy typ ikony: %s"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "riadok %d: Znetvorený popis: %s"
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "riadok %d: Prázdny popis: %s"
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "riadok %d: Neprípustný znak '-' v %s: %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "riadok %d: BuildRoot nemô¾e by» \"/\": %s"
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "riadok %d: Prefixy nesmú konèi» \"/\": %s"
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "riadok %d: Docdir musí zaèína» '/': %s"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "riadok %d: Epoch/Serial pole musí by» èíslo: %s"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "riadok %d: Chybné %s èíslo: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "riadok %d: Chybný formát BuildArchitecture: %s"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Interná chyba: Èudný popis %d "
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr "Chybná ¹pecifikácia balíka: %s"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr "Balík u¾ existuje: %s"
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "riadok %d: Neznámy popis: %s"
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr "Spec súbor nemô¾e pou¾i» BuildRoot"
msgid "line %d: Second %s"
msgstr "riadok %d: Druhý %s"
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr "riadok %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "otvorenie zlyhalo: %s\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr "Neuzavretý %%if"
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: %%else bez if"
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: %%endif bez if"
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr "znetvorený príkaz %%include"
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr "®iadne zostaviteµné architektúry"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr "Balík neobsahuje %%description: %s"
msgid "line %d: Bad %s number: %s\n"
msgstr "riadok %d: Chybné %s èíslo: %s\n"
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "premenovanie %s na %s zlyhalo: %s\n"
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "zmazanie %s zlyhalo: %s\n"
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr "(chyba 0x%x)"
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr "Chybné magické èíslo"
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr "Chybná/neèitateµná hlavièka"
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr "Priveµká hlavièka"
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr "Neznámy typ súboru"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr "Interná chyba"
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr " zlyhalo - "
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, fuzzy, c-format
msgid "removed db file %s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: lib/db1.c:422
+#: lib/db1.c:421
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "chybný stav súboru: %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "otvára sa databáza s právami 0x%x v %s\n"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "nie je mo¾né získa» %s zámok pre databázu"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr "výhradný"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr "zdieµaný"
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, fuzzy, c-format
msgid "closed db environment %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: lib/db3.c:494
+#: lib/db3.c:500
#, fuzzy, c-format
msgid "removed db environment %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otvára sa databáza s právami 0x%x v %s\n"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "nie je mo¾né získa» %s zámok pre databázu"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(nie je èíslo)"
msgstr "súbor %s sa nachádza na neznámom zariadení"
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
#, fuzzy
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n"
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ údajov %d nie je podorovaný\n"
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "Chybný poèet pre headerAddEntry(): %d\n"
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "chýbajúce { po %"
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "chýbajúce } po %{"
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "prázdny tag formát"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "prázdne meno tagu"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "neznámy tag"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "] oèakávané na konci poµa"
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "neoèakávané ]"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "neoèakávané }"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "? oèakávané vo výraze"
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr "{ oèakávané po ? vo výraze"
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "} oèakávané vo výraze"
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ": oèakávané po ? podvýraze"
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr "{ oèakávané po : vo výraze"
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "| oèakávené na konci výrazu"
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(neznámy typ)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr " pre súbor "
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr "in¹taluje sa zdrojový balík\n"
-#: lib/install.c:720
+#: lib/install.c:721
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "nie je mo¾né zapísa» do %s: "
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr "nie je mo¾né zapísa» do %s: "
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr "zdroje v: %s\n"
-#: lib/install.c:750
+#: lib/install.c:751
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "nie je mo¾né zapísa» do %s: "
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr "spec-súbor v: %s\n"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr "premenováva sa %s na %s\n"
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "premenovanie %s na %s zlyhalo: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr "oèakávaný zdrojový balík, nájdený binárny"
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "balík: %s-%s-%s test súborov = %d\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr "in¹talácia zastavená kvôli re¾imu --test\n"
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n"
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "%s vynechané - prenos zlyhal - %s\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "varovanie: %s vytvorené ako %s"
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "varovanie: %s uchovaný ako %s"
-#: lib/install.c:1189
+#: lib/install.c:1193
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr "buildroot u¾ bol zadaný"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "príprava (rozbali» zdrojové súbory a aplikova» záplaty)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "in¹taluje sa zdrojový balík\n"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "príprava (rozbali» zdrojové súbory a aplikova» záplaty)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "zostavi» balík pre OS/architektúru <os>"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "binárny balík (príprava, kompilácia, in¹talácia, zabalenie)"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "nájdených %d balíkov\n"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "in¹taluje sa zdrojový balík\n"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr "predefinova» adresár pre zostavenie balíka"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr "nevykona» ¾iadne etapy zostavenia"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
#, fuzzy
msgid "do not accept i18N msgstr's from specfile"
msgstr "neakceptova» lokalizované re»azce zo spec-súboru"
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
#, fuzzy
msgid "remove specfile when done"
msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr "predefinova» cieµovú platformu"
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
#, fuzzy
msgid "lookup i18N strings in specfile catalog"
msgstr "pre preklad re»azcov pou¾i» katalóg správ spec-súborov"
msgid "record %d could not be read\n"
msgstr "záznam %d nie je mo¾né preèíta»\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "balík %s nie je nain¹talovaný\n"
msgid "retrieved %d packages\n"
msgstr "prenieslo sa %d balíkov\n"
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie je mo¾né otvori» súbor %s: %s"
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie je mo¾né nain¹talova»\n"
msgid "cannot open Packages database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "chyba pri vytváraní doèasného súboru %s"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "nevyrie¹ené závislosti:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr "in¹talujú sa binárne balíky\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie je mo¾né otvori» %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "In¹taluje sa %s\n"
msgid "missing architecture name at %s:%d"
msgstr "chýba názov architektúry na %s:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Neúplný riadok údajov na %s:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "Priveµa argumentov v riadku údajov na %s:%d"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "Chybné èíslo arch/os: %s (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "Neúplný implicitný riadok na %s:%d"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "Priveµa argumentov v implicitnom riadku na %s:%d"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr "Nie je mo¾né expandova» %s"
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "Nie je mo¾né preèíta» %s: %s."
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "chýbajúca ':' na %s:%d"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "chýbajúci argument pre %s na %s:%d"
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "expanzia %s zlyhala na %s:%d \"%s\""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "nie je mo¾né otvori» %s na %s:%d"
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "chýbajúca architektúra pre %s na %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "chybná voµba '%s' na %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr "Neznámy systém: %s\n"
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Kontaktujte prosím rpm-list@redhat.com\n"
msgstr "Chybná odpoveï servera"
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+#, fuzzy
+msgid "Server I/O error"
msgstr "Chyba vstupu/výstupu servera"
#: rpmio/rpmio.c:543
msgstr "Vytvorenie dátového spojenia k serveru zlyhalo"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "Chyba vstupu/výstupu lokálneho súboru"
#: rpmio/rpmio.c:561
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
-# $Id: sl.po,v 1.124 2001/01/02 17:19:39 jbj Exp $
+# $Id: sl.po,v 1.125 2001/01/03 20:19:31 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 2000-10-08 19:05+0200\n"
"Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
"Language-Team: Slovenian <sl@li.org>\n"
"options as -q"
msgstr "namestitev paketa preverimo z enakimi izbirnimi doloèili kot -q"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "brez preverjanja soodvisnosti paketa"
"prevedeni in izvorni paket (priprava, prevajanje, namestitev, izgradnja "
"paketa)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "preskok naravnost na doloèeno stopnjo (samo za c,i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "po zakljuèku drevo imenikov v katerih smo pakete gradili odstrani"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr "po zakljuèku naj se izvorna koda izbri¹e"
msgid "remove spec file when done"
msgstr "po zakljuèku naj se datoteka s specifikacijami izbri¹e"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr "izdelava podpisa PGP/GPG"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr "vrstica %d: Drugi seznam %%Files"
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Arhitektura je izkljuèena: %s"
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr "Arhitektura ni vkljuèena: %s"
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr "OS je izkljuèen: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr "OS ni vkljuèen: %s"
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr "polje %s mora v paketu obstajati: %s"
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Podvojeni vnosi %s v paketu: %s"
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "Ikone %s ni mo¾no odpreti: %s"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "Ikone %s ni mo¾no prebrati: %s"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr "Neznan tip ikone: %s"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "vrstica %d: Deformirana znaèka: %s"
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "vrstica %d: Prazna znaèka: %s"
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "vrstica %d: Neveljaven znak ,-` v %s: %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot ne more biti \"/\": %s"
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "vrstica %d: Predpone se ne smejo konèati z /: %s"
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "vrstica %d: Docdir se mora zaèeti z \"/\": %s"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "vrstica %d: polje Epoch/Serial mora biti ¹tevilo: %s"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "vrstica %d: Okvarjeno ¹tevilo %s: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "vrstica %d: Napaèna oblika BuildArchitecture: %s"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Notranja napaka: Neprava znaèka %d"
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr "Nepravilno doloèilo paketa: %s"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr "Paket ¾e obstaja: %s"
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "vrstica %d: Neznana znaèka: %s"
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr "Datoteka spec ne more uporabiti BuildRoot"
msgid "line %d: Second %s"
msgstr "vrstica %d: Drugi %s"
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr "vrstica %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr "Nezakljuèeni %%if"
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean vrne %d"
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: Najden je bil %%else brez pripadajoèega if"
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: Najden je bil %%endif brez pripadajoèega if"
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr "Deformiran stavek %%include"
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr "Arhitektura za izgradnjo ni prisotna"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr "V paketu manjka %%description: %s"
msgid "line %d: Bad %s number: %s\n"
msgstr "vrstica %d: Napaèno ¹tevilo %s: %s\n"
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "ni mo¾no preimenovati %s v %s: %s\n"
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "ni mo¾no izbrisati %s: %s\n"
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr "(napaka 0x%x)"
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr "Napaèno magièno ¹tevilo"
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr "Po¹kodovana/neberljiva glava"
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr "Glava je predolga"
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr "Neznan tip datoteke"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr "Trda povezava manjka"
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr "Notranja napaka"
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr " neuspe¹no - "
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
-#, c-format
-msgid "db%d error(%d)"
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
+#, fuzzy, c-format
+msgid "db%d error(%d) from %s: %s\n"
msgstr "db%d napaka(%d)"
-#: lib/db1.c:93 lib/db3.c:453
-#, c-format
-msgid " performing %s"
-msgstr " izvajanje %s"
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
+#, fuzzy, c-format
+msgid "db%d error(%d): %s\n"
+msgstr "db%d napaka(%d)"
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr "zaprta datoteka db %s\n"
-#: lib/db1.c:391
+#: lib/db1.c:390
#, fuzzy, c-format
msgid "removed db file %s\n"
msgstr "odstranjena datoteka db %s\n"
-#: lib/db1.c:422
+#: lib/db1.c:421
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "po¹kodovana zbirka podatkov %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "odpiranje datoteke %s v naèinu 0x%x\n"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "datoteke ni mo¾no %s zakleniti"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr "izkljuèujoèe"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr "skupno"
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr "zaprto db okolje %s/%s(%s)\n"
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr "odstranjeno db okolje %s/%s(%s)\n"
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr "odpiranje db okolja %s/%s(%s) %s\n"
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr "zaprto db kazalo %s/%s(%s)\n"
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr "odpiranje db kazala %s/%s(%s) %s naèin=0x%x\n"
-#: lib/db3.c:267
-#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+#: lib/db3.c:268
+#, fuzzy, c-format
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr "dbiSetConfig: neprepoznana izbira db: \"%s\" prezrto\n"
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr "%s ima neveljavno ¹tevilèno vrednost, prezrto\n"
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr "%s ima preveliko ali premajhno dolgo (long) vrednost, prezrto\n"
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
"%s ima preveliko ali premajhno vrednost malega (small) celega\n"
"¹tevila, prezrto\n"
-#: lib/db3.c:478
+#: lib/db3.c:484
#, fuzzy, c-format
msgid "closed db environment %s/%s\n"
msgstr "zaprto db okolje %s/%s\n"
-#: lib/db3.c:494
+#: lib/db3.c:500
#, fuzzy, c-format
msgid "removed db environment %s/%s\n"
msgstr "odstranjeno db okolje %s/%s\n"
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "odpiranje db okolja %s/%s %s\n"
-#: lib/db3.c:917
+#: lib/db3.c:923
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "zaprto db kazalo %s/%s\n"
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "odpiranje db kazala %s/%s %s naèin=0x%x\n"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ni mo¾no zakleniti z %s datotek %s/%s\n"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "zaklenjeno db kazalo %s/%s\n"
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"na strani http://www.rpm.org ali po dopisni listi rpm-list@redhat.com.\n"
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(ni ¹tevilo)"
msgstr "datoteka %s se nahaja na neznani napravi"
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
#, fuzzy
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n"
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr "Tip podatkov %d ni podprt\n"
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "Nepravilno stanje ¹tevca za headerAddEntry(): %d\n"
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "manjkajoèi { za %"
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "manjkajoèi } za %{"
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "oblika znaèke manjka"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "ime znaèke manjka"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "neznana znaèka"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "na koncu polja je prièakovan ]"
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "neprièakovan ]"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "neprièakovan }"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "v izrazu je prièakovan ?"
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr "v izrazu je za { prièakovan ?"
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "v izrazu je prièakovan }"
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr "za podizrazom ? je prièakovano :"
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr "v izrazu je za : prièakovan {"
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "na koncu izraza je prièakovan |"
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(neznan tip)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s"
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr " za datoteko "
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr "name¹èanje izvornega paketa\n"
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr "ni mo¾no ustvariti izvornega imenika %s"
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr "pisanje na %s ni mo¾no"
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr "izvori v: %s\n"
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr "ni mo¾no ustvariti imenika z doloèili spec %s"
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr "datoteka s specifikacijami v: %s\n"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr "izvorni paket ne vsebuje datoteke .spec"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr "preimenovanje %s v %s\n"
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "preimenovanje %s v %s je bilo neuspe¹no: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr "prièakovan je bil izvorni paket, najden binarni"
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paket: %s-%s-%s datoteke test = %d\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr "ustavljanje namestitev, ker teèemo kot --test\n"
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr "poganjanje prednamestitvenih skript (èe obstajajo)\n"
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "opozorilo: %s ustvarjen kot %s"
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "opozorilo: %s shranjen kot %s"
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <=4"
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr "buildroot je ¾e doloèen"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "priprava (razpakiraj izvorno kodo in uporabi popravke)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
#, fuzzy
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr "izgradnja prek stopnje %%prep iz datoteke s specifikacijami"
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "izgradnja prek stopnje %%install iz datoteke s specifikacijami"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "preverjanje dela datoteke s specifikacijami %%files"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "izgradi izvorni in binarni paket iz datoteke s specifikacijami"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "izgradi binarni paket iz datoteke .spec"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "izgradi izvorni paket iz datoteke .spec"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "priprava (razpakiraj izvorno kodo in uporabi popravke)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
#, fuzzy
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr "paket izgradi prek stopnje %%prep iz arhiva tar"
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr "paket izgradi prek stopnje %%install iz arhiva tar"
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "preverjanje dela %%files iz arhiva tar"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "iz arhiva tar izgradi izvorni in binarni paket"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "iz arhiva tar izgradi binarni paket"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "iz arhiva tar izgradi izvorni paket"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "binarni paket izgradi iz izvornega"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "ni paketov\n"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "izgradnja prek stopnje %%install iz izvornega paketa"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr "brez upo¹tevanja vrhnjega imenika izgradnje"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr "brez izvajanja katerekoli od stopenj izgradnje"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
#, fuzzy
msgid "do not accept i18N msgstr's from specfile"
msgstr "brez sprejemanja internacionaliziranih katalogov iz datoteke spec"
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr "po zakljuèku odstrani datoteko s specifikacijami"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr "brez upo¹tevanja strojnega okolja ciljnega sistema"
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
#, fuzzy
msgid "lookup i18N strings in specfile catalog"
msgstr "upo¹tevanje internacionalizirana sporoèila v katalogu spec"
msgid "record %d could not be read\n"
msgstr "zapisa %d ni mo¾no prebrati\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s ni name¹èen\n"
msgid "retrieved %d packages\n"
msgstr "prene¹enih je bilo %d paketov\n"
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "ni mo¾no odpreti datoteke %s: %s\n"
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ni mo¾no namestiti\n"
msgid "cannot open Packages database in %s\n"
msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr "paketa %s ni mo¾no premakniti\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr "napaka pri branju iz datoteke %s\n"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "datoteka %s zahteva novej¹o razlièico RPM\n"
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "najdeno %d izvornih in %d binarnih paketov\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "neuspe¹ne soodvisnosti:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr "name¹èanje binarnih paketov\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "datoteke %s/packages.rpm ni mo¾no odpreti\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" doloèa veè paketov\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ni mo¾no odpreti %s: %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "Name¹èanje %s\n"
msgid "missing architecture name at %s:%d"
msgstr "manjkajoèe ime arhitekture v %s:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Nepopolna podatkovna vrstica v %s:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "Preveè argumentov v podatkovni vrstici v %s:%d"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "Okvarjena ¹tevilka arh./op.sist.: %s (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "Nepopolna privzeta vrstica v %s:%d"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "Preveè argumentov v privzeti vrstici v %s:%d"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr "Ni mo¾no raz¹iriti %s"
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr "Ni mo¾no prebrati %s, HOME je prevelik."
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "%s ni mo¾no odpreti za branje: %s."
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "Neuspe¹no branje %s: %s."
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "manjkajoèi ,:` (najden 0x%02x) v %s:%d"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "manjkajoèi argument za %s v %s:%d"
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "raz¹iritev %s je bila neuspe¹na v %s:%d \"%s\""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "ni mo¾no odpreti %s v %s:%d: %s"
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "manjkajoèa arhitektura za %s v %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "nepravilna izbira ,%s` v %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr "Neznan sistem: %s\n"
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Prosimo, pi¹ite na rpm-list@redhat.com\n"
msgstr "Nepravilen odziv stre¾nika"
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+#, fuzzy
+msgid "Server I/O error"
msgstr "V/I napaka na stre¾niku"
#: rpmio/rpmio.c:543
msgstr "Neuspe¹na vzpostavitev podatkovne povezave s stre¾nikom"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "V/I napaka na lokalni datoteki"
#: rpmio/rpmio.c:561
msgid "failed to create %s: %s\n"
msgstr "neuspe¹no ustvarjanje %s: %s\n"
+#~ msgid " performing %s"
+#~ msgstr " izvajanje %s"
+
#, fuzzy
#~ msgid ""
#~ " %s {-b|t}[plcibas] [-v] [--short-circuit] [--clean] [--macros "
msgid ""
msgstr ""
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
"From: Erik Troan <ewt@lacrosse.redhat.com>\n"
msgstr ""
"proveri instalaciju paketa koristeæi iste opcije za odreðenje paketa kao i -q"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "nemoj proveravati zavisnosti paketa"
msgid "bin/src package (prep, compile, install, package)"
msgstr "bin/src paket (priprema, kompilacija, instalacija, pakovanje)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "idi pravo do odreðene faze (samo za k,i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "ukloni stablo direktorijuma po zavr¹etku"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
#, fuzzy
msgid "remove sources when done"
msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
msgid "remove spec file when done"
msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
#, fuzzy
msgid "generate PGP/GPG signature"
msgstr "napravi PGP potpis"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(nepoznat tip)"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "preme¹tanja moraju poèeti znakom '/'"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "pogre¹an broj paketa: %s\n"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "pogre¹an broj paketa: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "nedostaje arhitektura za %s na %s:%d"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Opcije odrednice paketa:"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "neuspelo otvaranje %s: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
#, fuzzy
msgid "No buildable architectures"
msgstr "nemoj proveravati arhitekturu paketa"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "paket %s nije naveden u %s"
msgid "line %d: Bad %s number: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Neuspelo èitanje %s: %s."
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "gre¹ka: "
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
#, fuzzy
msgid "Unknown file type"
msgstr "(nepoznat tip)"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
#, fuzzy
msgid "Internal error"
msgstr "fatalna gre¹ka: "
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
#, fuzzy
msgid " failed - "
msgstr "PGP omanuo"
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr "ekskluzivno"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr "deljeno"
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(nije broj)"
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "nedostaje { posle %"
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "nedostaje } posle %"
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "prazan 'tag' format'"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "prazno ime tag-a"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "nepoznat tag"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "] oèekivano na kraju niza"
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "neoèekivano ]"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "neoèekivano }"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "oèekivan znak ? u izrazu"
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
#, fuzzy
msgid "{ expected after ? in expression"
msgstr "{ oèekivano posle ? u izrazu"
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "} oèekivano u izrazu"
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr "oèekivano : praæeno ? podizrazom"
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
#, fuzzy
msgid "{ expected after : in expression"
msgstr "{ oèekivano posle : u izrazu"
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "| oèekivano na kraju izraza"
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(nepoznat tip)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
#, fuzzy
msgid "installing a source package\n"
msgstr "instaliraj paket"
-#: lib/install.c:720
+#: lib/install.c:721
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:760
+#: lib/install.c:761
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
#, fuzzy
msgid "source package contains no .spec file"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "preimenovanje %s u %s nije uspelo: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
#: lib/poptBT.c:94
-msgid "buildroot already specified"
-msgstr ""
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
+msgstr "Neuspelo èitanje %s: %s."
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "priprema (raspakuj izvorne datoteke i primeni zakrpe)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "instaliraj paket"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "priprema (raspakuj izvorne datoteke i primeni zakrpe)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "napravi pakete za operativni sistem <os>"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "binarni paket (priprema, kompilacija, instalacija, pakovanje)"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "upit nad svim paketima"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "instaliraj paket"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
#, fuzzy
msgid "override build root"
msgstr "koristi <dir> kao korenski katalog kod kreiranja"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "nemoj izvr¹iti nijednu fazu"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
#, fuzzy
msgid "remove specfile when done"
msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr "ne mogu da proèitam slog %d\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s nije instaliran\n"
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
msgid "cannot open Packages database in %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "paket %s nije instaliran\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "lo¹e meðuzavisnosti:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
#, fuzzy
msgid "installing binary packages\n"
msgstr "instaliraj paket"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" odreðuje vi¹e paketa\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "Instaliram %s\n"
msgid "missing architecture name at %s:%d"
msgstr "nedostaje ime arhitekture na %s:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Nepotpuna linija podataka na %s:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "Premnogo argumenata u liniji podataka na %s:%d"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "Lo¹ broj arhitekture/oper.sist.: %s (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "Nepotpuna podrazumevana linija na %s:%d"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "Premnogo argumenata u podrazumevanoj liniji na %s:%d"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "Ne mogu da otvorim %s za èitanje: %s"
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "Neuspelo èitanje %s: %s."
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "nedostaje ':' na %s:%d"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "nedostaje argument za %s na %s:%d"
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "neuspelo otvaranje %s: %s"
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "nedostaje arhitektura za %s na %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "lo¹a opcija '%s' na %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
#: rpmio/rpmio.c:540
#, fuzzy
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr "Ulazno/izlazna FTP gre¹ka"
#: rpmio/rpmio.c:543
msgstr "Ne mogu da uspostavim vezu podataka sa FTP serverom"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "Ulazno/izlazna gre¹ka kod lokalne datoteke"
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: 2000-10-09 22:31+0200\n"
"Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
"options as -q"
msgstr "verifiera ett pakets installation med samma urvalsflaggor som till -q"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "verifiera inte paketberoenden"
msgid "bin/src package (prep, compile, install, package)"
msgstr "binär- och källpaketera (förbered, kompilera, installera, paketera)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "gå direkt till angivet steg (endast för c,i)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "ta bort tillverkningsträd efteråt"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr "ta bort källkod efteråt"
msgid "remove spec file when done"
msgstr "ta bort spec-fil efteråt"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr "tillverka en PGP/GPG-signatur"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr "rad %d: En andra %%files-lista"
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Arkitekturen är utesluten: %s"
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr "Arkitekturen är inte medtagen: %s"
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr "OS är uteslutet: %s"
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr "OS är inte medtaget: %s"
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr "%s-fält måste finnas med i paketet: %s"
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Dubbla %s-poster i paketet: %s"
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "Kan inte öppna ikon %s: %s"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "Kan inte läsa ikon %s: %s"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr "Okänd ikontyp: %s"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "rad %d: Felaktig tagg: %s"
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "rad %d: Tom tagg: %s"
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "rad %d: Otillåtet tecken \"-\" i %s: %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot kan inte vara \"/\": %s"
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "rad %d: Prefix får inte sluta med \"/\": %s"
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "rad %d: Docdir måste börja med \"/\": %s"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "rad %d: Epoch/Serial-fält måste vara numeriskt: %s"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "rad %d: Felaktigt %s-tal: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "rad %d: Felaktig BuildArchitecture-format: %s"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Internt fel: felaktig tagg %d"
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr "Felaktig paketspecifikation: %s"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr "Paketet existerar redan: %s"
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "rad %d: Okänd tagg: %s"
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr "Spec-fil kan inte använda BuildRoot"
msgid "line %d: Second %s"
msgstr "rad %d: En andra %s"
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr "rad %d: %s"
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Kan inte öppna %s: %s\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr "Oavslutat %%if"
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean returnerar %d"
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: Fick ett %%else utan något if"
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: Fick ett %%endif utan något if"
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr "felformaterad %%include-sats"
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr "Inga byggbara arkitekturer"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr "Paketet har ingen %%description: %s"
msgid "line %d: Bad %s number: %s\n"
msgstr "rad %d: Felaktigt %s-tal: %s\n"
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "kan inte flytta %s till %s: %s\n"
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "kan inte ta bort %s: %s\n"
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr "(fel 0x%x)"
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr "Felaktigt magiskt tal"
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr "Felaktigt/oläsbart huvud"
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr "Huvudstorlek för stor"
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr "Okänd filtyp"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr "Saknad hårdlänk"
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr "Internt fel"
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr " misslyckades - "
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
-#, c-format
-msgid "db%d error(%d)"
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
+#, fuzzy, c-format
+msgid "db%d error(%d) from %s: %s\n"
msgstr "db%d fel(%d)"
-#: lib/db1.c:93 lib/db3.c:453
-#, c-format
-msgid " performing %s"
-msgstr " utför %s"
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
+#, fuzzy, c-format
+msgid "db%d error(%d): %s\n"
+msgstr "db%d fel(%d)"
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr "stängde db fil %s\n"
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr "tog bort db-fil %s\n"
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr "felaktig db-fil %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "öppnar db-fil %s rättighet 0x%x\n"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "kan inte få %s lås på databas"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr "uteslutande"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr "delat"
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr "stängde db-miljö %s/%s(%s)\n"
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr "tog bort db-miljö %s/%s(%s)\n"
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr "öppnar db-miljö %s/%s(%s) %s\n"
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr "stängde db-index %s/%s(%s)\n"
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr "öppnar db-index %s/%s(%s) %s mod=0x%x\n"
-#: lib/db3.c:267
-#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+#: lib/db3.c:268
+#, fuzzy, c-format
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr "dbiSetConfig: okänd db-flagga: \"%s\" ignorerad\n"
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr "%s har ogiltigt ogiltigt numeriskt värde, hoppar över\n"
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr "%s har för stort eller för litet \"long\"-värde, hoppar över\n"
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr "%s har för stort eller för litet heltalsvärde, hoppar över\n"
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr "stängde db-miljö %s/%s\n"
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr "tar bort db-miljö %s/%s\n"
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "öppnar db-miljö %s/%s %s\n"
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr "tog bort db-index %s/%s\n"
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "öppnar db-index %s/%s %s rättighet=0x%x\n"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "kan inte få %s lås på %s/%s\n"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr "låste db-index %s/%s\n"
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"problemet.\n"
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(inte ett tal)"
msgstr "filen %s är på en okänd enhet"
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
#, fuzzy
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabData() RPM_STRING_TYPE måste vara 1.\n"
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatyp %d stöds inte\n"
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "Felaktigt antal till headerAddEntry(): %d\n"
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "{ fattas efter %"
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "} fattas efter %{"
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "tomt taggformat"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "tomt taggnamn"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "okänd tagg"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "] förväntades vid slutet på vektor"
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "oväntad ]"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "oväntad }"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "? förväntades i uttryck"
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr "{ förväntades efter ? i uttryck"
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "} förväntades i uttryck"
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ": förväntades efter ? i deluttryck"
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr "{ förväntades efter : i uttryck"
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "| förväntades vid slutet på uttryck"
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(okänd typ)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "uppackning av arkiv misslyckades%s%s: %s"
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr " vid fil "
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr "installerar källpaket\n"
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr "kan inte skapa källkatalog %s"
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr "kan inte skriva till %s"
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr "källkod i: %s\n"
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr "kan inte skapa spec-katalog %s"
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr "spec-fil i: %s\n"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr "källpaket innehåller ingen spec-fil"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr "byter namn på %s till %s\n"
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "namnbyte från %s till %s misslyckades: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr "källpaket förväntades, fann binärpaket"
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paket: %s-%s-%s filtest = %d\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr "avbryter installation eftersom vi kör --test\n"
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr "kör (eventuellt) preinstalltionsskript\n"
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "hoppar över %s - överföring misslyckades - %s\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "varning: %s skapades som %s"
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "varning: %s sparades som %s"
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr "kör (eventuellt) postinstallationsskript\n"
msgstr "endast paket med huvudnummer <= 4 stöds av denna version av RPM"
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr "buildroot redan specificerad"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "förbered (packa upp källkod samt applicera patchar)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
#, fuzzy
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr "bygg till och med %%prep-steget från spec-fil"
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "bygg till och med %%install-steget från spec-fil"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "verifiera %%files-sektionen i spec-fil"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "bygg käll- och binärpaket från spec-fil"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "bygg binärpaket från spec-fil"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "bygg källpaket från spec-fil"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "förbered (packa upp källkod samt applicera patchar)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
#, fuzzy
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr "bygg till och med %%prep-steget från tar-arkiv"
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr "bygg till och med %%install-steget från tar-arkiv"
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "verifiera %%files-sektionen från tar-arkiv"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "bygg käll- och binärpaket från tar-arkiv"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "bygg binärpaket från tar-arkiv"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "bygg källpaket från tar-arkiv"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr "bygg binärpaket från källpaket"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "inga paket\n"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "bygg till och med %%install-steget från källpaket"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr "åsidosätt tillverkningsrot"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr "utför inga steg i tillverkningen"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
#, fuzzy
msgid "do not accept i18N msgstr's from specfile"
msgstr "acceptera inte översatta \"msgstr\" från spec-filen"
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr "ta bort spec-fil efteråt"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr "åsidosätt målplattform"
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
#, fuzzy
msgid "lookup i18N strings in specfile catalog"
msgstr "slå upp översatta strängar i spec-fil katalog"
msgid "record %d could not be read\n"
msgstr "post %d kunde inte läsas\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s är inte installerat\n"
msgid "retrieved %d packages\n"
msgstr "hämtade %d paket\n"
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "kan inte öppna filen %s: %s\n"
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s kan inte installeras\n"
msgid "cannot open Packages database in %s\n"
msgstr "kan inte öppna paketdatabas i %s\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr "paket %s är inte relokerbart\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr "fel vid läsning från fil %s\n"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "filen %s behöver en nyare version av RPM\n"
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "hittade %d käll- och %d binärpaket\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "ouppfyllda beroenden:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr "installerar binärpaket\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "kan inte öppna %s/packages.rpm\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" anger flera paket\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan inte öppna %s: %s\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "Installerar %s\n"
msgid "missing architecture name at %s:%d"
msgstr "arkitekturnamn saknas vid %s:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Ofullständig datarad vid %s:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "För många argument i datarad vid %s:%d"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "Felaktigt arkitektur-/osnummer: %s (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "Ofullständig skönsfallsrad vid %s:%d"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "För många argument i skönsfallsrad vid %s:%d"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr "Kan inte expandera %s"
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr "Kan inte läsa %s, HOME är för stor."
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "Kan inte öppna %s för läsning: %s."
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "Misslyckades med att läsa %s: %s."
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "\":\" saknas (hittade 0x%02x) vid %s:%d"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "argument till %s saknas vid %s:%d"
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "%s expansion misslyckades vid %s:%d \"%s\""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "kan inte öppna %s vid %s:%d: %s"
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "arkitektur saknas för %s vid %s:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "okänd flagga \"%s\" vid %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr "Okänt system: %s\n"
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Var god kontakta rpm-list@redhat.com\n"
msgstr "Konstigt svar från server"
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+#, fuzzy
+msgid "Server I/O error"
msgstr "IO-fel mot server"
#: rpmio/rpmio.c:543
msgstr "Misslyckades med att etablera en dataförbindelse till servern"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "IO-fel mot lokal fil"
#: rpmio/rpmio.c:561
msgid "failed to create %s: %s\n"
msgstr "kunde inte skapa %s: %s\n"
+#~ msgid " performing %s"
+#~ msgstr " utför %s"
+
#, fuzzy
#~ msgid ""
#~ " %s {-b|t}[plcibas] [-v] [--short-circuit] [--clean] [--macros "
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr "paketi -q ile belirtilen paket parametrelerini kullanarak doðrula"
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr "paket baðýmlýlýklarýný doðrulamaz"
"çalýþtýrýlabilir ve Kaynak paket yaratmak (hazýrlama, derleme, yükleme "
"vepaketleme)"
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr "doðrudan belirtilen adýma atlar (sadece c ve i için)"
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr "iþlem sonunda paket yaratma yapýsýný siler"
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
#, fuzzy
msgid "remove sources when done"
msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
msgid "remove spec file when done"
msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
#, fuzzy
msgid "generate PGP/GPG signature"
msgstr "PGP-imzasý yaratýr"
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(bilinmeyen tip)"
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "%s açýlamadý: %s"
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "relocate iþlemi / ile baþlamalý"
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "geçersiz paket numarsý: %s\n"
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, fuzzy, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr "geçersiz paket numarsý: %s\n"
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "%s için %s te eksik mimari:%d"
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Paket seçim seçenekleri:"
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "%s açýlamadý: %s"
# , c-format
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "%s 'ye eriþimde hata oluþtu\n"
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
#, fuzzy
msgid "No buildable architectures"
msgstr "paket mimarisini doðrulamaz"
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "%s paketi %s altýnda gözükmüyor"
msgid "line %d: Bad %s number: %s\n"
msgstr "geçersiz paket numarsý: %s\n"
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "%s okunamadý: %s"
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "hata: "
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
#, fuzzy
msgid "Unknown file type"
msgstr "(bilinmeyen tip)"
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
#, fuzzy
msgid "Internal error"
msgstr "ölümcül hata: "
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
#, fuzzy
msgid " failed - "
msgstr "PGP hata verdi"
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "%s açýlamadý: %s"
-#: lib/db1.c:427
+#: lib/db1.c:426
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr "Veritabaný için %s kilit (lock) alýnamadý"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr "özel"
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr "paylaþýlan (shared)"
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "Veritabaný için %s kilit (lock) alýnamadý"
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr "(üye deðil)"
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr "% den sonra eksik {"
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr "%{ den sonra eksik }"
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr "boþ tag tanýmlamasý"
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr "boþ tag ismi"
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr "bilinmeyen tag"
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr "dizinin sonunda ] bekleniyordu"
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr "beklenmeyen ]"
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr "beklenmeyen }"
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr "dizi içerisinde ? bekleniyordu"
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
#, fuzzy
msgid "{ expected after ? in expression"
msgstr "dizi içerisinde ? den sonra { bekleniyordu"
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr "dizi içerisinde } bekleniyordu"
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr "? altdizisinden sonra : bekleniyordu"
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
#, fuzzy
msgid "{ expected after : in expression"
msgstr "dizide : den sonra { bekleniyordu"
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr "dizinin sonunda | bekleniyordu"
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr "(bilinmeyen tip)"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
#, fuzzy
msgid "installing a source package\n"
msgstr "paket yüklemek"
-#: lib/install.c:720
+#: lib/install.c:721
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:760
+#: lib/install.c:761
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "%s açýlamadý: %s"
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
#, fuzzy
msgid "source package contains no .spec file"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s 'nin isminin %s 'ye çevrilmesinde belirtilen hata oluþtu: %s"
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
#, fuzzy
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr "hata: %s atlanýyor - aktarým baþarýsýz - %s\n"
-#: lib/install.c:1062
+#: lib/install.c:1063
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:1098
+#: lib/install.c:1099
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
"RPM'in bu sürümünde sadece major numarasý <= 3 olan paketler destekleniyor"
#: lib/poptBT.c:94
-msgid "buildroot already specified"
-msgstr ""
+#, fuzzy, c-format
+msgid "buildroot already specified, ignoring %s\n"
+msgstr "%s okunamadý: %s"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "hazýrlama (kaynaklar açýlýr ve yamalar uygulanýr)"
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
#, fuzzy
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "paket yüklemek"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, fuzzy, c-format
msgid "verify %files section from <specfile>"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
#, fuzzy
msgid "build source and binary packages from <specfile>"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
#, fuzzy
msgid "build binary package only from <specfile>"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
#, fuzzy
msgid "build source package only from <specfile>"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, fuzzy, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "hazýrlama (kaynaklar açýlýr ve yamalar uygulanýr)"
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, fuzzy, c-format
msgid "verify %files section from <tarball>"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
#, fuzzy
msgid "build source and binary packages from <tarball>"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
#, fuzzy
msgid "build binary package only from <tarball>"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
#, fuzzy
msgid "build source package only from <tarball>"
msgstr "paketleri <os> iþletim sistemi için oluþturur"
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
#, fuzzy
msgid "build binary package from <source package>"
msgstr ""
"çalýþtýrýlabilir paket yaratma (hazýrlama, derleme, yükleme, paketleme)"
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
#, fuzzy
msgid "<source package>"
msgstr "Tüm paketleri sorgulama"
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
#, fuzzy
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr "paket yüklemek"
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
#, fuzzy
msgid "override build root"
msgstr "paket yaratýlýrken <dizin> baþlangýç dizini olarak kullanýlýr"
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "adýmlarýn hiçbirini çalýþtýrmaz"
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
#, fuzzy
msgid "remove specfile when done"
msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr "%d numaralý kayýt okunamadý\n"
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr "%s pakedi yüklenmemiþ\n"
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "hata: %s yüklenemedi\n"
msgid "cannot open Packages database in %s\n"
msgstr "hata: %s%s/packages.rpm açýlamýyor\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "%s pakedi yüklenmemiþ\n"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr "baðýmlýlýk hatasý, aþaðýdaki paketlere ihtiyacýnýz var:\n"
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
#, fuzzy
msgid "installing binary packages\n"
msgstr "paket yüklemek"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "hata: %s%s/packages.rpm açýlamýyor\n"
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr "bu paketin silinmesi aþaðýdaki baðýmlýlýklarý etkileyecektir:\n"
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "hata: %s eriþilemiyor\n"
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr "%s yükleniyor\n"
msgid "missing architecture name at %s:%d"
msgstr "%s te eksik mimari tanýmlamasý:%d"
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "%s te eksik data satýrý:%d"
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "%s te data satýrýnda çok fazla argüman:%d"
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "Kötü arch/os numarasý %s: (%s:%d)"
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "%s te eksik default satýrý:%d"
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "%s te default satýrýnda çok fazla argüman:%d"
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "%s okuma eriþimi için açýlamadý:%s."
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr "%s okunamadý: %s"
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "%s te eksik ':' :%d"
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "%s için %s te eksik argüman :%d"
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "%s açýlamadý: %s"
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "%s için %s te eksik mimari:%d"
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "%s geçersiz seçenek %s:%d"
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
#: rpmio/rpmio.c:540
#, fuzzy
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr "FTP I/O hatasý"
#: rpmio/rpmio.c:543
msgstr "FTP sunucusu ile veri alýþveriþi yapýlamadý"
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+#, fuzzy
+msgid "I/O error to local file"
msgstr "Yerel dosyaya eriþim sýrasýnda I/O hatasý"
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-01-01 19:44-0500\n"
+"POT-Creation-Date: 2001-01-03 14:05-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"options as -q"
msgstr ""
-#: lib/poptBT.c:181 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
+#: lib/poptBT.c:180 lib/verify.c:56 rpm.c:377 rpm.c:419 rpm.c:454 rpmqv.c:291
#: rpmqv.c:595 rpmqv.c:643 rpmqv.c:677
msgid "do not verify package dependencies"
msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:192 rpm.c:480
+#: lib/poptBT.c:191 rpm.c:480
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:173 rpm.c:482
+#: lib/poptBT.c:172 rpm.c:482
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:188 rpm.c:484
+#: lib/poptBT.c:187 rpm.c:484
msgid "remove sources when done"
msgstr ""
msgid "remove spec file when done"
msgstr ""
-#: lib/poptBT.c:194 rpm.c:488 rpmqv.c:224
+#: lib/poptBT.c:193 rpm.c:488 rpmqv.c:224
msgid "generate PGP/GPG signature"
msgstr ""
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:175 rpmqv.c:208
+#: lib/poptBT.c:174 rpmqv.c:208
msgid "generate headers compatible with rpm4 packaging"
msgstr ""
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:203
+#: build/parsePreamble.c:189
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:208
+#: build/parsePreamble.c:194
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:213
+#: build/parsePreamble.c:199
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:218
+#: build/parsePreamble.c:204
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:232
+#: build/parsePreamble.c:218
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:257
+#: build/parsePreamble.c:243
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:305
+#: build/parsePreamble.c:291
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:323
+#: build/parsePreamble.c:309
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:336
+#: build/parsePreamble.c:322
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:402
+#: build/parsePreamble.c:388
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:410
+#: build/parsePreamble.c:396
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parsePreamble.c:439
+#: build/parsePreamble.c:418 build/parsePreamble.c:425
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:496 build/parseSpec.c:379
+#: build/parsePreamble.c:482 build/parseSpec.c:374
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:509
+#: build/parsePreamble.c:495
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:521
+#: build/parsePreamble.c:507
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:533
+#: build/parsePreamble.c:519
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:573 build/parsePreamble.c:584
+#: build/parsePreamble.c:559 build/parsePreamble.c:570
#, c-format
msgid "line %d: Bad %s: qualifiers: %s"
msgstr ""
-#: build/parsePreamble.c:610
+#: build/parsePreamble.c:596
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:619
+#: build/parsePreamble.c:605
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:757
+#: build/parsePreamble.c:743
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:763
+#: build/parsePreamble.c:749
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:788
+#: build/parsePreamble.c:774
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:810
+#: build/parsePreamble.c:796
msgid "Spec file can't use BuildRoot"
msgstr ""
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:133
+#: build/parseSpec.c:128
#, c-format
msgid "line %d: %s"
msgstr ""
#. XXX Fstrerror
-#: build/parseSpec.c:181
+#: build/parseSpec.c:176
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
-#: build/parseSpec.c:193
+#: build/parseSpec.c:188
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:264
+#: build/parseSpec.c:259
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:272
+#: build/parseSpec.c:267
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:283
+#: build/parseSpec.c:278
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:297 build/parseSpec.c:306
+#: build/parseSpec.c:292 build/parseSpec.c:301
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:485
+#: build/parseSpec.c:480
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:540
+#: build/parseSpec.c:535
msgid "Package has no %%description: %s"
msgstr ""
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:444
+#: lib/cpio.c:445
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:450
+#: lib/cpio.c:451
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:757
+#: lib/cpio.c:758
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1243
+#: lib/cpio.c:1245
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1246
+#: lib/cpio.c:1248
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1247
+#: lib/cpio.c:1249
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1265
+#: lib/cpio.c:1267
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1266
+#: lib/cpio.c:1268
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1267
+#: lib/cpio.c:1269
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1268
+#: lib/cpio.c:1270
msgid "MD5 sum mismatch"
msgstr ""
-#: lib/cpio.c:1269
+#: lib/cpio.c:1271
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1278
+#: lib/cpio.c:1280
msgid " failed - "
msgstr ""
msgid "========== continuing tsort ...\n"
msgstr ""
-#: lib/db1.c:91 lib/db3.c:451
+#: lib/db1.c:92 lib/db2.c:112 lib/db3.c:456
#, c-format
-msgid "db%d error(%d)"
+msgid "db%d error(%d) from %s: %s\n"
msgstr ""
-#: lib/db1.c:93 lib/db3.c:453
+#: lib/db1.c:95 lib/db2.c:115 lib/db3.c:459
#, c-format
-msgid " performing %s"
+msgid "db%d error(%d): %s\n"
msgstr ""
-#: lib/db1.c:388
+#: lib/db1.c:387
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:391
+#: lib/db1.c:390
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:422
+#: lib/db1.c:421
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:427
+#: lib/db1.c:426
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:450
+#: lib/db1.c:449
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "exclusive"
msgstr ""
-#: lib/db1.c:451 lib/db3.c:1114
+#: lib/db1.c:450 lib/db3.c:1120
msgid "shared"
msgstr ""
-#: lib/db2.c:137
+#: lib/db2.c:141
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:149
+#: lib/db2.c:153
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:186
+#: lib/db2.c:190
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:561
+#: lib/db2.c:565
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:639
+#: lib/db2.c:643
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:267
+#: lib/db3.c:268
#, c-format
-msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
+msgid "unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:295
+#: lib/db3.c:297
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:303
+#: lib/db3.c:306
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:311
+#: lib/db3.c:315
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:478
+#: lib/db3.c:484
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:494
+#: lib/db3.c:500
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:531
+#: lib/db3.c:537
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:917
+#: lib/db3.c:923
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:1007
+#: lib/db3.c:1013
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1112
+#: lib/db3.c:1118
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1119
+#: lib/db3.c:1125
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:140
+#: lib/falloc.c:141
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2569 lib/header.c:2586 lib/header.c:2606
+#: lib/header.c:2519 lib/header.c:2536 lib/header.c:2556
msgid "(not a number)"
msgstr ""
msgstr ""
#. This should not be allowed
-#: lib/header.c:220
+#: lib/header.c:172
msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:255 lib/header.c:1052 lib/install.c:365
+#: lib/header.c:207 lib/header.c:1004 lib/install.c:365
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1477
+#: lib/header.c:1427
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1922
+#: lib/header.c:1872
#, c-format
msgid "missing { after %"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1952
+#: lib/header.c:1902
msgid "missing } after %{"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1966
+#: lib/header.c:1916
msgid "empty tag format"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1978
+#: lib/header.c:1928
msgid "empty tag name"
msgstr ""
#. @-observertrans@
-#: lib/header.c:1995
+#: lib/header.c:1945
msgid "unknown tag"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2022
+#: lib/header.c:1972
msgid "] expected at end of array"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2040
+#: lib/header.c:1990
msgid "unexpected ]"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2044
+#: lib/header.c:1994
msgid "unexpected }"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2104
+#: lib/header.c:2054
msgid "? expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2113
+#: lib/header.c:2063
msgid "{ expected after ? in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2126 lib/header.c:2167
+#: lib/header.c:2076 lib/header.c:2117
msgid "} expected in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2136
+#: lib/header.c:2086
msgid ": expected following ? subexpression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2152
+#: lib/header.c:2102
msgid "{ expected after : in expression"
msgstr ""
#. @-observertrans@
-#: lib/header.c:2177
+#: lib/header.c:2127
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:2348
+#: lib/header.c:2298
msgid "(unknown type)"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:650
+#: lib/install.c:651
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:651
+#: lib/install.c:652
msgid " on file "
msgstr ""
-#: lib/install.c:700
+#: lib/install.c:701
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:720
+#: lib/install.c:721
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:726 lib/install.c:756
+#: lib/install.c:727 lib/install.c:757
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:730
+#: lib/install.c:731
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:750
+#: lib/install.c:751
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:760
+#: lib/install.c:761
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:792 lib/install.c:820
+#: lib/install.c:793 lib/install.c:821
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:838
+#: lib/install.c:839
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:840 lib/install.c:1102 lib/uninstall.c:60
+#: lib/install.c:841 lib/install.c:1103 lib/uninstall.c:60
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:930
+#: lib/install.c:931
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:974
+#: lib/install.c:975
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:1018
+#: lib/install.c:1019
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:1023
+#: lib/install.c:1024
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1030
+#: lib/install.c:1031
msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n"
msgstr ""
-#: lib/install.c:1062
+#: lib/install.c:1063
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/install.c:1098
+#: lib/install.c:1099
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/install.c:1189
+#: lib/install.c:1193
msgid "running postinstall scripts (if any)\n"
msgstr ""
msgstr ""
#: lib/poptBT.c:94
-msgid "buildroot already specified"
+#, c-format
+msgid "buildroot already specified, ignoring %s\n"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:119
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr ""
-#: lib/poptBT.c:121 lib/poptBT.c:124 lib/poptBT.c:127 lib/poptBT.c:130
-#: lib/poptBT.c:133 lib/poptBT.c:136 lib/poptBT.c:139
+#: lib/poptBT.c:120 lib/poptBT.c:123 lib/poptBT.c:126 lib/poptBT.c:129
+#: lib/poptBT.c:132 lib/poptBT.c:135 lib/poptBT.c:138
msgid "<specfile>"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:122
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr ""
-#: lib/poptBT.c:126
+#: lib/poptBT.c:125
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:128
#, c-format
msgid "verify %files section from <specfile>"
msgstr ""
-#: lib/poptBT.c:132
+#: lib/poptBT.c:131
msgid "build source and binary packages from <specfile>"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:134
msgid "build binary package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:137
msgid "build source package only from <specfile>"
msgstr ""
-#: lib/poptBT.c:142
+#: lib/poptBT.c:141
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr ""
-#: lib/poptBT.c:143 lib/poptBT.c:146 lib/poptBT.c:149 lib/poptBT.c:152
-#: lib/poptBT.c:155 lib/poptBT.c:158 lib/poptBT.c:161
+#: lib/poptBT.c:142 lib/poptBT.c:145 lib/poptBT.c:148 lib/poptBT.c:151
+#: lib/poptBT.c:154 lib/poptBT.c:157 lib/poptBT.c:160
msgid "<tarball>"
msgstr ""
-#: lib/poptBT.c:145
+#: lib/poptBT.c:144
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr ""
-#: lib/poptBT.c:148
+#: lib/poptBT.c:147
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr ""
-#: lib/poptBT.c:151
+#: lib/poptBT.c:150
#, c-format
msgid "verify %files section from <tarball>"
msgstr ""
-#: lib/poptBT.c:154
+#: lib/poptBT.c:153
msgid "build source and binary packages from <tarball>"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:156
msgid "build binary package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:160
+#: lib/poptBT.c:159
msgid "build source package only from <tarball>"
msgstr ""
-#: lib/poptBT.c:164
+#: lib/poptBT.c:163
msgid "build binary package from <source package>"
msgstr ""
-#: lib/poptBT.c:165 lib/poptBT.c:168
+#: lib/poptBT.c:164 lib/poptBT.c:167
msgid "<source package>"
msgstr ""
-#: lib/poptBT.c:167
+#: lib/poptBT.c:166
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
-#: lib/poptBT.c:171
+#: lib/poptBT.c:170
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:177
+#: lib/poptBT.c:176
msgid "ignore ExcludeArch: directives from spec file"
msgstr ""
-#: lib/poptBT.c:179
+#: lib/poptBT.c:178
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:183
+#: lib/poptBT.c:182
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: lib/poptBT.c:186
+#: lib/poptBT.c:185
msgid "do not accept i18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:190
+#: lib/poptBT.c:189
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:196
+#: lib/poptBT.c:195
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:198
+#: lib/poptBT.c:197
msgid "lookup i18N strings in specfile catalog"
msgstr ""
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:746 lib/rpminstall.c:546
+#: lib/query.c:746 lib/rpminstall.c:548
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:298 lib/rpminstall.c:470
+#: lib/rpminstall.c:298 lib/rpminstall.c:472
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:316 lib/rpminstall.c:611
+#: lib/rpminstall.c:316 lib/rpminstall.c:613
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:353
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:398
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:401
+#: lib/rpminstall.c:403
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:418
+#: lib/rpminstall.c:420
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:429
+#: lib/rpminstall.c:431
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:450
+#: lib/rpminstall.c:452
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:535
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:551
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:574
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:602
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:606
+#: lib/rpminstall.c:608
#, c-format
msgid "Installing %s\n"
msgstr ""
msgid "missing architecture name at %s:%d"
msgstr ""
-#: lib/rpmrc.c:313
+#: lib/rpmrc.c:305
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:317
+#: lib/rpmrc.c:309
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:324
+#: lib/rpmrc.c:316
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr ""
-#: lib/rpmrc.c:359
+#: lib/rpmrc.c:351
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:364
+#: lib/rpmrc.c:356
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr ""
-#: lib/rpmrc.c:554
+#: lib/rpmrc.c:546
#, c-format
msgid "Cannot expand %s"
msgstr ""
-#: lib/rpmrc.c:559
+#: lib/rpmrc.c:551
#, c-format
msgid "Cannot read %s, HOME is too large."
msgstr ""
-#: lib/rpmrc.c:576
+#: lib/rpmrc.c:568
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "Failed to read %s: %s."
msgstr ""
-#: lib/rpmrc.c:658
+#: lib/rpmrc.c:650
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr ""
-#: lib/rpmrc.c:675 lib/rpmrc.c:749
+#: lib/rpmrc.c:667 lib/rpmrc.c:741
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:692 lib/rpmrc.c:714
+#: lib/rpmrc.c:684 lib/rpmrc.c:706
#, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr ""
-#: lib/rpmrc.c:701
+#: lib/rpmrc.c:693
#, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr ""
-#: lib/rpmrc.c:741
+#: lib/rpmrc.c:733
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr ""
-#: lib/rpmrc.c:808
+#: lib/rpmrc.c:800
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr ""
-#: lib/rpmrc.c:1205
+#: lib/rpmrc.c:1197
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1206
+#: lib/rpmrc.c:1198
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
msgstr ""
#: rpmio/rpmio.c:540
-msgid "Server IO error"
+msgid "Server I/O error"
msgstr ""
#: rpmio/rpmio.c:543
msgstr ""
#: rpmio/rpmio.c:558
-msgid "IO error to local file"
+msgid "I/O error to local file"
msgstr ""
#: rpmio/rpmio.c:561
if (!(*a)->name) return 1;
if (!(*b)->name) return -1;
- ret = strcasecmp((*a)->name, (*b)->name);
+ ret = xstrcasecmp((*a)->name, (*b)->name);
if (ret) return ret;
score1 = psGetArchScore((*a)->h);
if (!score1) return 1;
} else if (PyString_Check(item)) {
str = PyString_AsString(item);
for (i = 0; i < rpmTagTableSize; i++)
- if (!strcasecmp(rpmTagTable[i].name + 7, str)) break;
+ if (!xstrcasecmp(rpmTagTable[i].name + 7, str)) break;
if (i < rpmTagTableSize) return rpmTagTable[i].val;
}
return -1;
str = PyString_AsString(item);
while (extensions->name) {
if (extensions->type == HEADER_EXT_TAG
- && !strcasecmp(extensions->name + 7, str)) {
+ && !xstrcasecmp(extensions->name + 7, str)) {
(const struct headerSprintfExtension *) ext = extensions;
}
extensions++;
if (!(*a)->name) return 1;
if (!(*b)->name) return -1;
- return strcasecmp((*a)->name, (*b)->name);
+ return xstrcasecmp((*a)->name, (*b)->name);
}
Name: rpm
%define version 4.0.2
Version: %{version}
-Release: 0.15
+Release: 0.16
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{version}.tar.gz
Copyright: GPL
%{__prefix}/include/popt.h
%changelog
+* Wed Jan 3 2001 Jeff Johnson <jbj@redhat.com>
+- fix: avoid locale issues with strcasecmp/strncasecmp (#23199).
+- remove almost all explicit uses of stderr in rpmlib using rpmError().
+
* Tue Jan 2 2001 Jeff Johnson <jbj@redhat.com>
- fix apidocs.
Name: rpm
%define version @VERSION@
Version: %{version}
-Release: 0.15
+Release: 0.16
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{version}.tar.gz
Copyright: GPL
%{__prefix}/include/popt.h
%changelog
+* Wed Jan 3 2001 Jeff Johnson <jbj@redhat.com>
+- fix: avoid locale issues with strcasecmp/strncasecmp (#23199).
+- remove almost all explicit uses of stderr in rpmlib using rpmError().
+
* Tue Jan 2 2001 Jeff Johnson <jbj@redhat.com>
- fix apidocs.
lib_LTLIBRARIES = librpmio.la
librpmio_la_SOURCES = rpmrpc.c rpmio.c rpmio_api.c url.c macro.c \
- base64.c digest.c stubs.c \
+ base64.c digest.c strcasecmp.c stubs.c \
ugid.c rpmmalloc.c rpmlog.c
# XXX Add internal libtool dependence
RPMERR_BADRELOCATE = _em(40), /*!< bad relocation was specified */
RPMERR_OLDDB = _em(41), /*!< old format database */
-/* spec.c build.c pack.c */
RPMERR_UNMATCHEDIF = _em(107), /*!< unclosed %ifarch or %ifos */
- RPMERR_BADARG = _em(109), /*!< @todo Document. */
+ RPMERR_BADARG = _em(109), /*!< */
RPMERR_SCRIPT = _em(110), /*!< errors related to script exec */
- RPMERR_READ = _em(111), /*!< @todo Document. */
- RPMERR_UNKNOWNOS = _em(112), /*!< @todo Document. */
- RPMERR_UNKNOWNARCH = _em(113), /*!< @todo Document. */
- RPMERR_EXEC = _em(114), /*!< @todo Document. */
- RPMERR_FORK = _em(115), /*!< @todo Document. */
- RPMERR_CPIO = _em(116), /*!< @todo Document. */
- RPMERR_GZIP = _em(117), /*!< @todo Document. */
- RPMERR_BADSPEC = _em(118), /*!< @todo Document. */
+ RPMERR_READ = _em(111), /*!< */
+ RPMERR_UNKNOWNOS = _em(112), /*!< */
+ RPMERR_UNKNOWNARCH = _em(113), /*!< */
+ RPMERR_EXEC = _em(114), /*!< */
+ RPMERR_FORK = _em(115), /*!< */
+ RPMERR_CPIO = _em(116), /*!< */
+ RPMERR_GZIP = _em(117), /*!< */
+ RPMERR_BADSPEC = _em(118), /*!< */
RPMERR_LDD = _em(119), /*!< couldn't understand ldd output */
- RPMERR_BADFILENAME = _em(120), /*!< @todo Document. */
- RPMERR_OPEN = _em(121), /*!< @todo Document. */
- RPMERR_POPEN = _em(122), /*!< @todo Document. */
+ RPMERR_BADFILENAME = _em(120), /*!< */
+ RPMERR_OPEN = _em(121), /*!< */
+ RPMERR_POPEN = _em(122), /*!< */
RPMERR_NOTREG = _em(123), /*!< File %s is not a regular file */
- RPMERR_QUERY = _em(124), /*!< @todo Document. */
- RPMERR_QFMT = _em(125), /*!< @todo Document. */
+ RPMERR_QUERY = _em(124), /*!< */
+ RPMERR_QFMT = _em(125), /*!< */
+ RPMERR_DBCONFIG = _em(126), /*!< */
+ RPMERR_DBERR = _em(127), /*!< */
+ RPMERR_BADPACKAGE = _em(128), /*!< */
+ RPMERR_FREELIST = _em(129), /*!< */
+ RPMERR_DATATYPE = _em(130), /*!< */
+ RPMERR_BUILDROOT = _em(131), /*!< */
+ RPMERR_MAKETEMP = _em(132), /*!< */
+ RPMERR_FWRITE = _em(133), /*!< */
+ RPMERR_FREAD = _em(134), /*!< */
+ RPMERR_READLEAD = _em(135), /*!< */
+ RPMERR_WRITELEAD = _em(136), /*!< */
RPMERR_BADSIGTYPE = _em(200), /*!< Unknown signature type */
- RPMERR_SIGGEN = _em(201) /*!< Error generating signature */
+ RPMERR_SIGGEN = _em(201), /*!< Error generating signature */
+ RPMERR_SIGVFY = _em(202) /*!< */
} rpmerrCode;
/**
return _("Bad server response");
case FTPERR_SERVER_IO_ERROR:
- return _("Server IO error");
+ return _("Server I/O error");
case FTPERR_SERVER_TIMEOUT:
return _("Server timeout");
return _("Failed to establish data connection to server");
case FTPERR_FILE_IO_ERROR:
- return _("IO error to local file");
+ return _("I/O error to local file");
case FTPERR_PASSIVE_ERROR:
return _("Error setting remote server to passive mode");
* FTP and HTTP error codes.
*/
typedef enum ftperrCode_e {
- FTPERR_BAD_SERVER_RESPONSE = -1, /*!< */
- FTPERR_SERVER_IO_ERROR = -2, /*!< */
- FTPERR_SERVER_TIMEOUT = -3, /*!< */
- FTPERR_BAD_HOST_ADDR = -4, /*!< */
- FTPERR_BAD_HOSTNAME = -5, /*!< */
- FTPERR_FAILED_CONNECT = -6, /*!< */
- FTPERR_FILE_IO_ERROR = -7, /*!< */
- FTPERR_PASSIVE_ERROR = -8, /*!< */
- FTPERR_FAILED_DATA_CONNECT = -9, /*!< */
- FTPERR_FILE_NOT_FOUND = -10, /*!< */
- FTPERR_NIC_ABORT_IN_PROGRESS= -11, /*!< */
- FTPERR_UNKNOWN = -100 /*!< */
+ FTPERR_BAD_SERVER_RESPONSE = -1, /*!< Bad server response */
+ FTPERR_SERVER_IO_ERROR = -2, /*!< Server I/O error */
+ FTPERR_SERVER_TIMEOUT = -3, /*!< Server timeout */
+ FTPERR_BAD_HOST_ADDR = -4, /*!< Unable to lookup server host address */
+ FTPERR_BAD_HOSTNAME = -5, /*!< Unable to lookup server host name */
+ FTPERR_FAILED_CONNECT = -6, /*!< Failed to connect to server */
+ FTPERR_FILE_IO_ERROR = -7, /*!< Failed to establish data connection to server */
+ FTPERR_PASSIVE_ERROR = -8, /*!< I/O error to local file */
+ FTPERR_FAILED_DATA_CONNECT = -9, /*!< Error setting remote server to passive mode */
+ FTPERR_FILE_NOT_FOUND = -10, /*!< File not found on server */
+ FTPERR_NIC_ABORT_IN_PROGRESS= -11, /*!< Abort in progress */
+ FTPERR_UNKNOWN = -100 /*!< Unknown or unexpected error */
} ftperrCode;
/** \ingroup rpmio
/*@observer@*/ extern FDIO_t fadio;
/*@}*/
+/** \ingroup rpmio
+ * Locale insensitive strcasecmp(3).
+ */
+int xstrcasecmp(const char *s1, const char * s2) /*@*/;
+
+/** \ingroup rpmio
+ * Locale insensitive strncasecmp(3).
+ */
+int xstrncasecmp(const char *s1, const char * s2, size_t n) /*@*/;
+
#ifdef __cplusplus
}
#endif
if (_rpmio_debug)
fprintf(stderr, "*** rename old %*s new %*s\n", (int)(oe - oldpath), oldpath, (int)(ne - newpath), newpath);
if (!(oldut == newut && oe && ne && (oe - oldpath) == (ne - newpath) &&
- !strncasecmp(oldpath, newpath, (oe - oldpath))))
+ !xstrncasecmp(oldpath, newpath, (oe - oldpath))))
return -2;
return ftpRename(oldpath, newpath);
/*@notreached@*/ break;
if (_rpmio_debug)
fprintf(stderr, "*** link old %*s new %*s\n", (int)(oe - oldpath), oldpath, (int)(ne - newpath), newpath);
if (!(oldut == newut && oe && ne && (oe - oldpath) == (ne - newpath) &&
- !strncasecmp(oldpath, newpath, (oe - oldpath))))
+ !xstrncasecmp(oldpath, newpath, (oe - oldpath))))
return -2;
oldpath = oe;
newpath = ne;
--- /dev/null
+/** \ingroup rpmio
+ * \file rpmio/strcasecmp.c
+ */
+
+#include "system.h"
+#include "debug.h"
+
+static inline unsigned char xtolower(unsigned char c)
+{
+ return ((c >= 'A' && c <= 'Z') ? (c | 0x40) : c);
+}
+
+int xstrcasecmp(const char *s1, const char *s2)
+{
+ const unsigned char *p1 = (const unsigned char *) s1;
+ const unsigned char *p2 = (const unsigned char *) s2;
+ unsigned char c1, c2;
+
+ if (p1 == p2)
+ return 0;
+
+ do
+ {
+ c1 = xtolower (*p1++);
+ c2 = xtolower (*p2++);
+ if (c1 == '\0')
+ break;
+ }
+ while (c1 == c2);
+
+ return c1 - c2;
+}
+
+int xstrncasecmp(const char *s1, const char *s2, size_t n)
+{
+ const unsigned char *p1 = (const unsigned char *) s1;
+ const unsigned char *p2 = (const unsigned char *) s2;
+ unsigned char c1, c2;
+
+ if (p1 == p2 || n == 0)
+ return 0;
+
+ do
+ {
+ c1 = xtolower (*p1++);
+ c2 = xtolower (*p2++);
+ if (c1 == '\0' || c1 != c2)
+ return c1 - c2;
+ } while (--n > 0);
+
+ return c1 - c2;
+}
#include "misc/stpncpy.c"
#endif
-#if !defined(HAVE_STRCASECMP)
-#include "misc/strcasecmp.c"
-#endif
-
-#if !defined(HAVE_STRNCASECMP)
-#include "misc/strncasecmp.c"
-#endif
-
#if !defined(HAVE_STRCSPN)
#include "misc/strcspn.c"
#endif
const struct headerTagTableEntry *t;
int tval;
- if (strncasecmp("RPMTAG_", tname, sizeof("RPMTAG_"))) {
+ if (xstrncasecmp("RPMTAG_", tname, sizeof("RPMTAG_"))) {
char *tagname = alloca(sizeof("RPMTAG_") + strlen(tname));
sprintf(tagname, "RPMTAG_%s", tname);
tname = tagname;
}
for (t = rpmTagTable; t->name != NULL; t++) {
- if (!strncasecmp(tname, t->name, strlen(t->name)))
+ if (!xstrncasecmp(tname, t->name, strlen(t->name)))
return t->val;
}
- if (!strcasecmp(tname, hdri18ntbl))
+ if (!xstrcasecmp(tname, hdri18ntbl))
return HEADER_I18NTABLE;
tval = atoi(tname);