From 913d116d71f5c2cb47c35944b8c1fcd9795fd6e3 Mon Sep 17 00:00:00 2001 From: jbj Date: Sun, 9 Jul 2000 04:42:12 +0000 Subject: - 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 --- CHANGES | 2 + build/parsePreamble.c | 51 ++++++------ lib/Makefile.am | 2 +- lib/fileutil.c | 161 +++++++++++++++++++++++++++++++++++++ lib/fprint.c | 7 +- lib/fprint.h | 6 +- lib/problems.c | 16 ++-- lib/rpmlib.h | 11 ++- lib/transaction.c | 27 ++++++- po/cs.po | 215 ++++++++++++++++++++++++++----------------------- po/da.po | 212 ++++++++++++++++++++++++++---------------------- po/de.po | 217 +++++++++++++++++++++++++++----------------------- po/es.po | 211 ++++++++++++++++++++++++++---------------------- po/fi.po | 214 ++++++++++++++++++++++++++----------------------- po/fr.po | 211 ++++++++++++++++++++++++++---------------------- po/gl.po | 211 ++++++++++++++++++++++++++---------------------- po/hu.po | 211 ++++++++++++++++++++++++++---------------------- po/id.po | 211 ++++++++++++++++++++++++++---------------------- po/is.po | 211 ++++++++++++++++++++++++++---------------------- po/it.po | 211 ++++++++++++++++++++++++++---------------------- po/ja.po | 213 +++++++++++++++++++++++++++---------------------- po/ko.po | 211 ++++++++++++++++++++++++++---------------------- po/no.po | 212 ++++++++++++++++++++++++++---------------------- po/pl.po | 212 ++++++++++++++++++++++++++---------------------- po/pt.po | 211 ++++++++++++++++++++++++++---------------------- po/pt_BR.po | 212 ++++++++++++++++++++++++++---------------------- po/ro.po | 211 ++++++++++++++++++++++++++---------------------- po/rpm.pot | 66 +++++++++------ po/ru.po | 212 ++++++++++++++++++++++++++---------------------- po/sk.po | 212 ++++++++++++++++++++++++++---------------------- po/sl.po | 214 +++++++++++++++++++++++++++---------------------- po/sr.po | 214 ++++++++++++++++++++++++++----------------------- po/sv.po | 212 ++++++++++++++++++++++++++---------------------- po/tr.po | 214 ++++++++++++++++++++++++++----------------------- po/uk.po | 211 ++++++++++++++++++++++++++---------------------- rpm.spec | 4 + 36 files changed, 3174 insertions(+), 2485 deletions(-) create mode 100644 lib/fileutil.c diff --git a/CHANGES b/CHANGES index d7fb36aa4..62a1df909 100644 --- a/CHANGES +++ b/CHANGES @@ -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 #include @@ -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 + +#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); diff --git a/po/cs.po b/po/cs.po index e62f34bb3..b85c7aa88 100644 --- a/po/cs.po +++ b/po/cs.po @@ -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 \n" "Language-Team: Czech \n" @@ -304,8 +304,8 @@ msgid " [--dbpath ] [--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] 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 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 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 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 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 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 #~ 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" diff --git a/po/da.po b/po/da.po index e5c99ccf1..81d036eba 100644 --- a/po/da.po +++ b/po/da.po @@ -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 \n" "Language-Team: Danish/Dansk \n" @@ -289,8 +289,8 @@ msgid " [--dbpath ] [--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] 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" diff --git a/po/de.po b/po/de.po index dff4ab279..df02b57ce 100644 --- a/po/de.po +++ b/po/de.po @@ -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 \n" "Language-Team: German \n" @@ -341,8 +341,8 @@ msgid " [--dbpath ] [--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] 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 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" @@ -4532,10 +4553,6 @@ msgstr "anlegen von %s fehlgeschlagen\n" #~ msgid "package %s is now obsolete and will be removed\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" diff --git a/po/es.po b/po/es.po index 32b2109e9..18824a580 100644 --- a/po/es.po +++ b/po/es.po @@ -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 \n" "Language-Team: LANGUAGE \n" @@ -277,8 +277,7 @@ msgid " [--dbpath ] [--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/fi.po b/po/fi.po index 57105fc5d..c4ac22d87 100644 --- a/po/fi.po +++ b/po/fi.po @@ -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 \n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=\n" @@ -315,8 +315,7 @@ msgstr " [--dbpath ] [--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 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: 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 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 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 #~ 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" diff --git a/po/fr.po b/po/fr.po index 38827bb8b..80c971d29 100644 --- a/po/fr.po +++ b/po/fr.po @@ -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 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 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" diff --git a/po/gl.po b/po/gl.po index 32b2109e9..18824a580 100644 --- a/po/gl.po +++ b/po/gl.po @@ -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 \n" "Language-Team: LANGUAGE \n" @@ -277,8 +277,7 @@ msgid " [--dbpath ] [--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/hu.po b/po/hu.po index 32b2109e9..18824a580 100644 --- a/po/hu.po +++ b/po/hu.po @@ -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 \n" "Language-Team: LANGUAGE \n" @@ -277,8 +277,7 @@ msgid " [--dbpath ] [--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/id.po b/po/id.po index 32b2109e9..18824a580 100644 --- a/po/id.po +++ b/po/id.po @@ -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 \n" "Language-Team: LANGUAGE \n" @@ -277,8 +277,7 @@ msgid " [--dbpath ] [--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/is.po b/po/is.po index 1f2d17eb4..367754df0 100644 --- a/po/is.po +++ b/po/is.po @@ -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 \n" "Language-Team: is \n" @@ -272,8 +272,7 @@ msgid " [--dbpath ] [--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/it.po b/po/it.po index 32b2109e9..18824a580 100644 --- a/po/it.po +++ b/po/it.po @@ -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 \n" "Language-Team: LANGUAGE \n" @@ -277,8 +277,7 @@ msgid " [--dbpath ] [--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/ja.po b/po/ja.po index 44987704a..5c5e32f95 100644 --- a/po/ja.po +++ b/po/ja.po @@ -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 \n" "Language-Team: JRPM \n" @@ -127,7 +127,7 @@ msgstr "copyright # 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 ] [--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 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 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 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 " 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 " 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" diff --git a/po/ko.po b/po/ko.po index 32b2109e9..18824a580 100644 --- a/po/ko.po +++ b/po/ko.po @@ -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 \n" "Language-Team: LANGUAGE \n" @@ -277,8 +277,7 @@ msgid " [--dbpath ] [--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/no.po b/po/no.po index e8a42c350..6321b2c0f 100644 --- a/po/no.po +++ b/po/no.po @@ -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 \n" "Language-Team: Norwegian \n" @@ -295,8 +295,8 @@ msgid " [--dbpath ] [--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] 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" diff --git a/po/pl.po b/po/pl.po index 3760546d0..43ccbb002 100644 --- a/po/pl.po +++ b/po/pl.po @@ -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 \n" "Language-Team: Polish \n" @@ -307,8 +307,8 @@ msgid " [--dbpath ] [--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] pakiet1 ... pakietN" #: rpm.c:241 @@ -2062,113 +2062,118 @@ msgstr "linia %d: B 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 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 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 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 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" diff --git a/po/pt.po b/po/pt.po index 32b2109e9..18824a580 100644 --- a/po/pt.po +++ b/po/pt.po @@ -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 \n" "Language-Team: LANGUAGE \n" @@ -277,8 +277,7 @@ msgid " [--dbpath ] [--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 , 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 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 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 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 # "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" diff --git a/po/ro.po b/po/ro.po index 8b743aa5f..0cfacbab0 100644 --- a/po/ro.po +++ b/po/ro.po @@ -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 \n" "Language-Team: Romanian \n" @@ -272,8 +272,7 @@ msgid " [--dbpath ] [--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 \n" "Language-Team: LANGUAGE \n" @@ -277,8 +277,7 @@ msgid " [--dbpath ] [--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" diff --git a/po/ru.po b/po/ru.po index aab22458c..0165a601c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -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 ] [--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 " 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 " 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 " 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 " 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 " 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 " 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 " 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" diff --git a/po/sk.po b/po/sk.po index 86609ebd2..1adab2d55 100644 --- a/po/sk.po +++ b/po/sk.po @@ -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 \n" "Language-Team: Slovak \n" @@ -308,8 +308,8 @@ msgstr "" " [--dbpath ] [--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 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 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 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 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 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 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 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" diff --git a/po/sl.po b/po/sl.po index 42d4eeee8..5c4944d9a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -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 , 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 \n" "Language-Team: Slovenian \n" @@ -302,8 +302,8 @@ msgid " [--dbpath ] [--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] paket1 ... paketN" #: rpm.c:241 @@ -2051,113 +2051,118 @@ msgstr "vrstica %d: Napaka pri raz 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 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 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 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" diff --git a/po/sr.po b/po/sr.po index e37ce5ef7..2f8060fc7 100644 --- a/po/sr.po +++ b/po/sr.po @@ -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 \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 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 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 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" diff --git a/po/sv.po b/po/sv.po index 881ca6dd2..cc7f82850 100644 --- a/po/sv.po +++ b/po/sv.po @@ -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 \n" "Language-Team: Swedish \n" @@ -287,8 +287,8 @@ msgid " [--dbpath ] [--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] 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 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 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 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 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 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 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" diff --git a/po/tr.po b/po/tr.po index 16603e692..782556be6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -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 \n" "Language-Team: LANGUAGE \n" @@ -325,8 +325,7 @@ msgstr " [--dbpath ] [--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 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 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 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 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 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 #~ 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" diff --git a/po/uk.po b/po/uk.po index 32b2109e9..18824a580 100644 --- a/po/uk.po +++ b/po/uk.po @@ -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 \n" "Language-Team: LANGUAGE \n" @@ -277,8 +277,7 @@ msgid " [--dbpath ] [--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/rpm.spec b/rpm.spec index 470f71094..544b4b49a 100644 --- a/rpm.spec +++ b/rpm.spec @@ -254,6 +254,10 @@ fi %{__prefix}/include/popt.h %changelog +* Sun Jul 9 2000 Jeff Johnson +- add pre-transaction syscall's to handle /etc/init.d change. +- don't bother saving '/' as fingerprint subdir. + * Wed Jul 5 2000 Jeff Johnson - change optflags for i386. - multilib patch, take 1. -- cgit v1.2.3