diff options
author | jbj <devnull@localhost> | 2000-07-09 04:42:12 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2000-07-09 04:42:12 +0000 |
commit | 913d116d71f5c2cb47c35944b8c1fcd9795fd6e3 (patch) | |
tree | bf1a9fb6f34f78f1556eb5873ab885f5f96737a3 | |
parent | 6f562fce82cce2963cf8287fd57aa1ed29c95adc (diff) | |
download | rpm-913d116d71f5c2cb47c35944b8c1fcd9795fd6e3.tar.gz rpm-913d116d71f5c2cb47c35944b8c1fcd9795fd6e3.tar.bz2 rpm-913d116d71f5c2cb47c35944b8c1fcd9795fd6e3.zip |
- add pre-transaction syscall's to handle /etc/init.d change.
- don't bother saving '/' as fingerprint subdir.
CVS patchset: 3926
CVS date: 2000/07/09 04:42:12
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | build/parsePreamble.c | 51 | ||||
-rw-r--r-- | lib/Makefile.am | 2 | ||||
-rw-r--r-- | lib/fileutil.c | 161 | ||||
-rw-r--r-- | lib/fprint.c | 7 | ||||
-rw-r--r-- | lib/fprint.h | 6 | ||||
-rw-r--r-- | lib/problems.c | 16 | ||||
-rw-r--r-- | lib/rpmlib.h | 11 | ||||
-rw-r--r-- | lib/transaction.c | 27 | ||||
-rw-r--r-- | po/cs.po | 215 | ||||
-rw-r--r-- | po/da.po | 212 | ||||
-rw-r--r-- | po/de.po | 217 | ||||
-rw-r--r-- | po/es.po | 211 | ||||
-rw-r--r-- | po/fi.po | 214 | ||||
-rw-r--r-- | po/fr.po | 211 | ||||
-rw-r--r-- | po/gl.po | 211 | ||||
-rw-r--r-- | po/hu.po | 211 | ||||
-rw-r--r-- | po/id.po | 211 | ||||
-rw-r--r-- | po/is.po | 211 | ||||
-rw-r--r-- | po/it.po | 211 | ||||
-rw-r--r-- | po/ja.po | 213 | ||||
-rw-r--r-- | po/ko.po | 211 | ||||
-rw-r--r-- | po/no.po | 212 | ||||
-rw-r--r-- | po/pl.po | 212 | ||||
-rw-r--r-- | po/pt.po | 211 | ||||
-rw-r--r-- | po/pt_BR.po | 212 | ||||
-rw-r--r-- | po/ro.po | 211 | ||||
-rw-r--r-- | po/rpm.pot | 66 | ||||
-rw-r--r-- | po/ru.po | 212 | ||||
-rw-r--r-- | po/sk.po | 212 | ||||
-rw-r--r-- | po/sl.po | 214 | ||||
-rw-r--r-- | po/sr.po | 214 | ||||
-rw-r--r-- | po/sv.po | 212 | ||||
-rw-r--r-- | po/tr.po | 214 | ||||
-rw-r--r-- | po/uk.po | 211 | ||||
-rw-r--r-- | rpm.spec | 4 |
36 files changed, 3174 insertions, 2485 deletions
@@ -69,6 +69,8 @@ - put version on rpmpopt filename to avoid legacy filename collision. - change optflags for i386. - multilib patch, take 1. + - add pre-transaction syscall's to handle /etc/init.d change. + - don't bother saving '/' as fingerprint subdir. 3.0.4 -> 3.0.5 - handle version 4 packaging as input. diff --git a/build/parsePreamble.c b/build/parsePreamble.c index aab3ab4d9..1390c4060 100644 --- a/build/parsePreamble.c +++ b/build/parsePreamble.c @@ -4,8 +4,6 @@ #include "system.h" -static int _debug = 0; - #include <rpmio_internal.h> #include <rpmbuild.h> @@ -343,7 +341,7 @@ static int handlePreambleTag(Spec spec, Package pkg, int tag, const char *macro, } field++; SKIPSPACE(field); - if (! *field) { + if (!*field) { /* Empty field */ rpmError(RPMERR_BADSPEC, _("line %d: Empty tag: %s"), spec->lineNum, spec->line); @@ -355,9 +353,8 @@ static int handlePreambleTag(Spec spec, Package pkg, int tag, const char *macro, /* See if this is multi-token */ end = field; SKIPNONSPACE(end); - if (*end) { + if (*end) multiToken = 1; - } switch (tag) { case RPMTAG_NAME: @@ -391,11 +388,10 @@ static int handlePreambleTag(Spec spec, Package pkg, int tag, const char *macro, case RPMTAG_VENDOR: case RPMTAG_LICENSE: case RPMTAG_PACKAGER: - if (! *lang) { + if (!*lang) headerAddEntry(pkg->header, tag, RPM_STRING_TYPE, field, 1); - } else if (!(noLang && strcmp(lang, RPMBUILD_DEFAULT_LANG))) { + else if (!(noLang && strcmp(lang, RPMBUILD_DEFAULT_LANG))) headerAddI18NString(pkg->header, tag, field, lang); - } break; case RPMTAG_BUILDROOT: SINGLE_TOKEN_ONLY; @@ -413,8 +409,6 @@ static int handlePreambleTag(Spec spec, Package pkg, int tag, const char *macro, buildRootURL = rpmGenPath(NULL, "%{?buildroot:%{buildroot}}", NULL); if (strcmp(buildRootURL, "/")) { spec->buildRootURL = buildRootURL; -if (_debug) -fprintf(stderr, "*** PPA BuildRoot %s set from macro\n", buildRootURL); macro = NULL; } else { const char * specURL = field; @@ -425,13 +419,9 @@ fprintf(stderr, "*** PPA BuildRoot %s set from macro\n", buildRootURL); buildRootURL = rpmGenPath(spec->rootURL, field, NULL); spec->buildRootURL = buildRootURL; field = (char *) buildRootURL; -if (_debug) -fprintf(stderr, "*** PPA BuildRoot %s set from field\n", buildRootURL); } spec->gotBuildRootURL = 1; } else { -if (_debug) -fprintf(stderr, "*** PPA BuildRoot %s already set, skipping field %s\n", buildRootURL, field); macro = NULL; } buildRootURL = rpmGenPath(NULL, spec->buildRootURL, NULL); @@ -496,25 +486,21 @@ fprintf(stderr, "*** PPA BuildRoot %s already set, skipping field %s\n", buildRo case RPMTAG_PATCH: SINGLE_TOKEN_ONLY; macro = NULL; - if ((rc = addSource(spec, pkg, field, tag))) { + if ((rc = addSource(spec, pkg, field, tag))) return rc; - } break; case RPMTAG_ICON: SINGLE_TOKEN_ONLY; - if ((rc = addSource(spec, pkg, field, tag))) { + if ((rc = addSource(spec, pkg, field, tag))) return rc; - } - if ((rc = readIcon(pkg->header, field))) { + if ((rc = readIcon(pkg->header, field))) return RPMERR_BADSPEC; - } break; case RPMTAG_NOSOURCE: case RPMTAG_NOPATCH: spec->noSource = 1; - if ((rc = parseNoSource(spec, field, tag))) { + if ((rc = parseNoSource(spec, field, tag))) return rc; - } break; case RPMTAG_OBSOLETES: case RPMTAG_PROVIDEFLAGS: @@ -542,9 +528,21 @@ fprintf(stderr, "*** PPA BuildRoot %s already set, skipping field %s\n", buildRo spec->lineNum, spec->line); return RPMERR_BADSPEC; } - if (! spec->buildArchitectureCount) { + if (!spec->buildArchitectureCount) FREE(spec->buildArchitectures); + break; + + case RPMTAG_PRETRANSACTION: + case RPMTAG_POSTTRANSACTION: + if ((rc = rpmSyscall(field, 1)) != 0) { + rpmError(RPMERR_BADSPEC, + _("line %d: Invalid tag value: %s"), + spec->lineNum, tagName(tag), spec->line); + return RPMERR_BADSPEC; } + headerAddOrAppendEntry(pkg->header, tag, RPM_STRING_ARRAY_TYPE, + &field, 1); + macro = NULL; break; default: @@ -552,9 +550,8 @@ fprintf(stderr, "*** PPA BuildRoot %s already set, skipping field %s\n", buildRo return RPMERR_INTERNAL; } - if (macro) { + if (macro) addMacro(spec->macros, macro, NULL, field, RMIL_SPEC); - } return 0; } @@ -608,6 +605,10 @@ static struct PreambleRec { {RPMTAG_AUTOREQ, 0, 0, "autoreq"}, {RPMTAG_AUTOPROV, 0, 0, "autoprov"}, {RPMTAG_DOCDIR, 0, 0, "docdir"}, + {RPMTAG_PRETRANSACTION, 0, 0, "pretransaction"}, +#ifdef NOTYET + {RPMTAG_POSTTRANSACTION, 0, 0, "posttransaction"}, +#endif {0, 0, 0, 0} }; diff --git a/lib/Makefile.am b/lib/Makefile.am index 53baf1d26..df6a9c922 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -22,7 +22,7 @@ LIBS= lib_LTLIBRARIES = librpm.la librpm_la_SOURCES = \ - cpio.c $(DBLIBOBJS) depends.c \ + cpio.c $(DBLIBOBJS) depends.c fileutil.c \ formats.c fprint.c fs.c hash.c header.c install.c \ md5.c md5sum.c misc.c oldheader.c package.c problems.c \ poptBT.c poptQV.c query.c rpmchecksig.c rpmdb.c rpminstall.c \ diff --git a/lib/fileutil.c b/lib/fileutil.c new file mode 100644 index 000000000..b228d3c39 --- /dev/null +++ b/lib/fileutil.c @@ -0,0 +1,161 @@ +#include "system.h" + +#include <rpmlib.h> + +#include "misc.h" + +static struct { + const char *token; + int nargs; +} cmds[] = { + { "mkdir", 1 }, +#define RPMSYSCALL_MKDIR 0 + { "rmdir", 1 }, +#define RPMSYSCALL_RMDIR 1 + { "mv", -2 }, +#define RPMSYSCALL_MV 2 + { "symlink", 2 } +#define RPMSYSCALL_SYMLINK 3 +}; +int ncmds = sizeof(cmds)/sizeof(cmds[0]); + +int rpmSyscall(const char * cmd, int noexec) +{ + const char ** argv; + int argc; + struct stat st; + int i, j; + int rc; + + rc = (noexec) + ? poptParseArgvString(cmd, &argc, &argv) + : rpmGlob(cmd, &argc, &argv); + + if (rc) + goto exit; + + /* Check: argv[0] must be known. */ + for (i = 0; i < ncmds; i++) { + if (!strcmp(cmds[i].token, argv[0])) + break; + } + if (i >= ncmds) { + rc = EPERM; + goto exit; + } + + /* Check: must have exactly (or, if negative, at least) nargs. */ + if (cmds[i].nargs >= 0 && argc != (cmds[i].nargs+1)) { + rc = EPERM; + goto exit; + } else if (argc < (1-cmds[i].nargs)) { + rc = EPERM; + goto exit; + } + + /* Check: all args (except for 1st arg to symlink) must start with '/'. */ + for (j = (i == RPMSYSCALL_SYMLINK ? 2 : 1); j < argc; j++) { + if (argv[j][0] != '/') { + rc = EPERM; + goto exit; + } + } + + /* Check: parse only with 2 or more args, last arg cannot be glob. */ + if (noexec) { + if (argc > 2 && myGlobPatternP(argv[argc-1])) { + rc = 1; + goto exit; + } + rc = 0; + goto exit; + } + + /* Execute only checks below */ + + switch (i) { + case RPMSYSCALL_MKDIR: /* mkdir */ + { mode_t mode = 0755; + rc = mkdir(argv[1], mode); + if (rc < 0) rc = errno; + if (stat(argv[1], &st) < 0) { + if (rc == 0) rc = errno; + goto exit; + } + if (!S_ISDIR(st.st_mode)) { + if (rc == 0) rc = ENOTDIR; + goto exit; + } + rc = 0; + } break; + case RPMSYSCALL_RMDIR: /* rmdir */ + rc = rmdir(argv[1]); + if (rc < 0) rc = errno; + break; + case RPMSYSCALL_MV: /* mv */ + { dev_t dev; + const char * fn, * bn; + char * t; + size_t bnlen; + + /* Check: if more than 2 args ... */ + if (argc > 3) { + /* ... last arg must be existing directory ... */ + if (stat(argv[argc-1], &st) < 0) { + if (rc == 0) rc = errno; + goto exit; + } + if (!S_ISDIR(st.st_mode)) { + if (rc == 0) rc = ENOTDIR; + goto exit; + } + /* ... and other args must all be on the same device. */ + dev = st.st_dev; + bnlen = 0; + for (j = 1; j < (argc-1); j++) { + if (stat(argv[j], &st) < 0) { + if (rc == 0) rc = errno; + goto exit; + } + if (dev != st.st_dev) { + if (rc == 0) rc = EXDEV; + goto exit; + } + bn = strrchr(argv[j], '/'); + if (bn) { + int k = strlen(bn); + if (k > bnlen) bnlen = k; + } + } + /* Everything looks OK, so do the renames. */ + fn = t = alloca(strlen(argv[argc-1])+2+bnlen); + t = stpcpy(t, argv[argc-1]); + if (t[-1] != '/') *t++ = '/'; + for (j = 1; j < (argc-1); j++) { + bn = strrchr(argv[j], '/'); + (void) stpcpy(t, bn+1); + rc = rename(argv[j], fn); + if (rc < 0) { + rc = errno; + goto exit; + } + } + } else { /* Otherwise exactly 2 args. */ + rc = rename(argv[1], argv[2]); + if (rc < 0) rc = errno; + } + } break; + case RPMSYSCALL_SYMLINK: /* symlink */ + rc = symlink(argv[1], argv[2]); + if (rc < 0) rc = errno; + break; + default: + rc = EPERM; + break; + } + +exit: + if (argv) + free((void *)argv); + return rc; +} diff --git a/lib/fprint.c b/lib/fprint.c index 25af8e9c4..b3b0d5f69 100644 --- a/lib/fprint.c +++ b/lib/fprint.c @@ -132,9 +132,14 @@ static fingerPrint doLookup(fingerPrintCache cache, fp.subDir = cleanDirName + (end - buf); if (fp.subDir[0] == '/' && fp.subDir[1] != '\0') fp.subDir++; - if (fp.subDir[0] == '\0') + if (fp.subDir[0] == '\0' || + /* XXX don't bother saving '/' as subdir */ + (fp.subDir[0] == '/' && fp.subDir[1] == '\0')) fp.subDir = NULL; fp.baseName = baseName; +fprintf(stderr, "*** found (%x,%x) %s %s %s\n", +(unsigned) fp.entry->dev, (unsigned) fp.entry->ino, +fp.entry->dirName, fp.subDir, fp.baseName); if (!scareMemory && fp.subDir != NULL) fp.subDir = xstrdup(fp.subDir); return fp; diff --git a/lib/fprint.h b/lib/fprint.h index d5b97f164..97c1aa7ab 100644 --- a/lib/fprint.h +++ b/lib/fprint.h @@ -16,7 +16,7 @@ * installs of a system w/o actually mounting filesystems. */ struct fprintCacheEntry_s { - char * dirName; /*!< path to existing directory */ + const char * dirName; /*!< path to existing directory */ dev_t dev; /*!< stat(2) device number */ ino_t ino; /*!< stat(2) inode number */ int isFake; /*!< (currently unused) */ @@ -90,14 +90,14 @@ fingerPrint fpLookup(fingerPrintCache cache, const char * dirName, /** * Return hash value for a finger print. * Hash based on dev and inode only! - * @param key pointer to finger print entry + * @param key pointer to finger print entry * @return hash value */ unsigned int fpHashFunction(const void * key); /** * Compare two finger print entries. - * exactly equivalent to FP_EQUAL. + * exactly equivalent to FP_EQUAL macro. * @param key1 finger print 1 * @param key2 finger print 2 * @return result of comparing key1 and key2 diff --git a/lib/problems.c b/lib/problems.c index 0acf20f0b..22baf501f 100644 --- a/lib/problems.c +++ b/lib/problems.c @@ -103,11 +103,17 @@ const char * rpmProblemString(rpmProblem prob) case RPMPROB_DISKSPACE: sprintf(buf, _("installing package %s-%s-%s needs %ld%cb on the %s" " filesystem"), name, version, release, - prob.ulong1 > (1024*1024) ? - (prob.ulong1 + 1024 * 1024 - 1) / (1024 * 1024) : - (prob.ulong1 + 1023) / 1024, - prob.ulong1 > (1024*1024) ? 'M' : 'K', - prob.str1); + prob.ulong1 > (1024*1024) + ? (prob.ulong1 + 1024 * 1024 - 1) / (1024 * 1024) + : (prob.ulong1 + 1023) / 1024, + prob.ulong1 > (1024*1024) ? 'M' : 'K', + prob.str1); + break; + + case RPMPROB_BADPRETRANS: + sprintf(buf, _("package %s-%s-%s pre-transaction syscall(s): %s failed: %s"), + name, version, release, + prob.str1, strerror(prob.ulong1)); break; case RPMPROB_REQUIRES: diff --git a/lib/rpmlib.h b/lib/rpmlib.h index e08e95622..c32ec0a26 100644 --- a/lib/rpmlib.h +++ b/lib/rpmlib.h @@ -190,8 +190,10 @@ extern const struct headerSprintfExtension rpmHeaderFormats[]; #define RPMTAG_PAYLOADCOMPRESSOR 1125 #define RPMTAG_PAYLOADFLAGS 1126 #define RPMTAG_MULTILIBS 1127 +#define RPMTAG_PRETRANSACTION 1128 +#define RPMTAG_POSTTRANSACTION 1129 -#define RPMTAG_FIRSTFREE_TAG 1128 /* internal */ +#define RPMTAG_FIRSTFREE_TAG 1130 /* internal */ #define RPMTAG_EXTERNAL_TAG 1000000 #define RPMFILE_STATE_NORMAL 0 @@ -527,6 +529,10 @@ int rpmVerifyFile(const char * root, Header h, int filenum, */ int rpmVerifyScript(const char * root, Header h, FD_t err); +/** + */ +int rpmSyscall(const char *cmd, int noexec); + /* Transaction sets are inherently unordered! RPM may reorder transaction sets to reduce errors. In general, installs/upgrades are done before strict removals, and prerequisite ordering is done on installs/upgrades. */ @@ -621,7 +627,8 @@ typedef enum rpmProblemType_e { RPMPROB_BADARCH, RPMPROB_NEW_FILE_CONFLICT, RPMPROB_FILE_CONFLICT, RPMPROB_OLDPACKAGE, - RPMPROB_DISKSPACE + RPMPROB_DISKSPACE, + RPMPROB_BADPRETRANS } rpmProblemType; typedef /*@abstract@*/ struct rpmProblem_s { diff --git a/lib/transaction.c b/lib/transaction.c index b49275369..c2dc0249b 100644 --- a/lib/transaction.c +++ b/lib/transaction.c @@ -1213,7 +1213,6 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, struct availablePackage * alp; rpmProblemSet probs; Header * hdrs; - int fileCount; int totalFileCount = 0; hashTable ht; TFI_t * flList, * fi; @@ -1313,7 +1312,7 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, rpmdbFreeIterator(mi); } - /* XXX why should multilib not display problems */ + /* XXX multilib should not display "already installed" problems */ if (!(ignoreSet & RPMPROB_FILTER_REPLACEPKG) && !alp->multiLib) { rpmdbMatchIterator mi; mi = rpmdbInitIterator(ts->db, RPMTAG_NAME, alp->name, 0); @@ -1327,8 +1326,8 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, rpmdbFreeIterator(mi); } - if (headerGetEntry(alp->h, RPMTAG_BASENAMES, NULL, NULL, &fileCount)) - totalFileCount += fileCount; + totalFileCount += alp->filesCount; + } /* FIXME: it seems a bit silly to read in all of these headers twice */ @@ -1336,6 +1335,7 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, if (ts->numRemovedPackages > 0) { rpmdbMatchIterator mi; Header h; + int fileCount; mi = rpmdbInitIterator(ts->db, RPMDBI_PACKAGES, NULL, 0); rpmdbAppendIterator(mi, ts->removedPackages, ts->numRemovedPackages); @@ -1356,13 +1356,32 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, calling fpLookupList only once. I'm not sure that the speedup is worth the trouble though. */ for (fi = flList, oc = 0; oc < ts->orderCount; fi++, oc++) { + const char **preTrans; + int preTransCount; + memset(fi, 0, sizeof(*fi)); + preTrans = NULL; + preTransCount = 0; switch (ts->order[oc].type) { case TR_ADDED: i = ts->order[oc].u.addedIndex; alp = ts->addedPackages.list + ts->order[oc].u.addedIndex; + if (!(transFlags & RPMTRANS_FLAG_TEST) && + headerGetEntry(alp->h, RPMTAG_PRETRANSACTION, NULL, + (void **) &preTrans, &preTransCount)) { + for (j = 0; j < preTransCount; j++) { + rpmMessage(RPMMESS_DEBUG, _("executing pre-transaction syscall: \"%s\"\n"), preTrans[j]); + rc = rpmSyscall(preTrans[j], 0); + if (rc != 0) + psAppend(probs, RPMPROB_BADPRETRANS, alp->key, alp->h, + preTrans[j], NULL, rc); + } + xfree(preTrans); + preTrans = NULL; + } + if (!headerGetEntryMinMemory(alp->h, RPMTAG_BASENAMES, NULL, NULL, &fi->fc)) { fi->h = headerLink(alp->h); @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\n" "PO-Revision-Date: 1998-10-10 10:10+0200\n" "Last-Translator: Pavel Makovec <pavelm@terminal.cz>\n" "Language-Team: Czech <pavelm@terminal.cz>\n" @@ -304,8 +304,8 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr " [--dbpath <adr>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +#, fuzzy +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" " [--justdb] [--notriggers] rbalíèek1 ... balíèekN" @@ -2085,113 +2085,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "Nelze zapsat %s" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "Nelze zapsat %s" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, fuzzy, c-format msgid "Unknown icon type: %s" msgstr "Neznámı systém: %s\n" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "nelze otevøít %s: %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "pøemístìní musejí zaèínat znakem /" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "neplatné èíslo balíèku: %s\n" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "chybí architektura pro %s u %s:%d" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "neplatné èíslo balíèku: %s\n" + +#: build/parsePreamble.c:549 #, fuzzy, c-format msgid "Internal error: Bogus tag %d" msgstr "interní chyba (chyba rpm?): " -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, fuzzy, c-format msgid "Bad package specification: %s" msgstr " Volby pro specifikaci balíèku:" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, fuzzy, c-format msgid "line %d: Unknown tag: %s" msgstr "Neznámı systém: %s\n" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2360,53 +2365,53 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "neplatné èíslo balíèku: %s\n" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, fuzzy, c-format msgid "can't rename %s to %s: %s\n" msgstr "nelze odstranit %s: %s\n" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, fuzzy, c-format msgid "(error 0x%x)" msgstr "chyba: " -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 #, fuzzy msgid "Unknown file type" msgstr "Neznámı systém: %s\n" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 #, fuzzy msgid "Internal error" msgstr "interní chyba (chyba rpm?): " -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 #, fuzzy msgid " failed - " msgstr "chyba pgp" @@ -2501,51 +2506,51 @@ msgstr "balíèek %s koliduje: %s\n" msgid "loop in prerequisite chain: %s" msgstr "smyèka v øetìzu podmínek: %s" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, fuzzy, c-format msgid "removed db file %s\n" msgstr "odstraòuje se rejstøík souborù pro %s\n" -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "nelze provést statistiku %s: %s" -#: lib/db1.c:421 +#: lib/db1.c:426 #, fuzzy, c-format msgid "opening db file %s mode 0x%x\n" msgstr "probíhá otevírání databázového re¾imu: 0%o\n" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "nelze otevøít %s: %s" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "nelze získat %s zámek k databázi" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "vıhradní" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "sdílenı" @@ -2574,57 +2579,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "odstraòuje se rejstøík souborù pro %s\n" -#: lib/db3.c:476 +#: lib/db3.c:484 #, fuzzy, c-format msgid "removed db environment %s/%s\n" msgstr "odstraòuje se rejstøík souborù pro %s\n" -#: lib/db3.c:513 +#: lib/db3.c:521 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "otevírá se databáze v %s\n" -#: lib/db3.c:883 +#: lib/db3.c:900 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "odstraòuje se rejstøík souborù pro %s\n" -#: lib/db3.c:973 +#: lib/db3.c:990 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "probíhá otevírání databázového re¾imu: 0%o\n" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "nelze získat %s zámek k databázi" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "odstraòuje se rejstøík souborù pro %s\n" @@ -3133,7 +3138,12 @@ msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, fuzzy, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3421,7 +3431,7 @@ msgstr "chyba pøi ukládání záznamu %s do %s" msgid "error(%d) removing record %s from %s" msgstr "chyba pøi odstraòování záznamu %s do %s" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "nebyla nastavena dbpath" @@ -3432,111 +3442,111 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "chyba pøi hledání balíèku %s\n" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "nelze èíst hlavièku u %d pro vyhledání" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "odstraòuje se polo¾ka databáze\n" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuje se rejstøík skupin\n" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "odstraòuje se rejstøík názvù\n" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "chyba pøi hledání balíèku %s\n" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "Probíhá získávání %s jako %s\n" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "databáze se pøestavuje v koøenovém adresáøi %s\n" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "doèasná databáze %s ji¾ existuje" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "vytváøí se adresáø: %s\n" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "chyba pøi vytváøení adresáøe %s: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otevírá se stará databáze\n" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otevírá se nová databáze\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "záznam èíslo %d v databázi je chybnı -- vynechává se" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "nelze pøidat záznam - pùvodnì u %d" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "databázi nelze pøestavit; pùvodní databáze zùstává na svém místì\n" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "starou databázi nelze nahradit novou databází!\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "aby se obnovily, nahrazuje soubory v %s soubory z %s" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "vytváøí se adresáø: %s\n" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "nelze odstranit %s: %s\n" @@ -3683,53 +3693,58 @@ msgstr "Pøíli¹ mnoho argumentù ve vıchozím øádku u %s:%d" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "Nelze otevøít %s pro ètení: %s." #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "Nelze èíst %s: %s." -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "chybí ':' u %s:%d" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "chybí argument pro %s u %s:%d" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "nelze otevøít %s: %s" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "nelze otevøít soubor %s: " -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "chybí architektura pro %s u %s:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "chybná volba '%s' u %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "Neznámı systém: %s\n" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "Zkontaktujte rpm-list@redhat.com\n" @@ -3878,31 +3893,36 @@ msgstr "V souboru rpmrc se musí nastavit \"pgp_name:\"" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "V souboru rpmrc se musí nastavit \"pgp_name:\"" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, fuzzy, c-format msgid "excluding file %s%s\n" msgstr "Probíhá naèítání %s\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "vytváøí se adresáø: %s\n" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "Probíhá získávání %s jako %s\n" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "Probíhá získávání %s jako %s\n" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -4465,9 +4485,6 @@ msgstr "%s nelze vytvoøit\n" #~ msgid "\tfile type changed - replacing\n" #~ msgstr " soubor se vskutku sdílí - ukládá se\n" -#~ msgid "package %s-%s-%s contain shared files\n" -#~ msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n" - #~ msgid "package %s contains no files" #~ msgstr "balíèek %s neobsahuje soubory" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -289,8 +289,8 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr " [--dbpath <mappe>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +#, fuzzy +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr " [--justdb] [--notriggers] rpakke1 ... pakkeN" #: rpm.c:241 @@ -1932,113 +1932,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2205,51 +2210,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2343,51 +2348,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2416,57 +2421,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2941,7 +2946,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3226,7 +3236,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3237,110 +3247,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3487,53 +3497,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "Kontakt venligst rpm-list@redhat.com\n" @@ -3674,31 +3689,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 2.5.2\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -341,8 +341,8 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr " [--dbpath <VERZ>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +#, fuzzy +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr " [--justdb] [--notriggers] PAKET1 ... PAKETn" #: rpm.c:241 @@ -2168,116 +2168,121 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" # , c-format -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "Nicht möglich %s zu schreiben" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, fuzzy, c-format msgid "Unknown icon type: %s" msgstr "(unbekannter Typ)" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" # , c-format -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "Verschiebungen müssen mit einem »/« beginnen" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "ungültige Paket-Nummer: %s\n" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "fehlende Architektur für %s bei %s:%d" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "ungültige Paket-Nummer: %s\n" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, fuzzy, c-format msgid "Bad package specification: %s" msgstr " Optionen der Paketauswahl:" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2452,53 +2457,53 @@ msgid "line %d: Bad %s number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" # , c-format -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, fuzzy, c-format msgid "can't rename %s to %s: %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, fuzzy, c-format msgid "(error 0x%x)" msgstr "Fehler: " -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 #, fuzzy msgid "Unknown file type" msgstr "(unbekannter Typ)" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 #, fuzzy msgid "Internal error" msgstr "Fataler Fehler: " -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 #, fuzzy msgid " failed - " msgstr "pgp fehlgeschlagen" @@ -2593,53 +2598,53 @@ msgstr "Paket %s wird nicht in %s aufgeführt" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" # , c-format -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/db1.c:421 +#: lib/db1.c:426 #, fuzzy, c-format msgid "opening db file %s mode 0x%x\n" msgstr "Datenbank aus der vorhandenen neu erstellen" # , c-format -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "kann %s lock für die Datenbank nicht bekommen" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "exklusiv" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "geteilt" @@ -2668,57 +2673,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, 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:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -3237,7 +3242,13 @@ msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +# FIXME shared, besser: "mit anderen geteilte ..." +#: lib/problems.c:114 +#, fuzzy, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3529,7 +3540,7 @@ msgstr "Fehler bei Schreiben des Eintrags %s nach %s" msgid "error(%d) removing record %s from %s" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "»dbpath« ist nicht gesetzt" @@ -3540,114 +3551,114 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "Fehler beim Suchen nach Paket %s\n" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" # FIXME -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" # FIXME -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "Fehler beim Suchen nach Paket %s\n" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "die temporäre Datenbank %s existiert schon" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "" "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" # , c-format -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" @@ -3799,56 +3810,61 @@ msgstr "Zu viele Argumente in der Standardzeile bei %s:%d" msgid "Cannot expand %s" msgstr "" +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + # , c-format -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:573 #, 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:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "Lesen von %s fehlgeschlagen: %s." -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "fehlender ':' bei %s:%d" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "fehlendes Argument für %s bei %s:%d" # , c-format -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "kann Datei %s nicht öffnen: " -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "fehlende Architektur für %s bei %s:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "unzureichende Option '%s' bei %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -4002,31 +4018,36 @@ msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" # , c-format -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, fuzzy, c-format msgid "excluding file %s%s\n" msgstr "Hole %s heraus\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -4533,10 +4554,6 @@ msgstr "anlegen von %s fehlgeschlagen\n" #~ msgstr "Paket %s ist nicht installiert\n" # FIXME shared, besser: "mit anderen geteilte ..." -#~ msgid "package %s-%s-%s contain shared files\n" -#~ msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" - -# FIXME shared, besser: "mit anderen geteilte ..." #, fuzzy #~ msgid "package %s contains no files" #~ msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -277,8 +277,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1914,113 +1913,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2187,51 +2191,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2325,51 +2329,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2398,57 +2402,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2923,7 +2927,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3208,7 +3217,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3219,110 +3228,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3469,53 +3478,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3656,31 +3670,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\n" "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n" "Language-Team: Finnish <linux@sot.com>\n" "Content-Type: text/plain; charset=\n" @@ -315,8 +315,7 @@ msgstr " [--dbpath <hakem>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 #, fuzzy -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr " [--justdb] paketti1 ... pakettiN" #: rpm.c:241 @@ -2120,113 +2119,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "%s:n kirjoitus ei onnistu" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "%s:n kirjoitus ei onnistu" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, fuzzy, c-format msgid "Unknown icon type: %s" msgstr "(tuntematon tyyppi)" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "en voinut avata %s: %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "siirtojen pitää alkaa /-merkillä" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "virheellinen paketin numero: %s\n" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "%s:n puuttuva arkkitehtuuri %s:%d" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "virheellinen paketin numero: %s\n" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, fuzzy, c-format msgid "Bad package specification: %s" msgstr " Paketin määrittelyparametrit:" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2395,53 +2399,53 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, fuzzy, c-format msgid "can't rename %s to %s: %s\n" msgstr "En voi lukea %s: %s." -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, fuzzy, c-format msgid "(error 0x%x)" msgstr "virhe: " -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 #, fuzzy msgid "Unknown file type" msgstr "(tuntematon tyyppi)" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 #, fuzzy msgid "Internal error" msgstr "vakava virhe: " -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 #, fuzzy msgid " failed - " msgstr "pgp epäonnistui" @@ -2536,51 +2540,51 @@ msgstr "paketti %s ei ole %s:ssä" msgid "loop in prerequisite chain: %s" msgstr "silmukka edellytysten ketjussa: %s" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "en voinut avata %s: %s" -#: lib/db1.c:421 +#: lib/db1.c:426 #, fuzzy, c-format msgid "opening db file %s mode 0x%x\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "en voi saada %s lukitusta tietokantaan" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "poissulkevaa" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "jaettua" @@ -2609,57 +2613,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "en voi saada %s lukitusta tietokantaan" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -3167,7 +3171,12 @@ msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, fuzzy, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3456,7 +3465,7 @@ msgstr "virhe talletettaessa tietuetta %s %s:ään" msgid "error(%d) removing record %s from %s" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "dbpath ei ole asetettu" @@ -3467,110 +3476,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "virhe etsittäessä pakettia %s\n" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "en voi lukea headeria %d:stä päivittäessä" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "virhe etsittäessä pakettia %s\n" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "väliaikainen tietokanta %s on jo olemassa" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "en voi lisätä tietuetta %d:stä" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "en voinut avata %s: %s" @@ -3720,53 +3729,58 @@ msgstr "liian monta parametriä oletusrivillä %s:%d" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "En voi avata %s luettavaksi: %s." #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "En voi lukea %s: %s." -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "puuttuva ':', %s:%d" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "%s:n puuttuva parametri %s:%d" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "en voinut avata %s: %s" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "en voinut avata tiedostoa %s: " -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "%s:n puuttuva arkkitehtuuri %s:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "huono parametri '%s', %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3919,31 +3933,36 @@ msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, fuzzy, c-format msgid "excluding file %s%s\n" msgstr "Haen: %s\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -4433,9 +4452,6 @@ msgstr "%s:n luonti epäonnistui\n" #~ msgid "package %s is now obsolete and will be removed\n" #~ msgstr "paketti %s ei ole asennettu\n" -#~ msgid "package %s-%s-%s contain shared files\n" -#~ msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" - #, fuzzy #~ msgid "package %s contains no files" #~ msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" @@ -1,5 +1,5 @@ msgid "" -msgstr "POT-Creation-Date: 2000-07-05 16:33-0400\n" +msgstr "POT-Creation-Date: 2000-07-09 00:38-0400\n" #: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:435 #, c-format @@ -281,8 +281,7 @@ msgstr " -a - interroge l'ensemble des packages" #: rpm.c:240 rpmqv.c:315 #, fuzzy -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" " - installe le package source, construit le package " "binaire," @@ -2107,113 +2106,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "impossible d'ouvrir: %s\n" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, fuzzy, c-format msgid "Bad package specification: %s" msgstr " Options de spécification de package:" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2382,51 +2386,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, fuzzy, c-format msgid "can't rename %s to %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 #, fuzzy msgid " failed - " msgstr "La construction a échoué.\n" @@ -2521,51 +2525,51 @@ msgstr "aucun package n'a été spécifié pour la désinstallation" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "impossible d'ouvrir: %s\n" -#: lib/db1.c:421 +#: lib/db1.c:426 #, fuzzy, c-format msgid "opening db file %s mode 0x%x\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/db1.c:446 +#: lib/db1.c:451 #, 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:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2594,57 +2598,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, 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:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -3155,7 +3159,12 @@ msgstr "aucun package n'a été spécifié pour l'installation" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3443,7 +3452,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "error(%d) removing record %s from %s" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3454,110 +3463,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "aucun package n'a été spécifié pour la désinstallation" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -3705,53 +3714,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, fuzzy, c-format msgid "Unable to open %s for reading: %s." msgstr "impossible d'ouvrir: %s\n" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3898,31 +3912,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -277,8 +277,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1914,113 +1913,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2187,51 +2191,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2325,51 +2329,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2398,57 +2402,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2923,7 +2927,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3208,7 +3217,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3219,110 +3228,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3469,53 +3478,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3656,31 +3670,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -277,8 +277,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1914,113 +1913,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2187,51 +2191,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2325,51 +2329,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2398,57 +2402,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2923,7 +2927,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3208,7 +3217,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3219,110 +3228,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3469,53 +3478,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3656,31 +3670,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -277,8 +277,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1914,113 +1913,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2187,51 +2191,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2325,51 +2329,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2398,57 +2402,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2923,7 +2927,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3208,7 +3217,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3219,110 +3228,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3469,53 +3478,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3656,31 +3670,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 1.0\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\n" "PO-Revision-Date: 2000-06-16 02:20+0000\n" "Last-Translator: Richard Allen <ra@hp.is>\n" "Language-Team: is <kde-isl@mmedia.is>\n" @@ -272,8 +272,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1909,113 +1908,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2182,51 +2186,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2320,51 +2324,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2393,57 +2397,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2918,7 +2922,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3203,7 +3212,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3214,110 +3223,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3464,53 +3473,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3651,31 +3665,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -277,8 +277,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1914,113 +1913,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2187,51 +2191,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2325,51 +2329,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2398,57 +2402,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2923,7 +2927,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3208,7 +3217,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3219,110 +3228,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3469,53 +3478,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3656,31 +3670,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm-3.0.4\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -127,7 +127,7 @@ msgstr "copyright ¤¬¤¢¤ê¤Ş¤»¤ó!\n" # build root [BuildRoot] # net share [¥Í¥Ã¥È¶¦Í] # reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë] -# $Id: ja.po,v 1.83 2000/07/05 20:39:16 jbj Exp $ +# $Id: ja.po,v 1.84 2000/07/09 04:42:13 jbj Exp $ #: rpm.c:178 rpmqv.c:257 #, c-format msgid "rpm: %s\n" @@ -303,8 +303,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -2049,113 +2048,118 @@ msgstr "%d ¹ÔÌÜ: %%files ¤Î²òÀÏ¥¨¥é¡¼: %s" msgid "line %d: Second %%files list" msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%%files ¥ê¥¹¥È" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "¥¢¡¼¥¥Æ¥¯¥Á¥ã¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Ş¤¹: %s" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "¥¢¡¼¥¥Æ¥¯¥Á¥ã¤Ï´Ş¤Ş¤ì¤Æ¤¤¤Ş¤»¤ó: %s" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Ş¤¹: %s" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "OS ¤Ï´Ş¤Ş¤ì¤Æ¤¤¤Ş¤»¤ó: %s" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "%s ¥Õ¥£¡¼¥ë¥É¤Ï¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ËɬÍפǤ¹: %s" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ÎÆó½Å¤Î %s ¥¨¥ó¥È¥ê: %s" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤¤Ş¤»¤ó: %s" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤¤Ş¤»¤ó: %s" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "ÉÔÌÀ¤Ê¥¢¥¤¥³¥ó¥¿¥¤¥×: %s" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "%d ¹ÔÌÜ: ÉÔ´°Á´¤Ê·Á¤Î¥¿¥°: %s" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "%d ¹ÔÌÜ: ¶õ¤Î¥¿¥°: %s" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "%d ¹ÔÌÜ: %s Ãæ¤ËÉÔÀµ¤Êʸ»ú '-' : %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "%d ¹ÔÌÜ: BuildRoot ¤Ï \"/\" ¤Ë¤¹¤ë¤³¤È¤Ï¤Ç¤¤Ş¤»¤ó: %s" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "%d ¹ÔÌÜ: Prefixes ¤Ï \"/\" ¤Ç½ª¤ï¤Ã¤Æ¤Ï¤¤¤±¤Ş¤»¤ó: %s" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "%d ¹ÔÌÜ: Docdir ¤Ï '/' ¤Ç»Ï¤Ş¤é¤Ê¤¯¤Æ¤Ï¤¤¤±¤Ş¤»¤ó: %s" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "%d ¹ÔÌÜ: Epoch/Serial ¥Õ¥£¡¼¥ë¥É¤ÏÈÖ¹æ¤Ç¤Ê¤±¤ì¤Ğ¤¤¤±¤Ş¤»¤ó: %s" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê BuildArchitecture ¥Õ¥©¡¼¥Ş¥Ã¥È: %s" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "%d ¹ÔÌÜ: ÉÔ´°Á´¤Ê·Á¤Î¥¿¥°: %s" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "ÆâÉô¥¨¥é¡¼: ¤Ë¤»¤Î¥¿¥° %d" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "ÉÔÀµ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤Î»ØÄê: %s" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Ş¤¹: %s" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "%d ¹ÔÌÜ: ÉÔÌÀ¤Ê¥¿¥°: %s" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ï BuildRoot ¤ò»ÈÍѤǤ¤Ş¤»¤ó" @@ -2325,53 +2329,53 @@ msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê no%s ÈÖ¹æ: %d" msgid "line %d: Bad %s number: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, fuzzy, c-format msgid "can't rename %s to %s: %s\n" msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤¬¤Ç¤¤Ş¤»¤ó: %s\n" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, fuzzy, c-format msgid "can't unlink %s: %s\n" msgstr "%s ¤òºï½ü(unlink)¤Ç¤¤Ş¤»¤ó: %s\n" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, fuzzy, c-format msgid "(error 0x%x)" msgstr "(¥¨¥é¡¼ 0x%x)" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "ÉÔÀµ¤Ê¥Ş¥¸¥Ã¥¯" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "ÉÔÀµ¤Ê/ÉÔ²ÄÆɤʥإåÀ" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礤¹¤®¤Ş¤¹" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 #, fuzzy msgid "Unknown file type" msgstr "ÉÔÌÀ¤Ê¥Õ¥¡¥¤¥ë¥¿¥¤¥×" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤¬¸«¤Ä¤«¤ê¤Ş¤»¤ó" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 #, fuzzy msgid "Internal error" msgstr "ÆâÉô¥¨¥é¡¼" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 #, fuzzy msgid " failed - " msgstr "¼ºÇÔ - " @@ -2468,51 +2472,51 @@ msgstr "%s ¤È¶¥¹ç¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Ş¤¹: %s\n" msgid "loop in prerequisite chain: %s" msgstr "prerequisite ¥Á¥§¡¼¥ó¤Î¥ë¡¼¥×: %s" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, fuzzy, c-format msgid "removed db file %s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Ş¤¹\n" -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s" -#: lib/db1.c:421 +#: lib/db1.c:426 #, fuzzy, c-format msgid "opening db file %s mode 0x%x\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤¤Ş¤»¤ó" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "½ü³°" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "¶¦Í" @@ -2541,57 +2545,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Ş¤¹\n" -#: lib/db3.c:476 +#: lib/db3.c:484 #, fuzzy, c-format msgid "removed db environment %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Ş¤¹\n" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Ş¤¹\n" -#: lib/db3.c:973 +#: lib/db3.c:990 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤¤Ş¤»¤ó" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Ş¤¹\n" @@ -3112,7 +3116,12 @@ msgstr "" "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï %ld%cb ¤¬É¬ÍפǤ¹(%s " "¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å¤Ç)" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤¤Ş¤·¤¿" @@ -3400,7 +3409,7 @@ msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " msgid "error(%d) removing record %s from %s" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Ş¤»¤ó" @@ -3411,112 +3420,112 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤¤Ş¤»¤ó" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥¨¥ó¥È¥ê¤òºï½ü¤·¤Ş¤¹\n" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Ş¤¹\n" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Ş¤¹\n" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Ş¤¹\n" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Ş¤¹\n" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "°ì»şÅª¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Ş¤¹" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ÎºîÀ®¥¨¥é¡¼: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥¥Ã¥×¤·¤Ş¤¹" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ¤Ş¤»¤ó" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Ş¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Ş¤¹\n" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ğ¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤´¹¤¨¤Ş¤¹" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n" @@ -3663,53 +3672,58 @@ msgstr "%s:%d ¤Ç¥Ç¥Õ¥©¥ë¥È¹Ô¤Ï°ú¿ô¤¬Â¿¤¹¤®¤Ş¤¹" msgid "Cannot expand %s" msgstr "¿Ä¥¤Ç¤¤Ş¤»¤ó %s" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "Æɤ߹ş¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Ş¤»¤ó: %s¡£" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "%s:%d ¤Ç ':' ¤¬¤¢¤ê¤Ş¤»¤ó" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "%s ¤Î°ú¿ô¤¬¤¢¤ê¤Ş¤»¤ó %s:%d" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "%s ¤Î¿Ä¥¼ºÇÔ %s:%d \"%s\"" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Ş¤»¤ó %s:%d" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "%s ÍѤΥ¢¡¼¥¥Æ¥¯¥Á¥ã¤¬¸«¤Ä¤«¤ê¤Ş¤»¤ó %s:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "'%s' ¤ÎÉÔÀµ¤Ê¥ª¡¼¥×¥ó %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "ÉÔÌÀ¤Ê¥·¥¹¥Æ¥à: %s\n" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "rpm-list@redhat.com ¤ËÏ¢Íí¤ò²¼¤µ¤¤\n" @@ -3863,31 +3877,36 @@ msgstr "¥Ş¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ğ¤Ê¤ê¤Ş¤»¤ó" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "¥Ş¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ğ¤Ê¤ê¤Ş¤»¤ó" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, fuzzy, c-format msgid "excluding file %s%s\n" msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Ş¤¹\n" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Ş¤¹\n" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥¥Ã¥×¤·¤Ş¤¹\n" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -277,8 +277,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1914,113 +1913,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2187,51 +2191,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2325,51 +2329,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2398,57 +2402,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2923,7 +2927,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3208,7 +3217,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3219,110 +3228,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3469,53 +3478,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3656,31 +3670,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\n" "PO-Revision-Date: 2000-06-22 21:59+02:00\n" "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n" "Language-Team: Norwegian <no@li.org>\n" @@ -295,8 +295,8 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr " [--dbpath <katalog>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +#, fuzzy +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr " [--justdb] [--notriggers] rpakke1 ... pakkeN" #: rpm.c:241 @@ -1937,113 +1937,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2210,51 +2215,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2348,51 +2353,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2421,57 +2426,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2946,7 +2951,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3231,7 +3241,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3242,110 +3252,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3492,53 +3502,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3679,31 +3694,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm-3.0.2\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -307,8 +307,8 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr " [--dbpath <katalog>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +#, fuzzy +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr " [--justdb] [--notriggers] pakiet1 ... pakietN" #: rpm.c:241 @@ -2062,113 +2062,118 @@ msgstr "linia %d: B³±d w interpretacji wpisu %%files: %s" msgid "line %d: Second %%files list" msgstr "linia %d: Druga lista %%files" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "Architektura nie jest wspierana: %s" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "Architektura nie jest wspierana: %s" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "Ten OS nie jest wspierany: %s" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "Ten OS nie jest wspierany: %s" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "pole %s musi byæ obecne w pakiecie: %s" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "Podwójne wpisy %s w pakiecie: %s" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "Nie mo¿na odczytaæ ikony: %s" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "Nie mo¿na odczytaæ ikony: %s" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "Nieznany typ ikony: %s" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "linia %d: Niepoprawna forma etykiety: %s" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "linia %d: Pusta etykieta: %s" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "linia %d: Nielegalny znak '-' w %s: %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "linia %d: wpis BuildRoot nie mo¿e byæ \"/\": %s" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, 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:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "linia %d: wpis Docdir musi siê zaczynaæ od '/': %s" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, 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:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "linia %d: B³êdny format wpisu BuildArchitecture: %s" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "linia %d: Niepoprawna forma etykiety: %s" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "B³±d wewnêtrzny: Fa³szywa etykieta %d" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "B³êdna specyfikacja pakietu: $s" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "Pakiet ju¿ istnieje: %s" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "linia %d: Nieznana etykieta: %s" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "W pliku spec nie mo¿na u¿ywaæ wpisów BuildRoot" @@ -2336,51 +2341,51 @@ msgstr "linia %d: b³êdny numer no%s: %d" msgid "line %d: Bad %s number: %s\n" msgstr "linia %d: B³êdny numer %s: %s\n" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, 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:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "nie mo¿na odwi±zaæ %s: %s\n" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "getNextHeader: %s\n" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "(b³±d 0x%x)" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "B³êdny magic" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "B³êdny/nieczytelny nag³ówek" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "Rozmiar nag³ówka jest zbyt du¿y" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "Nieznany typ pliku" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "Brak twardego dowi±zania" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "B³±d wewnêtrzny" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr " nie powiod³o siê -" @@ -2474,51 +2479,51 @@ msgstr "pakiet %s jest w konflikcie: %s\n" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, fuzzy, c-format msgid "removed db file %s\n" msgstr "usuwanie indeksu plików dla %s\n" -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "b³êdny status pliku: %s" -#: lib/db1.c:421 +#: 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" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "nie mo¿na otworzyæ %s: %s" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2547,57 +2552,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "usuwanie indeksu plików dla %s\n" -#: lib/db3.c:476 +#: lib/db3.c:484 #, fuzzy, c-format msgid "removed db environment %s/%s\n" msgstr "usuwanie indeksu plików dla %s\n" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "usuwanie indeksu plików dla %s\n" -#: lib/db3.c:973 +#: lib/db3.c:990 #, 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:1078 +#: lib/db3.c:1095 #, 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:1085 +#: lib/db3.c:1102 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "usuwanie indeksu plików dla %s\n" @@ -3090,7 +3095,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s" @@ -3377,7 +3387,7 @@ msgstr "b³±d zapisywania rekordu %s do %s" msgid "error(%d) removing record %s from %s" msgstr "b³±d usuwania rekordu %s z %s" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "¶cie¿ka bazy danych nie zosta³a podana" @@ -3390,111 +3400,111 @@ msgstr "" "nowym formacie" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "b³±d szukania pakietu %s\n" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "usuwanie wpisu w bazie\n" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "usuwanie indeksu grupy\n" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "usuwanie indeksu nazw\n" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "b³±d szukania pakietu %s\n" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "odbudowywujê bazê danych w rootdir %s\n" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "tymczasowa baza danych %s ju¿ istnieje" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "b³±d przy tworzeniu katalogu %s: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otwieranie starej bazy danych\n" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otwieranie nowej bazy danych\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "zamiana starej bazy na now± nie powiod³a siê!\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "naprawcze zastêpowanie plików w %s plikami z %s" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n" @@ -3641,53 +3651,58 @@ msgstr "Zbyt wiele argumentów w linii domy¶lnej przy %s:%d" msgid "Cannot expand %s" msgstr "Nie mo¿na rozszerzyæ %s" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, 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:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "Odczytanie %s nie powiod³o siê: %s." -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "brak ':' przy %s:%d" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "brak argumentu dla %s przy %s:%d" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "nie mo¿na otworzyæ %s przy %s:%d" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "brak architektury dla %s przy %s:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "b³êdna opcja '%s' przy %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "Nieznany system: %s\n" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n" @@ -3830,31 +3845,36 @@ msgstr "Musisz ustawiæ \"%%_gpg_name\" w pliku swego makra" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, fuzzy, c-format msgid "excluding file %s%s\n" msgstr "wy³±czanie %s\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s pominiêty z powodu flagi missingok\n" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -277,8 +277,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1914,113 +1913,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2187,51 +2191,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2325,51 +2329,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2398,57 +2402,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2923,7 +2927,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3208,7 +3217,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3219,110 +3228,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3469,53 +3478,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3656,31 +3670,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" diff --git a/po/pt_BR.po b/po/pt_BR.po index 689af5fad..d106f3dfe 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2,7 +2,7 @@ # Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998. # msgid "" -msgstr "POT-Creation-Date: 2000-07-05 16:33-0400\n" +msgstr "POT-Creation-Date: 2000-07-09 00:38-0400\n" #: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:435 #, c-format @@ -322,8 +322,7 @@ msgstr "" #: rpm.c:240 rpmqv.c:315 #, fuzzy -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr " pacote1 ... pacoteN" #: rpm.c:241 @@ -2172,116 +2171,122 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" # , c-format -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "Não consegui abrir: %s\n" # , c-format -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "Não consegui abrir: %s\n" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" # , c-format -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "Não consegui abrir: %s\n" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "argumentos para o --dbpath devem começar com uma /" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +# , c-format +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "Não consegui abrir: %s\n" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, fuzzy, c-format msgid "Bad package specification: %s" msgstr " Opcões para especificação de pacotes:" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2457,51 +2462,51 @@ msgid "line %d: Bad %s number: %s\n" msgstr "" # , c-format -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, 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:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 #, fuzzy msgid " failed - " msgstr "Construção falhou.\n" @@ -2596,53 +2601,53 @@ msgstr "não foi passado pacote para desinstalação" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" # , c-format -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "Não consegui abrir: %s\n" -#: lib/db1.c:421 +#: 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" # , c-format -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/db1.c:446 +#: lib/db1.c:451 #, fuzzy, c-format msgid "cannot get %s lock on database" msgstr "não foi passado pacote para desinstalação" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2671,57 +2676,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, 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:1078 +#: lib/db3.c:1095 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "não foi passado pacote para desinstalação" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -3232,7 +3237,12 @@ msgstr "não foi passado pacote para instalação" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3529,7 +3539,7 @@ msgstr "Não consegui abrir: %s\n" msgid "error(%d) removing record %s from %s" msgstr "Não consegui abrir: %s\n" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3540,102 +3550,102 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "não foi passado pacote para instalação" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "não foi passado pacote para desinstalação" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" # , c-format -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "Não consegui abrir: %s\n" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" # , c-format -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" @@ -3648,13 +3658,13 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "RPM versão %s\n" # , c-format -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Não consegui abrir: %s\n" @@ -3815,57 +3825,62 @@ msgstr "" msgid "Cannot expand %s" msgstr "" +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + # , c-format -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:573 #, 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:611 +#: lib/rpmrc.c:618 #, fuzzy, c-format msgid "Failed to read %s: %s." msgstr "Não consegui ler o arquivo spec de %s\n" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" # , c-format -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "Não consegui abrir: %s\n" # , c-format -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "Não consegui abrir: %s\n" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -4021,7 +4036,7 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, fuzzy, c-format msgid "excluding file %s%s\n" msgstr "RPM versão %s\n" @@ -4034,27 +4049,32 @@ msgstr "RPM versão %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "RPM versão %s\n" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" # , c-format -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -272,8 +272,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1909,113 +1908,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2182,51 +2186,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2320,51 +2324,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2393,57 +2397,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2918,7 +2922,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3203,7 +3212,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3214,110 +3223,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3464,53 +3473,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3651,31 +3665,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" diff --git a/po/rpm.pot b/po/rpm.pot index 1a4ccca6a..18824a580 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-07 15:55-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -277,8 +277,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1914,113 +1913,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2923,7 +2927,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3686,6 +3695,11 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: 8bit\n" @@ -297,8 +297,8 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr " [--dbpath <ËÁÔÁÌÏÇ>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +#, fuzzy +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" " [--justdb] [--notriggers] package1 ... packageN" @@ -2066,113 +2066,118 @@ msgstr "ÓÔÒÏËÁ %d: ïÛÉÂËÁ ÒÁÚÂÏÒÁ %%files: %s" msgid "line %d: Second %%files list" msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÊ ÓĞÉÓÏË %%files" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "áÒÈÉÔÅËÔÕÒÁ ÉÓËÌÀŞÅÎÁ: %s" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "áÒÈÉÔÅËÔÕÒÁ ÎÅ ×ËÌÀŞÅÎÁ: %s" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "ïó ÉÓËÌÀŞÅÎÁ: %s" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "ïó ÎÅ ×ËÌÀŞÅÎÁ: %s" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "ğÏÌÅ %s ÏÂÑÚÁÎÏ ĞÒÉÓÕÔÓÔ×Ï×ÁÔØ × ĞÁËÅÔÅ: %s" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "äÕÂÌÉÒÕÀİÉÅÓÑ ÚÁĞÉÓÉ %s × ĞÁËÅÔÅ: %s" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "îÅ ÍÏÇÕ ĞÒÏŞÉÔÁÔØ ĞÉËÔÏÇÒÁÍÍÕ: %s" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "îÅ ÍÏÇÕ ĞÒÏŞÉÔÁÔØ ĞÉËÔÏÇÒÁÍÍÕ: %s" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉĞ ĞÉËÔÏÇÒÁÍÍÙ: %s" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÔÜÇ: %s" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "ÓÔÒÏËÁ %d: ğÕÓÔÏÊ ÔÜÇ: %s" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "ÓÔÒÏËÁ %d: îÅÄÏĞÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ '-' × %s: %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "ÓÔÒÏËÁ %d: BuildRoot ÎÅ ÍÏÖÅÔ ÂÙÔØ \"/\": %s" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "ÓÔÒÏËÁ %d: ğÒÅÆÉËÓ ÎÅ ÍÏÖÅÔ ÚÁËÁÎŞÉ×ÁÔØÓÑ ÎÁ \"/\": %s" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "ÓÔÒÏËÁ %d: Docdir ÄÏÌÖÅÎ ÎÁŞÉÎÁÔØÓÑ Ó '/': %s" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "ÓÔÒÏËÁ %d: ğÏÌÅ Epoch/Serial ÄÏÌÖÎÏ ÂÙÔØ ŞÉÓÌÏÍ: %s" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ BuildArchitecture: %s" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÔÜÇ: %s" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ: \"ìÅ×ÙÊ\" ÔÜÇ %d" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "îÅ×ÅÒÎÁÑ ÓĞÅÃÉÆÉËÁÃÉÑ ĞÁËÅÔÁ: %s" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "ğÁËÅÔ ÕÖÅ ÓÕİÅÓÔ×ÕÅÔ: %s" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "ÓÔÒÏËÁ %d: îÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ: %s" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "æÁÊÌ spec ÎÅ ÍÏÖÅÔ ÉÓĞÏÌØÚÏ×ÁÔØ BuildRoot" @@ -2339,51 +2344,51 @@ msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ŞÉÓÌÏ no%s: %d" msgid "line %d: Bad %s number: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ŞÉÓÌÏ %s: %s\n" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "ÎÅ ÍÏÇÕ ĞÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %s\n" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s: %s\n" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "getNextHeader: %s\n" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "(ÏÛÉÂËÁ 0x%x)" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "îÅ×ÅÒÎÙÊ magic" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "îÅ×ÅÒÎÙÊ/ÎÅŞÉÔÁÅÍÙÊ ÚÁÇÏÌÏ×ÏË" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉĞ ÆÁÊÌÁ" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ÖÅÓÔËÁÑ ÓÓÙÌËÁ" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "ÎÅ ÕÄÁÌÏÓØ - " @@ -2477,51 +2482,51 @@ msgstr "ĞÁËÅÔ %s ËÏÎÆÌÉËÔÕÅÔ Ó: %s\n" msgid "loop in prerequisite chain: %s" msgstr "ÚÁÍËÎÕÔÙÊ ÃÉËÌ × ÃÅĞÏŞËÅ ÔÒÅÂÏ×ÁÎÉÊ ÄÌÑ ÕÓÔÁÎÏ×ËÉ: %s" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, fuzzy, c-format msgid "removed db file %s\n" msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÆÁÊÌÏ× ÄÌÑ %s\n" -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "ÎÅ×ÅÒÎÏÅ ÓÏÓÔÏÑÎÉÅ ÆÁÊÌÁ: %s" -#: lib/db1.c:421 +#: lib/db1.c:426 #, fuzzy, c-format msgid "opening db file %s mode 0x%x\n" msgstr "ÏÔËÒÙ×ÁÀ ÂÁÚÕ × ÒÅÖÉÍÅ 0x%x × %s\n" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s: %s" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "ÎÅ ÍÏÇÕ ĞÏÌÕŞÉÔØ %s ÄÏÓÔÕĞ Ë ÂÁÚÅ ÄÁÎÎÙÈ" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "ÉÓËÌÀŞÉÔÅÌØÎÙÊ" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "ÒÁÚÄÅÌÑÅÍÙÊ" @@ -2550,57 +2555,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÆÁÊÌÏ× ÄÌÑ %s\n" -#: lib/db3.c:476 +#: lib/db3.c:484 #, fuzzy, c-format msgid "removed db environment %s/%s\n" msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÆÁÊÌÏ× ÄÌÑ %s\n" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÆÁÊÌÏ× ÄÌÑ %s\n" -#: lib/db3.c:973 +#: lib/db3.c:990 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "ÏÔËÒÙ×ÁÀ ÂÁÚÕ × ÒÅÖÉÍÅ 0x%x × %s\n" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "ÎÅ ÍÏÇÕ ĞÏÌÕŞÉÔØ %s ÄÏÓÔÕĞ Ë ÂÁÚÅ ÄÁÎÎÙÈ" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÆÁÊÌÏ× ÄÌÑ %s\n" @@ -3090,7 +3095,12 @@ msgstr "ĞÁËÅÔ %s-%s-%s (ËÏÔÏÒÙÊ ÎÏ×ÅÅ, ŞÅÍ %s-%s-%s) ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ĞÁËÅÔÁ %s-%s-%s ÎÕÖÎÏ %ld%c ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ĞÒÉ ÒÁÂÏÔÅ Ó ĞÁËÅÔÏÍ %s-%s-%s" @@ -3377,7 +3387,7 @@ msgstr "ÏÛÉÂËÁ ÓÏÈÒÁÎÅÎÉÑ ÚÁĞÉÓÉ %s × %s" msgid "error(%d) removing record %s from %s" msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ÚÁĞÉÓÉ %s ÉÚ %s" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ dbpath" @@ -3390,111 +3400,111 @@ msgstr "" "ÂÁÚÙ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "ÏÛÉÂËÁ ĞÒÉ ĞÏÉÓËÅ ĞÁËÅÔÁ %s\n" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "ÎÅ ÍÏÇÕ ĞÒÏŞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ĞÏÉÓËÁ" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "ÕÄÁÌÑÀ ÚÁĞÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÇÒÕĞĞ\n" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÉÍÅÎ\n" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "ÏÛÉÂËÁ ĞÒÉ ĞÏÉÓËÅ ĞÁËÅÔÁ %s\n" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "ĞÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "ĞÅÒÅÓÔÒÁÉ×ÁÀ ÂÁÚÕ × ËÏÒÎÅ×ÏÍ ËÁÔÁÌÏÇÅ %s\n" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕİÅÓÔ×ÕÅÔ" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ËÁÔÁÌÏÇÁ %s: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÀ ÓÔÁÒÕÀ ÂÁÚÕ\n" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÀ ÎÏ×ÕÀ ÂÁÚÕ\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "ÚÁĞÉÓØ ÎÏÍÅÒ %d × ÂÁÚÅ ÎÅ×ÅÒÎÁ, ĞÒÏĞÕÓËÁÀ" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "ÎÅ ÍÏÇÕ ÄÏÂÁ×ÉÔØ ÚÁĞÉÓØ (ĞÅÒ×ÏÎÁŞÁÌØÎÏ × %d)" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "ĞÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "ÚÁÍÅÎÁ ÓÔÁÒÏÊ ÂÁÚÙ ÎÁ ÎÏ×ÕÀ ÎÅ ÕÄÁÌÁÓØ!\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ ÚÁÍÅÎÑÅÔ ÆÁÊÌÙ × %s ÆÁÊÌÁÍÉ ÉÚ %s" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "ÕÄÁÌÅÎÉÅ ËÁÔÁÌÏÇÁ %s ÎÅ ÕÄÁÌÏÓØ: %s\n" @@ -3641,53 +3651,58 @@ msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ĞÏ ÕÍÏÌŞÁÎÉÀ × %s:%d" msgid "Cannot expand %s" msgstr "îÅ ÍÏÇÕ ÒÁÓËÒÙÔØ %s" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ %s ÄÌÑ ŞÔÅÎÉÑ: %s." #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "îÅ ÍÏÇÕ ĞÒÏŞÅÓÔØ %s: %s." -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ':' × %s:%d" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÇÕÍÅÎÔ ÄÌÑ %s × %s:%d" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "ÏÛÉÂËÁ ÒÁÓËÒÙÔÉÑ %s ÎÁ %s:%d \"%s\"" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s ÎÁ %s:%d" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÈÉÔÅËÔÕÒÁ ÄÌÑ %s × %s:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "ÎÅ×ÅÒÎÁÑ ÏĞÃÉÑ '%s' × %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÓÉÓÔÅÍÁ: %s\n" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n" @@ -3833,31 +3848,36 @@ msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name:\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name:\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, fuzzy, c-format msgid "excluding file %s%s\n" msgstr "ÉÓËÌÀŞÁÀ %s\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "ĞÅÒÅÍÅİÁÀ %s × %s\n" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "ĞÅÒÅÍÅİÁÀ %s × %s\n" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ĞÒÏĞÕİÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 2.93\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -308,8 +308,8 @@ msgstr "" " [--dbpath <adresár>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +#, fuzzy +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr " [--justdb] [--notriggers] balík1 ... balíkN" #: rpm.c:241 @@ -2070,113 +2070,118 @@ msgstr "riadok %d: Chyba pri analıze %%files: %s" msgid "line %d: Second %%files list" msgstr "riadok %d: Druhı %%files zoznam" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "Architektúra je vynechaná: %s" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "Architektúra nie je obsiahnutá: %s" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "OS je vynechanı: %s" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "OS nie je obsiahnutı: %s" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "V balíku musí existova» pole %s: %s" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "Duplicitné záznamy %s v balíku: %s" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "Nie je mo¾né preèíta» ikonu: %s" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "Nie je mo¾né preèíta» ikonu: %s" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "Neznámy typ ikony: %s" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "riadok %d: Znetvorenı popis: %s" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "riadok %d: Prázdny popis: %s" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "riadok %d: Neprípustnı znak '-' v %s: %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "riadok %d: BuildRoot nemô¾e by» \"/\": %s" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "riadok %d: Prefixy nesmú konèi» \"/\": %s" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "riadok %d: Docdir musí zaèína» '/': %s" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, 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:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "riadok %d: Chybnı formát BuildArchitecture: %s" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "riadok %d: Znetvorenı popis: %s" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "Interná chyba: Èudnı popis %d " -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "Chybná ¹pecifikácia balíka: %s" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "Balík u¾ existuje: %s" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "riadok %d: Neznámy popis: %s" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "Spec súbor nemô¾e pou¾i» BuildRoot" @@ -2343,51 +2348,51 @@ msgstr "riadok %d: Chybné no%s èíslo: %d" msgid "line %d: Bad %s number: %s\n" msgstr "riadok %d: Chybné %s èíslo: %s\n" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "premenovanie %s na %s zlyhalo: %s\n" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "zmazanie %s zlyhalo: %s\n" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "getNextHeader: %s\n" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "(chyba 0x%x)" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "Chybné magické èíslo" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "Chybná/neèitateµná hlavièka" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "Priveµká hlavièka" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "Neznámy typ súboru" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "Interná chyba" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr " zlyhalo - " @@ -2481,51 +2486,51 @@ msgstr "balík %s koliduje: %s\n" msgid "loop in prerequisite chain: %s" msgstr "sluèka v re»azi po¾iadaviek: %s" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: 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:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "chybnı stav súboru: %s" -#: lib/db1.c:421 +#: 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" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "nepodarilo sa otvori» %s: %s" -#: lib/db1.c:446 +#: lib/db1.c:451 #, 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:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "vıhradnı" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "zdieµanı" @@ -2554,57 +2559,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: lib/db3.c:476 +#: lib/db3.c:484 #, fuzzy, c-format msgid "removed db environment %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: lib/db3.c:973 +#: lib/db3.c:990 #, 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:1078 +#: lib/db3.c:1095 #, 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:1085 +#: lib/db3.c:1102 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" @@ -3097,7 +3102,12 @@ msgstr "balík %s nie je nain¹talovanı\n" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3384,7 +3394,7 @@ msgstr "chyba pri zápise záznamu %s do %s" msgid "error(%d) removing record %s from %s" msgstr "chyba pri odstraòovaní záznamu %s z %s" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "nebola nastavená ¾iadna dbpath" @@ -3397,111 +3407,111 @@ msgstr "" "databázy v novom formáte" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "chyba pri hµadaní balíka %s\n" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "odstraòuje sa záznam z databázy\n" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuje sa index skupín\n" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "odstraòuje sa index názvov\n" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "chyba pri hµadaní balíka %s\n" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu sa vytvára databáza v adresári %s\n" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "doèasná databáza %s u¾ existuje" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "chyba pri vytváraní adresára %s: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otvára sa stará databáza\n" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otvára sa nová databáza\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "záznam èíslo %d v databáze je chybnı -- bol vynechanı" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "nie je mo¾né prida» záznam pôvodne na %d" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "nepodarilo sa nahradi» starú databázu novou!\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "nahradí súbory v %s súbormi z %s kvôli obnove" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nepodarilo sa odstráni» adresár %s: %s\n" @@ -3648,53 +3658,58 @@ msgstr "Priveµa argumentov v implicitnom riadku na %s:%d" msgid "Cannot expand %s" msgstr "Nie je mo¾né expandova» %s" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, 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:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "Nie je mo¾né preèíta» %s: %s." -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "chıbajúca ':' na %s:%d" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "chıbajúci argument pre %s na %s:%d" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "expanzia %s zlyhala na %s:%d \"%s\"" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "nie je mo¾né otvori» %s na %s:%d" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "chıbajúca architektúra pre %s na %s:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "chybná voµba '%s' na %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "Neznámy systém: %s\n" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "Kontaktujte prosím rpm-list@redhat.com\n" @@ -3837,31 +3852,36 @@ msgstr "Musíte nastavi» \"%%gpg_name\" vo va¹om makro-súbore" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, fuzzy, c-format msgid "excluding file %s%s\n" msgstr "vynecháva sa %s\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "presúva sa %s do %s\n" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "presúva sa %s do %s\n" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s vynechané kvôli príznaku missingok\n" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -1,12 +1,12 @@ # -*- 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.68 2000/07/05 20:39:18 jbj Exp $ +# $Id: sl.po,v 1.69 2000/07/09 04:42:14 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 3.0.4\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\n" "PO-Revision-Date: 2000-02-17 22:25+01:00\n" "Last-Translator: Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\n" "Language-Team: Slovenian <sl@li.org>\n" @@ -302,8 +302,8 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr " [--dbpath <imenik>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +#, fuzzy +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr " [--justdb] [--notriggers] paket1 ... paketN" #: rpm.c:241 @@ -2051,113 +2051,118 @@ msgstr "vrstica %d: Napaka pri razèlembi v razdelku %%Files: %s" msgid "line %d: Second %%files list" msgstr "vrstica %d: Drugi seznam %%Files" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "Arhitektura je izkljuèena: %s" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "Arhitektura ni vkljuèena: %s" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "OS je izkljuèen: %s" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "OS ni vkljuèen: %s" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "polje %s mora obstojati v paketu: %s" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "Podvojeni vnosi %s v paketu: %s" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "Ikone %s ni mo¾no odpreti: %s" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "Ikone %s ni mo¾no prebrati: %s" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "Neznan tip ikone: %s" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "vrstica %d: Deformirana znaèka: %s" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "vrstica %d: Prazna znaèka: %s" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "vrstica %d: Neveljaven znak ,-` v %s: %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "BuildRoot ne more biti \"/\": %s" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, 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:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "vrstica %d: Docdir se mora zaèeti z \"/\": %s" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, 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:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "vrstica %d: okvarjena oblika BuildArchitecture: %s" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "vrstica %d: Deformirana znaèka: %s" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "Interna napaka: Neprava znaèka %d" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "Okvarjeno doloèilo paketa: %s" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "Paket ¾e obstaja: %s" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "vrstica %d: Neznana znaèka: %s" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "Datoteka spec ne more uporabiti BuildRoot" @@ -2326,51 +2331,51 @@ msgstr "vrstica %d: Okvarjeno ¹tevilo no%s: %d" msgid "line %d: Bad %s number: %s\n" msgstr "vrstica %d: Okvarjeno ¹tevilo %s: %s\n" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "ni mo¾no preimenovati %s v %s: %s\n" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "ni mo¾no zbrisati %s: %s\n" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "getNextHeader: %s\n" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "(napaka 0x%x)" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "Okvarjeno magièno ¹tevilo" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "Okvarjena/neberljiva glava" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "Glava predolga" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "Neznan tip datoteke" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "Trda povezava manjka" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "Interna napaka" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr " neuspe¹no - " @@ -2466,51 +2471,51 @@ msgstr "paket %s v sporu: %s\n" msgid "loop in prerequisite chain: %s" msgstr "zanka v predpogojevani verigi: %s" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, fuzzy, c-format msgid "removed db file %s\n" msgstr "odstranjujemo seznam datotek za %s\n" -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "okvarjeno stanje datoteke: %s" -#: lib/db1.c:421 +#: lib/db1.c:426 #, fuzzy, c-format msgid "opening db file %s mode 0x%x\n" msgstr "odpiramo datoteko z naèinom 0x%x v %s\n" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "neuspe¹no odpiranje %s: %s\n" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "datoteke ni mo¾no %s zakleniti" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "izkljuèujoèe" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "deljeno" @@ -2539,57 +2544,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "odstranjujemo seznam datotek za %s\n" -#: lib/db3.c:476 +#: lib/db3.c:484 #, fuzzy, c-format msgid "removed db environment %s/%s\n" msgstr "odstranjujemo seznam datotek za %s\n" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "odstranjujemo seznam datotek za %s\n" -#: lib/db3.c:973 +#: lib/db3.c:990 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "odpiramo datoteko z naèinom 0x%x v %s\n" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "datoteke ni mo¾no %s zakleniti" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "odstranjujemo seznam datotek za %s\n" @@ -3083,7 +3088,12 @@ msgstr "paket %s-%s-%s (ki je novej¹i kot %s-%s-%s) je ¾e name¹èen" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "namestitev paketa %s-%s-%s zahteva %ld%cb na datoteènem sistemu %s" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s" @@ -3369,7 +3379,7 @@ msgstr "napaka pri pisanju zapisa %s v %s" msgid "error(%d) removing record %s from %s" msgstr "napaka pri brisanju zapisa %s iz %s" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "dbpath ni nastavljena" @@ -3380,112 +3390,112 @@ msgid "" msgstr "staro obliko podatkove zbirke pretvorite v novo z --rebuilddb" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "napaka pri iskanju paketa %s\n" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "ni mo¾no prebrati glave pri %d za vpogled" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "odstranjujemo vnose v podatkovni zbirki\n" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstranjujemo seznam skupin\n" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "odstranjujemo seznam imen\n" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "napaka pri iskanju paketa %s\n" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "preimenujemo %s v %s\n" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "zaèasna podatkovna zbirka %s ¾e obstaja" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ustvarjamo imenik: %s\n" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "napaka pri ustvarjanju imenika %s: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "odpiramo staro podatkovno zbirko\n" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "odpiramo novo podatkovno zbirko\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "zapis ¹t. %d v zbirki je okvarjen -- preskakujemo." -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "zapisa ni mo¾no dodati na %d" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ponovna izgradnja podatkovne zbirke neuspe¹na; stara ostaja na istem mestu\n" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "zamenjava stare podatkovne zbirke z novo neuspe¹na!\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "posku¹amo povrniti z nadomestitvijo datotek v %s z datotekami iz %s" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "ustvarjamo imenik: %s\n" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspe¹na odstranitev imenika %s: %s\n" @@ -3632,53 +3642,58 @@ msgstr "Preveè argumentov v privzeti vrstici v %s:%d" msgid "Cannot expand %s" msgstr "Ni mo¾no raz¹iriti %s" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "Ni mo¾no odpreti %s za branje: %s." #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "Neuspe¹no branje %s: %s." -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "manjkajoèi ,:` (najden 0x%02x) v %s:%d" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "manjkajoèi argument za %s v %s:%d" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "izraz %s neuspe¹en v %s:%d \"%s\"" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "ni mo¾no odpreti %s v %s:%d: %s" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "manjkajoèa arhitekture za %s v %s:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "okvarjena izbira ,%s` v %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "Neznan sistem: %s\n" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "Prosimo, pi¹ite na rpm-list@redhat.com\n" @@ -3819,31 +3834,36 @@ msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "izkljuèujemo datoteko %s%s\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "izkljuèujemo imenik %s\n" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "prestavljamo %s v %s\n" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "prestavljamo imenik %s v %s\n" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" "From: Erik Troan <ewt@lacrosse.redhat.com>\n" @@ -294,8 +294,7 @@ msgstr "" #: rpm.c:240 rpmqv.c:315 #, fuzzy -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "\t\t\t paket1 ...paketN" #: rpm.c:241 @@ -2070,113 +2069,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "Ne mogu da upi¹em %s" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "Ne mogu da upi¹em %s" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, fuzzy, c-format msgid "Unknown icon type: %s" msgstr "(nepoznat tip)" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "preme¹tanja moraju poèeti znakom '/'" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "pogre¹an broj paketa: %s\n" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "nedostaje arhitektura za %s na %s:%d" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "pogre¹an broj paketa: %s\n" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, fuzzy, c-format msgid "Bad package specification: %s" msgstr " Opcije odrednice paketa:" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2345,53 +2349,53 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, fuzzy, c-format msgid "can't rename %s to %s: %s\n" msgstr "Neuspelo èitanje %s: %s." -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, fuzzy, c-format msgid "(error 0x%x)" msgstr "gre¹ka: " -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 #, fuzzy msgid "Unknown file type" msgstr "(nepoznat tip)" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 #, fuzzy msgid "Internal error" msgstr "fatalna gre¹ka: " -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 #, fuzzy msgid " failed - " msgstr "PGP omanuo" @@ -2486,51 +2490,51 @@ msgstr "paket %s nije naveden u %s" msgid "loop in prerequisite chain: %s" msgstr "petlja u lancu: %s" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "neuspelo otvaranje %s: %s" -#: lib/db1.c:421 +#: lib/db1.c:426 #, fuzzy, c-format msgid "opening db file %s mode 0x%x\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "ekskluzivno" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "deljeno" @@ -2559,57 +2563,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, 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:1078 +#: lib/db3.c:1095 #, 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:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -3116,7 +3120,12 @@ msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, fuzzy, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3405,7 +3414,7 @@ msgstr "gre¹ka zapisivanja sloga %s u %s" msgid "error(%d) removing record %s from %s" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "dbpath nije odreğen" @@ -3416,110 +3425,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "gre¹ka kod potrage za paketom %s\n" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "ne mogu da proèitam zaglavlje na %d za proveru" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "gre¹ka kod potrage za paketom %s\n" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "privremena baza podataka %s veæ postoji" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "ne mogu da dodam slog originalno na %d" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspelo otvaranje %s: %s" @@ -3669,53 +3678,58 @@ msgstr "Premnogo argumenata u podrazumevanoj liniji na %s:%d" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, 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:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "Neuspelo èitanje %s: %s." -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "nedostaje ':' na %s:%d" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "nedostaje argument za %s na %s:%d" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "neuspelo otvaranje %s: %s" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "nedostaje arhitektura za %s na %s:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "lo¹a opcija '%s' na %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3868,31 +3882,36 @@ msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, fuzzy, c-format msgid "excluding file %s%s\n" msgstr "Pribavljam %s\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -4387,9 +4406,6 @@ msgstr "neuspelo kreiranje %s\n" #~ msgid "package %s is now obsolete and will be removed\n" #~ msgstr "paket %s nije instaliran\n" -#~ msgid "package %s-%s-%s contain shared files\n" -#~ msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n" - #, fuzzy #~ msgid "package %s contains no files" #~ msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 3.0.4\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\n" "PO-Revision-Date: 2000-06-22 23:35+0200\n" "Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n" "Language-Team: Swedish <sv@li.org>\n" @@ -287,8 +287,8 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr " [--dbpath <kat>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +#, fuzzy +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr " [--justdb] [--notriggers] paket1 ... paketN" #: rpm.c:241 @@ -1963,113 +1963,118 @@ msgstr "rad %d: Fel i parsning av %%files: %s" msgid "line %d: Second %%files list" msgstr "rad %d: Andra %%files-lista" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "Arkitekturen är utesluten: %s" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "Arkitekturen är inte medtagen: %s" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "OS är uteslutet: %s" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "OS är inte medtaget: %s" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, 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:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "Dubbla %s-poster i paketet: %s" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "Kan inte öppna ikon %s: %s" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "Kan inte läsa ikon %s: %s" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "Okänd ikontyp: %s" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "rad %d: Felaktig tagg: %s" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "rad %d: Tom tagg: %s" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "rad %d: Otillåtet tecken \"-\" i %s: %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "BuildRoot kan inte vara \"/\": %s" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "rad %d: Prefix får inte sluta med \"/\": %s" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "rad %d: Docdir måste börja med \"/\": %s" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, 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:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "rad %d: Felaktig BuildArchitecture-format: %s" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "rad %d: Felaktig tagg: %s" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "Internt fel: felaktig tagg %d" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "Felaktig paketspecifikation: %s" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "Paketet existerar redan: %s" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "rad %d: Okänd tagg: %s" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "Spec-fil kan inte använda BuildRoot" @@ -2236,51 +2241,51 @@ msgstr "rad %d: Felaktigt no%s-tal: %d" msgid "line %d: Bad %s number: %s\n" msgstr "rad %d: Felaktigt %s-tal: %s\n" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "kan inte flytta %s till %s: %s\n" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "kan inte ta bort %s: %s\n" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "getNextHeader: %s\n" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "(fel 0x%x)" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "Felaktigt magiskt tal" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "Felaktigt/oläsbart huvud" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "Huvudstorlek för stor" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "Okänd filtyp" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "Saknad hårdlänk" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "Internt fel" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr " misslyckades - " @@ -2376,51 +2381,51 @@ msgstr "paket %s står i konflikt: %s\n" msgid "loop in prerequisite chain: %s" msgstr "cirkularitet i kedja av förutsättningar: %s" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "db%d fel(%d)" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr " utför %s" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "stängde db fil %s\n" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "tog bort db-fil %s\n" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "felaktig db-fil %s" -#: lib/db1.c:421 +#: 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" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "kunde inte öppna %s: %s\n" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "kan inte få %s lås på databas" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "uteslutande" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "delat" @@ -2449,57 +2454,57 @@ msgstr "stängde db-index %s/%s(%s)\n" 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:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "dbiSetConfig: okänd db-flagga: \"%s\" ignorerad\n" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s har ogiltigt ogiltigt numeriskt värde, hoppar över\n" -#: lib/db3.c:285 +#: lib/db3.c:293 #, 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:293 +#: lib/db3.c:301 #, 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:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "stängde db-miljö %s/%s\n" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "tar bort db-miljö %s/%s\n" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "öppnar db-miljö %s/%s %s\n" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "tog bort db-index %s/%s\n" -#: lib/db3.c:973 +#: lib/db3.c:990 #, 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:1078 +#: lib/db3.c:1095 #, 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:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "låste db-index %s/%s\n" @@ -2982,7 +2987,12 @@ msgstr "paket %s-%s-%s (som är nyare än %s-%s-%s) är redan installerat" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "installation av paket %s-%s-%s kräver %ld%cb på filsystem %s" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "okänt fel %d uppträdde under manipulation av paket %s-%s-%s" @@ -3297,7 +3307,7 @@ msgstr "fel(%d) när post %s sparades i %s" msgid "error(%d) removing record %s from %s" msgstr "fel(%d) när post %s togs bort ur %s" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "ingen dbpath har satts" @@ -3310,110 +3320,110 @@ msgstr "" "i nytt format" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "fel(%d) när paket räknades" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "%s: kan inte läsa huvud vid 0x%x" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "tar bort 0 %s-poster.\n" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "tar bort \"%s\" från %s-index.\n" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "tar bort %d poster från %s-index:\n" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "fel(%d) vid allokering av ny paketinstans" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "lägger till 0 %s-poster.\n" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "lägger till \"%s\" till %s-index.\n" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "lägger till %d poster till %s-index:\n" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "bygger om databas %s till %s\n" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "tillfällig databas %s existerar redan" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "skapar katalog %s\n" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "fel när katalog skapades %s: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "öppnar gammal databas med dbapi %d\n" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "öppnar ny databas med dbapi %d\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "post nummer %d i databasen är felaktig -- hoppar över den." -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "kan inte lägga till post ursprungligen vid %d" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "kunde inte ersätta gammal databas med ny databas!\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "byt ut filer i %s med filer från %s för att återställa" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "tar bort katalog %s\n" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunde inte ta bort katalogen %s: %s\n" @@ -3560,53 +3570,58 @@ msgstr "För många argument i skönsfallsrad vid %s:%d" msgid "Cannot expand %s" msgstr "Kan inte expandera %s" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, 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:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "Misslyckades läsa %s: %s." -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "\":\" saknas (hittade 0x%02x) vid %s:%d" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "argument till %s saknas vid %s:%d" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "%s expansion misslyckade vid %s:%d \"%s\"" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "kan inte öppna %s vid %s:%d: %s" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "arkitektur saknas för %s vid %s:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "okänd flagga \"%s\" vid %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "Okänt system: %s\n" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "Var god kontakta rpm-list@redhat.com\n" @@ -3747,31 +3762,36 @@ msgstr "Du måste sätta \"%%_gpg_name\" i din makrofil" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "hoppar över %s%s\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "hoppar över katalogen %s\n" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "flyttar %s till %s\n" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "flyttar katalogen %s till %s\n" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s överhoppad på grund av missingok-flagga\n" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -325,8 +325,7 @@ msgstr " [--dbpath <dizin>] [--nodeps] [--allmatches]" #: rpm.c:240 rpmqv.c:315 #, fuzzy -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr " [--justdb] paket1 ... paketN" #: rpm.c:241 @@ -2116,113 +2115,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, fuzzy, c-format msgid "Unable to open icon %s: %s" msgstr "%s 'nin yazılması mümkün değil" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, fuzzy, c-format msgid "Unable to read icon %s: %s" msgstr "%s 'nin yazılması mümkün değil" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, fuzzy, c-format msgid "Unknown icon type: %s" msgstr "(bilinmeyen tip)" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "%s açılamadı: %s" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "relocate işlemi / ile başlamalı" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "geçersiz paket numarsı: %s\n" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "%s için %s te eksik mimari:%d" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, fuzzy, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "geçersiz paket numarsı: %s\n" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, fuzzy, c-format msgid "Bad package specification: %s" msgstr " Paket seçim seçenekleri:" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2392,53 +2396,53 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "geçersiz paket numarsı: %s\n" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, fuzzy, c-format msgid "can't rename %s to %s: %s\n" msgstr "%s okunamadı: %s" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, fuzzy, c-format msgid "(error 0x%x)" msgstr "hata: " -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 #, fuzzy msgid "Unknown file type" msgstr "(bilinmeyen tip)" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 #, fuzzy msgid "Internal error" msgstr "ölümcül hata: " -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 #, fuzzy msgid " failed - " msgstr "PGP hata verdi" @@ -2533,51 +2537,51 @@ msgstr "%s paketi %s altında gözükmüyor" msgid "loop in prerequisite chain: %s" msgstr "gerekenler zincirinde döngü: %s" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, fuzzy, c-format msgid "bad db file %s" msgstr "%s açılamadı: %s" -#: lib/db1.c:421 +#: 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" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "%s açılamadı: %s" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "Veritabanı için %s kilit (lock) alınamadı" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "özel" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "paylaşılan (shared)" @@ -2606,57 +2610,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, 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:1078 +#: lib/db3.c:1095 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "Veritabanı için %s kilit (lock) alınamadı" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -3166,7 +3170,12 @@ msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, fuzzy, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3455,7 +3464,7 @@ msgstr "%s kaydı %s dosyasına yazılamıyor" msgid "error(%d) removing record %s from %s" msgstr "%s kaydının %s dosyasından silinmesinde hata" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "dbpath değeri girilmemiş" @@ -3466,110 +3475,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "%s pakedi aranırken hata oluştu\n" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "%d kaydından başlık bilgisi okunamadı" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "%s kaydının %s dosyasından silinmesinde hata" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "%s kaydının %s dosyasından silinmesinde hata" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "%s pakedi aranırken hata oluştu\n" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "mevcut veritabanını kullanılarak veritabınını yeniden oluşturur" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "geçici veritabanı %s mevcut" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "%s dizinin oluşturulmasında hata: %s" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "%s dizinin oluşturulmasında hata: %s" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "mevcut veritabanını kullanılarak veritabınını yeniden oluşturur" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "mevcut veritabanını kullanılarak veritabınını yeniden oluşturur" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "veritabanındaki %d numaralı kayıt hatalı -- atlanıyor" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "%d de yer alan kayıt saklayamıyor" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "%s dizinin oluşturulmasında hata: %s" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s açılamadı: %s" @@ -3719,53 +3728,58 @@ msgstr "%s te default satırında çok fazla argüman:%d" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, 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:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "%s okunamadı: %s" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "%s te eksik ':' :%d" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "%s için %s te eksik argüman :%d" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "%s açılamadı: %s" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s" msgstr "%s dosyası açılamıyor: " -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "%s için %s te eksik mimari:%d" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "%s geçersiz seçenek %s:%d" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3918,31 +3932,36 @@ msgstr "rpmrc dosyanızda \"pgp_name:\" tanımlanmış olmalı" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "rpmrc dosyanızda \"pgp_name:\" tanımlanmış olmalı" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, fuzzy, c-format msgid "excluding file %s%s\n" msgstr "%s alınıyor\n" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "%s dizinin oluşturulmasında hata: %s" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "%s dizinin oluşturulmasında hata: %s" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -4461,9 +4480,6 @@ msgstr "%s yaratılamıyor\n" #~ msgid "package %s is now obsolete and will be removed\n" #~ msgstr "%s pakedi yüklenmemiş\n" -#~ msgid "package %s-%s-%s contain shared files\n" -#~ msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n" - #, fuzzy #~ msgid "package %s contains no files" #~ msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-05 16:33-0400\n" +"POT-Creation-Date: 2000-07-09 00:38-0400\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" @@ -277,8 +277,7 @@ msgid " [--dbpath <dir>] [--nodeps] [--allmatches]" msgstr "" #: rpm.c:240 rpmqv.c:315 -msgid "" -" [--justdb] [--notriggers] rpackage1 ... packageN" +msgid " [--justdb] [--notriggers] package1 ... packageN" msgstr "" #: rpm.c:241 @@ -1914,113 +1913,118 @@ msgstr "" msgid "line %d: Second %%files list" msgstr "" -#: build/parsePreamble.c:144 +#: build/parsePreamble.c:142 #, c-format msgid "Architecture is excluded: %s" msgstr "" -#: build/parsePreamble.c:149 +#: build/parsePreamble.c:147 #, c-format msgid "Architecture is not included: %s" msgstr "" -#: build/parsePreamble.c:154 +#: build/parsePreamble.c:152 #, c-format msgid "OS is excluded: %s" msgstr "" -#: build/parsePreamble.c:159 +#: build/parsePreamble.c:157 #, c-format msgid "OS is not included: %s" msgstr "" -#: build/parsePreamble.c:173 +#: build/parsePreamble.c:171 #, c-format msgid "%s field must be present in package: %s" msgstr "" -#: build/parsePreamble.c:198 +#: build/parsePreamble.c:196 #, c-format msgid "Duplicate %s entries in package: %s" msgstr "" -#: build/parsePreamble.c:246 +#: build/parsePreamble.c:244 #, c-format msgid "Unable to open icon %s: %s" msgstr "" -#: build/parsePreamble.c:264 +#: build/parsePreamble.c:262 #, c-format msgid "Unable to read icon %s: %s" msgstr "" -#: build/parsePreamble.c:277 +#: build/parsePreamble.c:275 #, c-format msgid "Unknown icon type: %s" msgstr "" -#: build/parsePreamble.c:340 +#: build/parsePreamble.c:338 #, c-format msgid "line %d: Malformed tag: %s" msgstr "" #. Empty field -#: build/parsePreamble.c:348 +#: build/parsePreamble.c:346 #, c-format msgid "line %d: Empty tag: %s" msgstr "" -#: build/parsePreamble.c:371 build/parsePreamble.c:378 +#: build/parsePreamble.c:368 build/parsePreamble.c:375 #, c-format msgid "line %d: Illegal char '-' in %s: %s" msgstr "" -#: build/parsePreamble.c:442 build/parseSpec.c:376 +#: build/parsePreamble.c:432 build/parseSpec.c:376 #, c-format msgid "BuildRoot can not be \"/\": %s" msgstr "" -#: build/parsePreamble.c:455 +#: build/parsePreamble.c:445 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s" msgstr "" -#: build/parsePreamble.c:467 +#: build/parsePreamble.c:457 #, c-format msgid "line %d: Docdir must begin with '/': %s" msgstr "" -#: build/parsePreamble.c:479 +#: build/parsePreamble.c:469 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s" msgstr "" -#: build/parsePreamble.c:541 +#: build/parsePreamble.c:527 #, c-format msgid "line %d: Bad BuildArchitecture format: %s" msgstr "" -#: build/parsePreamble.c:551 +#: build/parsePreamble.c:539 +#, c-format +msgid "line %d: Invalid tag value: %s" +msgstr "" + +#: build/parsePreamble.c:549 #, c-format msgid "Internal error: Bogus tag %d" msgstr "" -#: build/parsePreamble.c:691 +#: build/parsePreamble.c:692 #, c-format msgid "Bad package specification: %s" msgstr "" -#: build/parsePreamble.c:697 +#: build/parsePreamble.c:698 #, c-format msgid "Package already exists: %s" msgstr "" -#: build/parsePreamble.c:724 +#: build/parsePreamble.c:725 #, c-format msgid "line %d: Unknown tag: %s" msgstr "" -#: build/parsePreamble.c:749 +#: build/parsePreamble.c:750 msgid "Spec file can't use BuildRoot" msgstr "" @@ -2187,51 +2191,51 @@ msgstr "" msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:359 +#: lib/cpio.c:358 #, c-format msgid "can't rename %s to %s: %s\n" msgstr "" -#: lib/cpio.c:365 +#: lib/cpio.c:364 #, c-format msgid "can't unlink %s: %s\n" msgstr "" -#: lib/cpio.c:609 +#: lib/cpio.c:608 #, c-format msgid "getNextHeader: %s\n" msgstr "" -#: lib/cpio.c:1070 +#: lib/cpio.c:1069 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:1073 +#: lib/cpio.c:1072 msgid "Bad magic" msgstr "" -#: lib/cpio.c:1074 +#: lib/cpio.c:1073 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:1092 +#: lib/cpio.c:1091 msgid "Header size too big" msgstr "" -#: lib/cpio.c:1093 +#: lib/cpio.c:1092 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:1094 +#: lib/cpio.c:1093 msgid "Missing hard link" msgstr "" -#: lib/cpio.c:1095 +#: lib/cpio.c:1094 msgid "Internal error" msgstr "" -#: lib/cpio.c:1104 +#: lib/cpio.c:1103 msgid " failed - " msgstr "" @@ -2325,51 +2329,51 @@ msgstr "" msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/db1.c:95 lib/db3.c:433 +#: lib/db1.c:96 lib/db3.c:441 #, c-format msgid "db%d error(%d)" msgstr "" -#: lib/db1.c:97 lib/db3.c:435 +#: lib/db1.c:98 lib/db3.c:443 #, c-format msgid " performing %s" msgstr "" -#: lib/db1.c:382 +#: lib/db1.c:387 #, c-format msgid "closed db file %s\n" msgstr "" -#: lib/db1.c:385 +#: lib/db1.c:390 #, c-format msgid "removed db file %s\n" msgstr "" -#: lib/db1.c:416 +#: lib/db1.c:421 #, c-format msgid "bad db file %s" msgstr "" -#: lib/db1.c:421 +#: lib/db1.c:426 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" -#: lib/db1.c:430 rpmio/url.c:445 +#: lib/db1.c:435 rpmio/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/db1.c:446 +#: lib/db1.c:451 #, c-format msgid "cannot get %s lock on database" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "exclusive" msgstr "" -#: lib/db1.c:447 lib/db3.c:1080 +#: lib/db1.c:452 lib/db3.c:1097 msgid "shared" msgstr "" @@ -2398,57 +2402,57 @@ msgstr "" msgid "opening db index %s/%s(%s) %s mode=0x%x\n" msgstr "" -#: lib/db3.c:249 +#: lib/db3.c:257 #, c-format msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n" msgstr "" -#: lib/db3.c:277 +#: lib/db3.c:285 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: lib/db3.c:285 +#: lib/db3.c:293 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: lib/db3.c:293 +#: lib/db3.c:301 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" -#: lib/db3.c:460 +#: lib/db3.c:468 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: lib/db3.c:476 +#: lib/db3.c:484 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: lib/db3.c:513 +#: lib/db3.c:521 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: lib/db3.c:883 +#: lib/db3.c:900 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: lib/db3.c:973 +#: lib/db3.c:990 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: lib/db3.c:1078 +#: lib/db3.c:1095 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: lib/db3.c:1085 +#: lib/db3.c:1102 #, c-format msgid "locked db index %s/%s\n" msgstr "" @@ -2923,7 +2927,12 @@ msgstr "" msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:116 +#: lib/problems.c:114 +#, c-format +msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:122 #, c-format msgid "unknown error %d encountered while manipulating package %s-%s-%s" msgstr "" @@ -3208,7 +3217,7 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:785 lib/rpmdb.c:2291 +#: lib/rpmdb.c:785 lib/rpmdb.c:2305 msgid "no dbpath has been set" msgstr "" @@ -3219,110 +3228,110 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:1094 +#: lib/rpmdb.c:1096 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:91 +#: lib/rpmdb.c:1155 lib/rpmdb.c:1674 lib/uninstall.c:91 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1717 +#: lib/rpmdb.c:1727 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1728 +#: lib/rpmdb.c:1738 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1737 +#: lib/rpmdb.c:1747 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1877 +#: lib/rpmdb.c:1889 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1933 +#: lib/rpmdb.c:1946 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1949 +#: lib/rpmdb.c:1962 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1958 +#: lib/rpmdb.c:1971 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2330 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2320 +#: lib/rpmdb.c:2334 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2326 +#: lib/rpmdb.c:2340 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2328 +#: lib/rpmdb.c:2342 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2335 +#: lib/rpmdb.c:2349 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2344 +#: lib/rpmdb.c:2358 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2381 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2399 +#: lib/rpmdb.c:2413 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2417 +#: lib/rpmdb.c:2431 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2439 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2441 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2437 +#: lib/rpmdb.c:2451 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2439 +#: lib/rpmdb.c:2453 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3469,53 +3478,58 @@ msgstr "" msgid "Cannot expand %s" msgstr "" -#: lib/rpmrc.c:566 +#: lib/rpmrc.c:556 +#, c-format +msgid "Cannot read %s, HOME is too large." +msgstr "" + +#: lib/rpmrc.c:573 #, c-format msgid "Unable to open %s for reading: %s." msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:618 #, c-format msgid "Failed to read %s: %s." msgstr "" -#: lib/rpmrc.c:648 +#: lib/rpmrc.c:655 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d" msgstr "" -#: lib/rpmrc.c:665 lib/rpmrc.c:739 +#: lib/rpmrc.c:672 lib/rpmrc.c:746 #, c-format msgid "missing argument for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:682 lib/rpmrc.c:704 +#: lib/rpmrc.c:689 lib/rpmrc.c:711 #, c-format msgid "%s expansion failed at %s:%d \"%s\"" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:698 #, c-format msgid "cannot open %s at %s:%d: %s" msgstr "" -#: lib/rpmrc.c:731 +#: lib/rpmrc.c:738 #, c-format msgid "missing architecture for %s at %s:%d" msgstr "" -#: lib/rpmrc.c:798 +#: lib/rpmrc.c:805 #, c-format msgid "bad option '%s' at %s:%d" msgstr "" -#: lib/rpmrc.c:1169 +#: lib/rpmrc.c:1176 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1170 +#: lib/rpmrc.c:1177 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3656,31 +3670,36 @@ msgstr "" msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" -#: lib/transaction.c:412 +#: lib/transaction.c:413 #, c-format msgid "excluding file %s%s\n" msgstr "" -#: lib/transaction.c:438 lib/transaction.c:521 +#: lib/transaction.c:439 lib/transaction.c:522 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:443 +#: lib/transaction.c:444 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:514 +#: lib/transaction.c:515 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:666 +#: lib/transaction.c:667 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" +#: lib/transaction.c:1375 +#, c-format +msgid "executing pre-transaction syscall: \"%s\"\n" +msgstr "" + #: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" @@ -254,6 +254,10 @@ fi %{__prefix}/include/popt.h %changelog +* Sun Jul 9 2000 Jeff Johnson <jbj@redhat.com> +- add pre-transaction syscall's to handle /etc/init.d change. +- don't bother saving '/' as fingerprint subdir. + * Wed Jul 5 2000 Jeff Johnson <jbj@redhat.com> - change optflags for i386. - multilib patch, take 1. |