From 8b68faf981d02d50d1666f543c337bb72cd23def Mon Sep 17 00:00:00 2001 From: jbj Date: Fri, 31 Jan 2003 22:55:28 +0000 Subject: [PATCH] - fix: trap SIGPIPE, close database(s). - configurable default query output format. CVS patchset: 6034 CVS date: 2003/01/31 22:55:28 --- CHANGES | 2 + lib/psm.c | 11 ++-- lib/query.c | 25 ++++----- macros.in | 7 ++- po/cs.po | 158 ++++++++++++++++++++++++++++----------------------------- po/da.po | 158 ++++++++++++++++++++++++++++----------------------------- po/de.po | 158 ++++++++++++++++++++++++++++----------------------------- po/fi.po | 158 ++++++++++++++++++++++++++++----------------------------- po/fr.po | 158 ++++++++++++++++++++++++++++----------------------------- po/gl.po | 158 ++++++++++++++++++++++++++++----------------------------- po/is.po | 158 ++++++++++++++++++++++++++++----------------------------- po/ja.po | 158 ++++++++++++++++++++++++++++----------------------------- po/ko.po | 158 ++++++++++++++++++++++++++++----------------------------- po/no.po | 158 ++++++++++++++++++++++++++++----------------------------- po/pl.po | 158 ++++++++++++++++++++++++++++----------------------------- po/pt.po | 158 ++++++++++++++++++++++++++++----------------------------- po/pt_BR.po | 158 ++++++++++++++++++++++++++++----------------------------- po/ro.po | 158 ++++++++++++++++++++++++++++----------------------------- po/rpm.pot | 158 ++++++++++++++++++++++++++++----------------------------- po/ru.po | 158 ++++++++++++++++++++++++++++----------------------------- po/sk.po | 158 ++++++++++++++++++++++++++++----------------------------- po/sl.po | 160 +++++++++++++++++++++++++++++----------------------------- po/sr.po | 158 ++++++++++++++++++++++++++++----------------------------- po/sv.po | 158 ++++++++++++++++++++++++++++----------------------------- po/tr.po | 158 ++++++++++++++++++++++++++++----------------------------- rpm.spec.in | 6 ++- rpmdb/rpmdb.c | 22 ++++---- 27 files changed, 1703 insertions(+), 1690 deletions(-) diff --git a/CHANGES b/CHANGES index b388ba6..2a363bd 100644 --- a/CHANGES +++ b/CHANGES @@ -117,6 +117,8 @@ - fix: clean relocation path for --prefix=/. - python: permit stdout/stderr to be remapped to install.log. - pay attention to package color when upgrading identical packages. + - fix: trap SIGPIPE, close database(s). + - configurable default query output format. 4.0.4 -> 4.1: - loosely wire beecrypt library into rpm. diff --git a/lib/psm.c b/lib/psm.c index 7589168..3cecfe3 100644 --- a/lib/psm.c +++ b/lib/psm.c @@ -484,11 +484,11 @@ static void handler(int signum) static struct sigtbl_s { int signum; int active; - struct sigaction act; + void (*handler) (int signum); struct sigaction oact; } satbl[] = { - { SIGCHLD, 0, { {handler} } }, - { -1, 0, { {NULL} } }, + { SIGCHLD, 0, handler }, + { -1, 0, NULL }, }; /*@=fullinitblock@*/ @@ -551,6 +551,7 @@ static int enableSignal(int signum) { sigset_t newMask, oldMask; struct sigtbl_s * tbl; + struct sigaction act; (void) sigfillset(&newMask); /* block all signals */ (void) sigprocmask(SIG_BLOCK, &newMask, &oldMask); @@ -563,7 +564,9 @@ fprintf(stderr, " Enable: %p[0:%d:%d] active %d\n", psmtbl.psms, psmtbl.npsms /*@=modfilesys@*/ if (tbl->active++ <= 0) { (void) sigdelset(&caught, tbl->signum); - (void) sigaction(tbl->signum, &tbl->act, &tbl->oact); + memset(&act, 0, sizeof(act)); + act.sa_handler = tbl->handler; + (void) sigaction(tbl->signum, &act, &tbl->oact); } break; } diff --git a/lib/query.c b/lib/query.c index fb757d1..856b74f 100644 --- a/lib/query.c +++ b/lib/query.c @@ -121,7 +121,6 @@ static inline /*@null@*/ const char * queryHeader(Header h, const char * qfmt) int showQueryPackage(QVA_t qva, rpmts ts, Header h) { - uint_32 tscolor = rpmtsColor(ts); int scareMem = 0; rpmfi fi = NULL; char * t, * te; @@ -135,20 +134,6 @@ int showQueryPackage(QVA_t qva, rpmts ts, Header h) *te = '\0'; /*@=boundswrite@*/ - if (!(qva->qva_flags & _QUERY_FOR_BITS) && qva->qva_queryFormat == NULL) - { - const char * n, * v, * r, * a; - (void) headerNEVRA(h, &n, NULL, &v, &r, &a); -/*@-boundswrite@*/ - te = stpcpy(te, n); - te = stpcpy( stpcpy(te, "-"), v); - te = stpcpy( stpcpy(te, "-"), r); - if (tscolor && a != NULL) - te = stpcpy( stpcpy(te, "."), a); -/*@=boundswrite@*/ - goto exit; - } - if (qva->qva_queryFormat != NULL) { const char * str = queryHeader(h, qva->qva_queryFormat); nonewline = 1; @@ -773,6 +758,16 @@ int rpmcliQuery(rpmts ts, QVA_t qva, const char ** argv) if (qva->qva_showPackage == NULL) qva->qva_showPackage = showQueryPackage; +fprintf(stderr, "*** BEFORE: flags %x & %x format %s\n", qva->qva_flags, _QUERY_FOR_BITS, qva->qva_queryFormat); + if (!(qva->qva_flags & _QUERY_FOR_BITS) && qva->qva_queryFormat == NULL) { + qva->qva_queryFormat = rpmExpand("%{?_query_all_fmt}\n", NULL); + if (!(qva->qva_queryFormat != NULL && *qva->qva_queryFormat != '\0')) { + qva->qva_queryFormat = _free(qva->qva_queryFormat); + qva->qva_queryFormat = xstrdup("%{name}-%{version}-%{release}\n"); + } + } +fprintf(stderr, "*** AFTER: flags %x & %x format %s\n", qva->qva_flags, _QUERY_FOR_BITS, qva->qva_queryFormat); + vsflags = rpmExpandNumeric("%{?_vsflags_query}"); if (qva->qva_flags & VERIFY_DIGEST) vsflags |= _RPMVSF_NODIGESTS; diff --git a/macros.in b/macros.in index b795821..09ddc87 100644 --- a/macros.in +++ b/macros.in @@ -1,7 +1,7 @@ #/*! \page config_macros Default configuration: @RPMCONFIGDIR@/macros # \verbatim # -# $Id: macros.in,v 1.136 2003/01/07 00:49:55 jbj Exp $ +# $Id: macros.in,v 1.137 2003/01/31 22:55:28 jbj Exp $ # # This is a global RPM configuration file. All changes made here will # be lost when the rpm package is upgraded. Any per-system configuration @@ -682,6 +682,11 @@ package or when debugging this package.\ %{?_dependency_whiteout_5_2} \ %{nil} +# +# Default headerSprintf() output format string for rpm -qa +# +# XXX Note: escaped %% for use in headerSprintf() +%_query_all_fmt %%{name}-%%{version}-%%{release} #============================================================================== # ---- Cache configuration macros. diff --git a/po/cs.po b/po/cs.po index c4d4c5c..bcb3719 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2001-07-24 10:02+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -725,7 +725,7 @@ msgstr "Nemohu p msgid "Could not open %s: %s\n" msgstr "Nemohu otevøít %s: %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "Nemohu zapsat balíèek: %s\n" @@ -755,7 +755,7 @@ msgstr "Nemohu p msgid "Unable to write payload to %s: %s\n" msgstr "Nemohu zapsat payload do %s: %s\n" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "Zapsáno: %s\n" @@ -2184,76 +2184,76 @@ msgstr "o msgid "source package contains no .spec file\n" msgstr "zdrojový balíèek neobsahuje .spec soubor\n" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "Nemohu pøeèíst hlavièku z %s: %s\n" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s neexistuje - pou¾ita skupina root\n" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozbalování archívu selhalo %s%s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr " na souboru " -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nemohu otevøít %s: %s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s selhalo\n" @@ -2264,129 +2264,129 @@ msgid "incorrect format: %s\n" msgstr "nesprávný formát: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(neobsahuje ¾ádné soubory)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "normální " -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "nahrazen " -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "neinstalován " -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "sdílen v síti " -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(chybí stav) " -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(neznámý %3d) " -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "balíèek nemá vlastníka souboru ani seznamy id\n" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "balíèek nemá vlastníka souboru ani seznamy id\n" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "otevøení %s selhalo: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "dotaz na %s se nezdaøil\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "nelze provést dotaz na zdrojové balíèky starého formátu\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "¾ádný balíèek neaktivuje %s\n" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "¾ádné balíèky\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s neobsahuje ¾ádné balíèky\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "¾ádný balíèek neaktivuje %s\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "nemohu zjistit stav %s: %s\n" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "¾ádný balíèek neaktivuje %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "¾ádný balíèek nevy¾aduje %s\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "¾ádný balíèek neposkytuje %s\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "soubor %s: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "soubor %s nevlastní ¾ádný balíèek\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "neplatné èíslo balíèku: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "záznam balíèku èíslo: %u\n" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "záznam %u nelze pøeèíst\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "balíèek %s není nainstalován\n" @@ -3328,161 +3328,161 @@ msgstr "nemohu otev msgid "cannot open %s index\n" msgstr "nemohu otevøít RPM databázi v %s\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu vytvoøit databázi z existující databáze" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "nemohu provést dotaz %s: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Nelze pøejmenovat %s na %s: %m\n" diff --git a/po/da.po b/po/da.po index 8271109..0930238 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2001-04-05 23:03GMT\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish \n" @@ -722,7 +722,7 @@ msgstr "Kunne ikke l msgid "Could not open %s: %s\n" msgstr "Kunne ikke åbne %s: %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunne ikke skrive pakke: %s\n" @@ -752,7 +752,7 @@ msgstr "Kunne ikke l msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" @@ -2196,77 +2196,77 @@ msgstr "kildepakke forventet, bin msgid "source package contains no .spec file\n" msgstr "kildepakke indeholder ingen .spec-fil\n" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "overspringer installation af %s-%s-%s, %%pre-småskript fejlede rc %d\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "" "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "pakke: %s-%s-%s filer test = %d\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "Kunne ikke læse hoved fra %s: %s\n" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "bruger %s eksisterer ikke - bruger root\n" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "gruppe %s eksisterer ikke - bruger root\n" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "udpakning af arkiv mislykkedes%s%s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr " for fil " -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "kunne ikke åbne %s: %s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s mislykkedes\n" @@ -2277,129 +2277,129 @@ msgid "incorrect format: %s\n" msgstr "ugyldigt format: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(indeholder ingen filer)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "normal " -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "erstattet " -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "ej installeret" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "ej delt " -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(ingen status)" -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(ukendt %3d) " -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "pakke har hverken filejerskabs- eller id-lister\n" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "pakke har hverken filejerskabs- eller id-lister\n" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "åbning af %s mislykkedes %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "forespørgsel af %s mislykkedes\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "pakke med gammelt kildeformat kan ikke forespørges\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "ingen pakker udløser %s\n" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "ingen pakker\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "gruppe %s indeholder ingen pakker\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "ingen pakker udløser %s\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Kunne ikke læse %s: %s.\n" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "ingen pakker udløser %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "ingen pakker kræver %s\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "ingen pakker tilfører %s\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "filen %s tilhører ingen pakke\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "ugyldigt pakkenummer: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "pakkens post-nummer: %u\n" -#: lib/query.c:745 +#: lib/query.c:730 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "post %d kunne ikke læses\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "pakken %s er ikke installeret\n" @@ -3340,165 +3340,165 @@ msgstr "kan ikke msgid "cannot open %s index\n" msgstr "kan ikke åbne '%s'-indeks\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "der er ikke sat nogen dbpath\n" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "fejl(%d) ved gemning af post %s i %s\n" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan ikke læse hoved ved 0x%x\n" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "fjerner \"%s\" fra %s-indekset.\n" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, c-format msgid "removing %d entries from %s index.\n" msgstr "fjerne %d indgange fra %s-indekset.\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "fejl(%d) ved gemning af post %s i %s\n" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "fejl(%d) ved fjernelse af post %s fra %s\n" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "fejl(%d) under allokering af ny pakkeinstans\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" "tilføjer \"%s\" til '%s'-indekset.\n" "\n" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "tilføjer %d indgange til '%s'-indekset.\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "fejl(%d) ved gemning af post %s i %s\n" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "fjerner %s efter vellykket genopbygning af db3.\n" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "der ikke sat nogen dbpath" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "genopbygger database %s over i %s\n" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "den midlertidige database %s eksisterer allerede\n" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, c-format msgid "creating directory %s\n" msgstr "" "opretter kataloget %s\n" "\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, c-format msgid "creating directory %s: %s\n" msgstr "opretter kataloget %s: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "åbner gammel database med dbapi %d\n" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "åbner ny database med dbapi %d\n" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, fuzzy, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "post nummer %d i databasen er fejlbehæftet -- overspringer.\n" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "kunne ikke tilføje posten, der tidligere var ved %d\n" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunne ikke genopbygge database: original-databasen beholdes\n" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "kunne ikke erstatte gammel database med ny database!\n" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "erstat filer i %s med filer fra %s for at genoprette" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "fjerner kataloget %s\n" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunne ikke fjerne katalog %s: %s\n" diff --git a/po/de.po b/po/de.po index 4fb413b..778e236 100644 --- a/po/de.po +++ b/po/de.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -807,7 +807,7 @@ msgid "Could not open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen\n" # , c-format -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nicht möglich %s zu schreiben" @@ -842,7 +842,7 @@ msgstr "Nicht m msgid "Unable to write payload to %s: %s\n" msgstr "Nicht möglich %s zu schreiben" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2354,79 +2354,79 @@ msgstr "" msgid "source package contains no .spec file\n" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "Ausführung des Skripts fehlgeschlagen" # FIXME shared, besser: "mit anderen geteilte ..." -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" # , c-format -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "Nicht möglich %s zu schreiben" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr "" # , c-format -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "pgp fehlgeschlagen" @@ -2437,135 +2437,135 @@ msgid "incorrect format: %s\n" msgstr "Fehler beim Format %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(beinhaltet keine Dateien)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "" -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "" -#: lib/query.c:251 +#: lib/query.c:236 #, fuzzy msgid "not installed " msgstr "Paket %s ist nicht installiert\n" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "" -#: lib/query.c:263 +#: lib/query.c:248 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(unbekannter Typ)" -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "Paket hat keinen Namen" -#: lib/query.c:314 +#: lib/query.c:299 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "Paket hat keinen Namen" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "kein Paket triggert %s\n" -#: lib/query.c:530 +#: lib/query.c:515 #, fuzzy msgid "no packages\n" msgstr "Anfrage an alle Pakete" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "kein Paket triggert %s\n" # , c-format -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "kein Paket triggert %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "kein Paket verlangt %s\n" # oder besser: ... listet %s auf? -ke- -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "kein Paket stellt %s bereit\n" # , c-format -#: lib/query.c:708 +#: lib/query.c:693 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/query.c:745 +#: lib/query.c:730 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "Eintrag %d konnte nicht gelesen werden\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "Paket %s ist nicht installiert\n" @@ -3519,168 +3519,168 @@ msgstr "kann Datei %s nicht msgid "cannot open %s index\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 #, fuzzy msgid "no dbpath has been set\n" msgstr "»dbpath« ist nicht gesetzt" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "Fehler beim Eintrag %s von %s" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "Fehler bei Schreiben des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "Fehler beim Eintrag %s von %s" # FIXME -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" # FIXME -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "Fehler beim Eintrag %s von %s" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "Fehler bei Schreiben des Eintrags %s nach %s" # FIXME -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "Fehler beim Suchen nach Paket %s\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # FIXME -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "Fehler bei Schreiben des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "»dbpath« ist nicht gesetzt" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "die temporäre Datenbank %s existiert schon" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, fuzzy, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "" "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" # , c-format -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" diff --git a/po/fi.po b/po/fi.po index e5cf660..ec36de1 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 1998-05-02 21:41:47-0400\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" @@ -735,7 +735,7 @@ msgstr "%s:n kirjoitus ei onnistu" msgid "Could not open %s: %s\n" msgstr "%s:n avaus epäonnistui\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "%s:n kirjoitus ei onnistu" @@ -765,7 +765,7 @@ msgstr "%s:n kirjoitus ei onnistu" msgid "Unable to write payload to %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2239,76 +2239,76 @@ msgstr "" msgid "source package contains no .spec file\n" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "skriptin ajo epäonnistui" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "%s:n kirjoitus ei onnistu" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr "" -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "pgp epäonnistui" @@ -2319,132 +2319,132 @@ msgid "incorrect format: %s\n" msgstr "virhe formaatissa: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(ei tiedostoja)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "" -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "" -#: lib/query.c:251 +#: lib/query.c:236 #, fuzzy msgid "not installed " msgstr "paketti %s ei ole asennettu\n" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "" -#: lib/query.c:263 +#: lib/query.c:248 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(tuntematon tyyppi)" -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "paketilla ei ole nimeä" -#: lib/query.c:314 +#: lib/query.c:299 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "paketilla ei ole nimeä" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "%s:n kysely ei onnistunut\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "mikään paketti ei laukaise %s:a\n" -#: lib/query.c:530 +#: lib/query.c:515 #, fuzzy msgid "no packages\n" msgstr "kysele kaikki paketit" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "mikään paketti ei laukaise %s:a\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "En voi lukea %s: %s." -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "mikään paketti ei laukaise %s:a\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "mikään pakettie ei tarvitse %s:a\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "mikään paketti ei tarjoa %s:a\n" -#: lib/query.c:708 +#: lib/query.c:693 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/query.c:745 +#: lib/query.c:730 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "tietuetta %d ei voitu lukea\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "paketti %s ei ole asennettu\n" @@ -3383,162 +3383,162 @@ msgstr "en voinut avata tiedostoa %s: " msgid "cannot open %s index\n" msgstr "virhe: en voi avata %s\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ei ole asetettu" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "virhe luettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "virhe talletettaessa tietuetta %s %s:ään" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "en voi lukea headeria %d:stä päivittäessä" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "virhe luettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "virhe luettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "virhe talletettaessa tietuetta %s %s:ään" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "virhe etsittäessä pakettia %s\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "virhe talletettaessa tietuetta %s %s:ään" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "dbpath ei ole asetettu" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "väliaikainen tietokanta %s on jo olemassa" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, fuzzy, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "en voi lisätä tietuetta %d:stä" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "en voinut avata %s: %s" diff --git a/po/fr.po b/po/fr.po index eede4de..1b18a21 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -756,7 +756,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "Could not open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -786,7 +786,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2280,76 +2280,76 @@ msgid "source package contains no .spec file\n" msgstr "" " -f + - interroge le package qui appartient " -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "La construction a chou.\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr "" -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "La construction a chou.\n" @@ -2360,132 +2360,132 @@ msgid "incorrect format: %s\n" msgstr "" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "" -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "" -#: lib/query.c:251 +#: lib/query.c:236 #, fuzzy msgid "not installed " msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "" -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:314 +#: lib/query.c:299 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:530 +#: lib/query.c:515 #, fuzzy msgid "no packages\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:559 +#: lib/query.c:544 #, fuzzy, c-format msgid "no package triggers %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "aucun package n'a t spcifi pour l'installation" @@ -3421,161 +3421,161 @@ msgstr "impossible d'ouvrir: %s\n" msgid "cannot open %s index\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" diff --git a/po/gl.po b/po/gl.po index 82b584e..0813250 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2001-01-13 22:31+0100\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -701,7 +701,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -731,7 +731,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2109,75 +2109,75 @@ msgstr "" msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 msgid "Unable to reload signature header\n" msgstr "" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr "" -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2188,128 +2188,128 @@ msgid "incorrect format: %s\n" msgstr "" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "" -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "" -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "" -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:281 +#: lib/query.c:266 msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3228,161 +3228,161 @@ msgstr "" msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/is.po b/po/is.po index 1dd5904..09a921c 100644 --- a/po/is.po +++ b/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2001-07-12 13:25+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -708,7 +708,7 @@ msgstr "Get ekki lesi msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "Get ekki ritað í pakka: %s\n" @@ -738,7 +738,7 @@ msgstr "Get ekki lesi msgid "Unable to write payload to %s: %s\n" msgstr "Get ekki ritað innihald í %s: %s\n" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "Skrifaði: %s\n" @@ -2136,76 +2136,76 @@ msgstr "" msgid "source package contains no .spec file\n" msgstr "pakkinn inniheldur enga .spec skrá\n" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "Get ekki lesið haus úr %s: %s\n" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr "" -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "gat ekki opnað %s: %s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s brást\n" @@ -2216,128 +2216,128 @@ msgid "incorrect format: %s\n" msgstr "" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "" -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "" -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "" -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:281 +#: lib/query.c:266 msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "get ekki opnað pakka gagnagrunn í\n" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Get ekki lesið %s: %s.\n" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "get ekki opnað pakka gagnagrunn í\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3259,161 +3259,161 @@ msgstr "get ekki opna msgid "cannot open %s index\n" msgstr "get ekki opnað %s index\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index 005806d..690daf4 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -751,7 +751,7 @@ msgstr " msgid "Could not open %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" @@ -781,7 +781,7 @@ msgstr " msgid "Unable to write payload to %s: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "½ñ¤­¹þ¤ßÃæ: %s\n" @@ -2275,77 +2275,77 @@ msgstr " msgid "source package contains no .spec file\n" msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - žÁ÷¼ºÇÔ - %s\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s" -#: lib/psm.c:1769 +#: lib/psm.c:1772 #, fuzzy msgid " on file " msgstr "¥Õ¥¡¥¤¥ë¾å" -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s ¼ºÇÔ" @@ -2356,131 +2356,131 @@ msgid "incorrect format: %s\n" msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "Ä̾ï" -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "ÃÖ¤­´¹¤¨¤é¤ì¤Æ¤¤¤Þ¤¹" -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "¥Í¥Ã¥È¶¦Í­" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(²¿¤Î¾õÂ֤⤢¤ê¤Þ¤»¤ó)" -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(̤ÃΤΠ%3d)" -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: lib/query.c:314 +#: lib/query.c:299 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:530 +#: lib/query.c:515 #, fuzzy msgid "no packages\n" msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "¥°¥ë¡¼¥× %s ¤Ë°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "%s ¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "%s ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤É¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â°¤·¤Æ¤¤¤Þ¤»¤ó\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n" -#: lib/query.c:745 +#: lib/query.c:730 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" @@ -3431,164 +3431,164 @@ msgstr "%s msgid "cannot open %s index\n" msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, fuzzy, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n" diff --git a/po/ko.po b/po/ko.po index ddd1b56..807098c 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.4\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2002-03-04 17:17+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: GNU Translation project \n" @@ -715,7 +715,7 @@ msgstr " msgid "Could not open %s: %s\n" msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n" @@ -745,7 +745,7 @@ msgstr "%s msgid "Unable to write payload to %s: %s\n" msgstr "%s¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "ÀÛ¼º: %s\n" @@ -2169,80 +2169,80 @@ msgstr " msgid "source package contains no .spec file\n" msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "" "%s: %s ½ºÅ©¸³Æ²¸´(scriptlet)ÀÌ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "" "%2$s-%3$s-%4$sÀÇ %1$s ½ºÅ©¸³Æ²¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, Á¾·á »óȲ %5" "$d\n" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s¿¡ %dÀÇ ÆÄÀÏÀÌ ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" "%s: %s ½ºÅ©¸³Æ²¸´(scriptlet)ÀÌ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "¼­¸í(signature) Çì´õ¸¦ ´Ù½Ã Àоî¿Ã ¼ö ¾ø½À´Ï´Ù.\n" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "¾ÆÄ«À̺긦 Ǫ´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr " ´ÙÀ½ ÆÄÀÏÀÇ " -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%2$s ÆÄÀÏÀÇ %1$s(ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, c-format msgid "%s failed: %s\n" msgstr "%s(ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n" @@ -2253,129 +2253,129 @@ msgid "incorrect format: %s\n" msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "Á¤»ó(normal) " -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "±³Ã¼µÊ(replaced) " -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "¼³Ä¡µÇ¾î ÀÖÁö ¾ÊÀ½ " -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "net °øÀ¯µÊ " -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(»óŸ¦ ¾Ë ¼ö ¾øÀ½) " -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(¾Ë ¼ö ¾ø´Â %3d) " -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "ÆÐÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "ÆÐÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "%s(À»)¸¦ ÁúÀÇÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆÐÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "%s(¿Í)°ú ÀÏÄ¡ÇÏ´Â ÆÐÅ°Áö°¡ ¾øÀ½: %s\n" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "%s ±×·ìÀº ¾î¶² ÆÐÅ°Áö¿¡µµ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "%s(À»)¸¦ »ý¼ºÇÏ´Â(trigger) ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, c-format msgid "malformed %s: %s\n" msgstr "%s(ÀÌ)°¡ À߸øµÊ: %s\n" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, c-format msgid "no package matches %s: %s\n" msgstr "%s(¿Í)°ú ÀÏÄ¡ÇÏ´Â ÆÐÅ°Áö°¡ ¾øÀ½: %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "%s(À»)¸¦ ÇÊ¿ä·Î ÇÏ´Â ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "%s(À»)¸¦ Á¦°øÇÏ´Â ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "%s ÆÄÀÏ: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "%s ÆÄÀÏÀº ¾î¶² ÆÐÅ°Áö¿¡µµ µé¾îÀÖÁö ¾Ê½À´Ï´Ù\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "ºÎÀûÇÕÇÑ ÆÐÅ°Áö ¹øÈ£: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "ÆÐÅ°Áö ±â·Ï(record) ¹øÈ£: %u\n" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "±â·Ï(record) ¹øÈ£ %u(Àº)´Â ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "%s ÆÐÅ°Áö°¡ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n" @@ -3317,166 +3317,166 @@ msgstr "db%2$d( msgid "cannot open %s index\n" msgstr "%s À妽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, fuzzy, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "rpmdb: ¼Õ»óµÈ Çì´õ #%u(ÀÌ)°¡ º¹±¸(retrieved)µÇ¾ú½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: 0x%xÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "%2$s À妽º¿¡¼­ \"%1$s\"(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, c-format msgid "removing %d entries from %s index.\n" msgstr "%2$s À妽º¿¡¼­ %1$d Ç׸ñµé(entries)À» »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "%3$s¿¡¼­ %2$s ·¹Äڵ带 »èÁ¦ÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "»õ·Î¿î ÆÐÅ°Áö¸¦ ¹èÄ¡ÇÏ´Â µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 #, fuzzy msgid "rpmdbAdd: skipping" msgstr "rpmdb: ¼Õ»óµÈ Çì´õ #%u(ÀÌ)°¡ º¹±¸(retrieved)µÇ¾ú½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%2$s À妽º¿¡ \"%1$s\"(À»)¸¦ Ãß°¡ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "%2$s À妽º¿¡ %1$d Ç׸ñµé(entries)À» Ãß°¡ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "db3¸¦ À籸ÃàÇÑ ÈÄ¿¡ %s(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "%2$s¿¡ %1$s µ¥ÀÌÅͺ£À̽º¸¦ À籸Ãà ÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "Àӽà µ¥ÀÌÅͺ£À̽º %s(ÀÌ)°¡ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, c-format msgid "creating directory %s\n" msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, c-format msgid "creating directory %s: %s\n" msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÔ: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "dbapi %d·Î ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "dbapi %d·Î »õ·Î¿î µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, fuzzy, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "µ¥ÀÌÅͺ£À̽ºÀÇ ·¹ÄÚµå ¹øÈ£ %u(ÀÌ)°¡ À߸øµÇ¾ú½À´Ï´Ù -- »ý·«ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "%u¿¡ óÀ½ºÎÅÍ ·¹Äڵ带 Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "µ¥ÀÌÅͺ£À̽º¸¦ À籸ÃàÇϴµ¥ ½ÇÆÐÇÔ: ¿øº» µ¥ÀÌÅͺ£À̽º´Â ±×´ë·Î À¯ÁöµË´Ï´Ù\n" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ »õ·Î¿î µ¥ÀÌÅͺ£À̽º·Î ±³Ã¼Çϴµ¥ ½ÇÆÐÇß½À´Ï´Ù!\n" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "º¹±¸Çϱâ À§ÇØ %2$sÀÇ ÆÄÀÏÀ» %1$sÀÇ ÆÄÀÏ·Î ±³Ã¼ÇÕ´Ï´Ù" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "%s µð·ºÅ丮¸¦ »èÁ¦ÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n" diff --git a/po/no.po b/po/no.po index ae45e93..56613f3 100644 --- a/po/no.po +++ b/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2001-06-27 12:24+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -719,7 +719,7 @@ msgstr "Kunne ikke msgid "Could not open %s: %s\n" msgstr "Kunne ikke åpne %s: %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunne ikke skrive pakke: %s\n" @@ -749,7 +749,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke skrive \"payload\" til %s: %s\n" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" @@ -2162,76 +2162,76 @@ msgstr "kildepakke forventet, bin msgid "source package contains no .spec file\n" msgstr "kildepakke inneholder ikke en .spec-fil\n" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "Kunne ikke åpne spec fil %s: %s\n" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr "" -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "klarte ikke å åpne %s: %s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s feilet\n" @@ -2242,129 +2242,129 @@ msgid "incorrect format: %s\n" msgstr "ukorrekt format: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(inneholder ingen filer)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "normal " -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "erstattet " -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "ikke installert" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "delt via nett " -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(ingen tilstand)" -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(ukjent %3d) " -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "pakken har verken fileier eller id-lister\n" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "pakken har verken fileier eller id-lister\n" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "feil under åpning av %s: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "spørring på %s feilet\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "kildepakker i gammelt format kan ikke spørres\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "ingen pakke utløser %s\n" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "ingen pakker\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "gruppe %s inneholder ingen pakker\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "ingen pakke utløser %s\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "kunne ikke opprette %s: %s\n" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "ingen pakke utløser %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "ingen pakke krever %s\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "ingen pakke gir %s\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "filen %s eies ikke av noen pakke\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "ugyldig pakkenummer: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "pakke %s er ikke installert\n" @@ -3292,161 +3292,161 @@ msgstr "kan ikke msgid "cannot open %s index\n" msgstr "kan ikke åpne %s indeks\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "feil(%d) under lagring av post %s til %s\n" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "feil(%d) under lagring av post %s til %s\n" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "feil(%d) under fjerning av post %s fra %s\n" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "feil(%d) under lagring av post %s til %s\n" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "feil(%d) under fjerning av post %s fra %s\n" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "feil(%d) under lagring av post %s til %s\n" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index d1875d8..67464ca 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Pawe³ Dziekoñski \n" "Language-Team: Polish \n" @@ -742,7 +742,7 @@ msgstr "Nie mo msgid "Could not open %s: %s\n" msgstr "Nie mo¿na otworzyæ %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nie mo¿na zapisaæ pakietu: %s" @@ -772,7 +772,7 @@ msgstr "Nie mo msgid "Unable to write payload to %s: %s\n" msgstr "Nie mo¿na zapisaæ pakietu: %s" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" @@ -2240,76 +2240,76 @@ msgstr "spodziewany pakiet msgid "source package contains no .spec file\n" msgstr "pakiet ¼ród³owy nie zawiera pliku .spec" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "%s pomijany - transmisja %s nie powiod³a siê\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "wykonanie skryptu nie powiod³o siê" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "pakiet: %s-%s-%s test plików = %d\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "Nie mo¿na odczytaæ ikony: %s" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "grupa %s nie istnieje - u¿yto grupy root" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr " na pliku " -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nie mo¿na otworzyæ %s: %s" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s nie powiod³o siê" @@ -2320,131 +2320,131 @@ msgid "incorrect format: %s\n" msgstr "b³±d w formacie: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(nie zawiera plików)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "normalny " -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "zast±piony " -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "niezainstalowany" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "udostêpniony w sieci" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(brak statusu)" -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(nieznany %3d)" -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id" -#: lib/query.c:314 +#: lib/query.c:299 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "otwarcie %s nie powiod³o siê: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "odpytywanie %s nie powiod³o siê\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "¿aden pakiet nie zahacza %s\n" -#: lib/query.c:530 +#: lib/query.c:515 #, fuzzy msgid "no packages\n" msgstr "znaleziono %d pakietów\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupa %s nie zawiera ¿adnych pakietów\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "¿aden pakiet nie zahacza %s\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Odczytanie %s nie powiod³o siê: %s." -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "¿aden pakiet nie zahacza %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "¿aden pakiet nie wymaga %s\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "¿aden pakiet nie udostêpnia %s\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "plik %s: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "b³êdny numer pakietu: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "numer rekordu pakietu: %d\n" -#: lib/query.c:745 +#: lib/query.c:730 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "nie mo¿na odczytaæ rekordu %d\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "pakiet %s nie jest zainstalowany\n" @@ -3384,163 +3384,163 @@ msgstr "nie mo msgid "cannot open %s index\n" msgstr "nie mo¿na otworzyæ %s\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 #, fuzzy msgid "no dbpath has been set\n" msgstr "¶cie¿ka bazy danych nie zosta³a podana" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "b³±d pobierania rekordu %s z %s" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "b³±d zapisywania rekordu %s do %s" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "b³±d pobierania rekordu %s z %s" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "usuwanie indeksu grupy\n" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "usuwanie indeksu nazw\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "b³±d pobierania rekordu %s z %s" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "b³±d zapisywania rekordu %s do %s" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "b³±d usuwania rekordu %s z %s" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "b³±d szukania pakietu %s\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "b³±d zapisywania rekordu %s do %s" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "¶cie¿ka bazy danych nie zosta³a podana" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "odbudowywujê bazê danych w rootdir %s\n" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "tymczasowa baza danych %s ju¿ istnieje" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otwieranie starej bazy danych\n" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otwieranie nowej bazy danych\n" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, fuzzy, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 #, 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" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "zamiana starej bazy na now± nie powiod³a siê!\n" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, 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" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n" diff --git a/po/pt.po b/po/pt.po index 1a66b0b..5db2c63 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2002-02-14 10:51+0000\n" "Last-Translator: José Nuno Coelho Sanarra Pires \n" "Language-Team: pt pertence" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "no foi passado pacote para instalao" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" # , c-format -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "No consegui abrir: %s\n" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "Construo falhou.\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr "" # , c-format -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "Construo falhou.\n" @@ -2449,133 +2449,133 @@ msgid "incorrect format: %s\n" msgstr "" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "" -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "" -#: lib/query.c:251 +#: lib/query.c:236 #, fuzzy msgid "not installed " msgstr "no foi passado pacote para instalao" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "" -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "no foi passado pacote para instalao" -#: lib/query.c:314 +#: lib/query.c:299 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "no foi passado pacote para instalao" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "no foram passados pacotes para assinatura" -#: lib/query.c:530 +#: lib/query.c:515 #, fuzzy msgid "no packages\n" msgstr "pesquise todos os pacotes" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:559 +#: lib/query.c:544 #, fuzzy, c-format msgid "no package triggers %s\n" msgstr "no foram passados pacotes para assinatura" # , c-format -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "no foram passados pacotes para assinatura" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "no foi passado pacote para instalao" @@ -3580,162 +3580,162 @@ msgstr "No consegui abrir: %s\n" msgid "cannot open %s index\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" # , c-format -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "no foi passado pacote para desinstalao" # , c-format -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "no foi passado pacote para instalao" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, 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" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, 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" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" @@ -3748,13 +3748,13 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "RPM verso %s\n" # , c-format -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "No consegui abrir: %s\n" diff --git a/po/ro.po b/po/ro.po index 395ecf4..e318ed8 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -701,7 +701,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -731,7 +731,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2109,75 +2109,75 @@ msgstr "" msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 msgid "Unable to reload signature header\n" msgstr "" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr "" -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2188,128 +2188,128 @@ msgid "incorrect format: %s\n" msgstr "" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "" -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "" -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "" -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:281 +#: lib/query.c:266 msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3228,161 +3228,161 @@ msgstr "" msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index 3ca401f..9403b95 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -707,7 +707,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2115,75 +2115,75 @@ msgstr "" msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 msgid "Unable to reload signature header\n" msgstr "" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr "" -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2194,128 +2194,128 @@ msgid "incorrect format: %s\n" msgstr "" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "" -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "" -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "" -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:281 +#: lib/query.c:266 msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3234,161 +3234,161 @@ msgstr "" msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index 90a4c5d3..60c0c8a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2002-08-27 13:36-0400\n" "Last-Translator: Eugene Kanter, \n" "Language-Team: Black Cat Linux Team \n" @@ -724,7 +724,7 @@ msgstr " msgid "Could not open %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n" @@ -754,7 +754,7 @@ msgstr " msgid "Unable to write payload to %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "úÁÐÉÓÁÎ: %s\n" @@ -2157,75 +2157,75 @@ msgstr " msgid "source package contains no .spec file\n" msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "%s: waitpid(%d) rc %d status %x\n" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "%s: %s(%s-%s-%s) ÐÒÏÐÕÓËÁÅÔÓÑ ÌÉÛÎÉÊ \"%s\".\n" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "%s: %s(%s-%s-%s) %sÚÁÐÕÓË ÓÉÎÈÒÏÎÎÏÇÏ ÓÃÅÎÁÒÉÑ\n" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ, waitpid(%d) rc %d: %s\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, ÒÅÚÕÌØÔÁÔ ÐÒÏ×ÅÒËÉ: %d\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "%s: %s ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ (%d), ÐÒÏÐÕÓËÁÅÔÓÑ %s\n" -#: lib/psm.c:1665 +#: lib/psm.c:1668 msgid "Unable to reload signature header\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ÐÏÄÐÉÓÉ\n" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr " ÎÁ ÆÁÊÌÅ " -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, c-format msgid "%s failed: %s\n" msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n" @@ -2236,128 +2236,128 @@ msgid "incorrect format: %s\n" msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "ÎÏÒÍÁÌØÎÙÊ " -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "ÚÁÍÅÎÅÎÎÙÊ " -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎ " -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "ÓÅÔÅ×ÏÊ " -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(ÓÏÓÔ. ÎÅÔ) " -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(ÎÅÉÚ×. %3d) " -#: lib/query.c:281 +#: lib/query.c:266 msgid "package has not file owner/group lists\n" msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ×ÌÁÄÅÌØÃÅ×/ÇÒÕÐÐ-×ÌÁÄÅÌØÃÅ× ÆÁÊÌÏ×\n" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "%s: ÎÅ ÐÁËÅÔ (ÉÌÉ ÍÁÎÉÆÅÓÔ ÐÁËÅÔÁ) rpm : %s\n" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "ÎÅÔ ÐÁËÅÔÏ×\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, c-format msgid "malformed %s: %s\n" msgstr "ÏÛÉÂËÁ ÆÏÒÍÁÔÁ %s: %s.\n" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, c-format msgid "no package matches %s: %s\n" msgstr "ÎÉ ÏÄÉÎ ÐÁËÅÔ ÎÅ ÐÏÄÈÏÄÉÔ Ë %s: %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "ÆÁÊÌ %s: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "ÎÏÍÅÒ ÚÁÐÉÓÉ ÐÁËÅÔÁ: %u\n" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n" @@ -3284,165 +3284,165 @@ msgstr " msgid "cannot open %s index\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÉÎÄÅËÓ %s\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 #, fuzzy msgid "miFreeHeader: skipping" msgstr "rpmdb: ÐÒÏÐÕÓËÁÅÔÓÑ" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "ÏÛÉÂËÁ (%d) ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ #%d × %s\n" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 #, fuzzy msgid "rpmdbNextIterator: skipping" msgstr "rpmdb: ÐÒÏÐÕÓËÁÅÔÓÑ" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "rpmdb: ÐÏÌÕÞÅÎ ÐÏ×ÒÅÖÄÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË #%u -- ÐÒÏÐÕÓËÁÅÔÓÑ.\n" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÚÁÇÏÌÏ×ÏË × 0x%x\n" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "ÏÛÉÂËÁ(%d) ÐÏÄÇÏÔÏ×ËÉ ÚÁÐÉÓÉ ÚÁÇÏÌÏ×ËÁ #%d ÄÌÑ ÕÄÁÌÅÎÉÑ %s\n" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "ÕÄÁÌÑÅÔÓÑ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s.\n" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, c-format msgid "removing %d entries from %s index.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s.\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ \"%s\" ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s\n" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "ÏÛÉÂËÁ(%d) ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ \"%s\" × %s\n" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "ÏÛÉÂËÁ(%d) ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s\n" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "ÏÛÉÂËÁ(%d) ÒÅÚÅÒ×ÉÒÏ×ÁÎÉÑ ÐÁÍÑÔÉ ÄÌÑ ÏÂÒÁÚÁ ÎÏ×ÏÇÏ ÐÁËÅÔÁ\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 #, fuzzy msgid "rpmdbAdd: skipping" msgstr "rpmdb: ÐÒÏÐÕÓËÁÅÔÓÑ" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ \"%s\" × ÉÎÄÅËÓ %s.\n" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ × ÉÎÄÅËÓ %s\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %s ÐÏÓÌÅ ÕÓÐÅÛÎÏÇÏ ÚÁ×ÅÒÛÅÎÉÑ ÐÅÒÅÉÎÄÅËÁÃÉÉ ÂÁÚÙ × db3.\n" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÅÔÓÑ ÂÁÚÁ ÄÁÎÎÙÈ %s × %s\n" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ\n" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, c-format msgid "creating directory %s\n" msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, c-format msgid "creating directory %s: %s\n" msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÎÏ×ÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "ÚÁÇÏÌÏ×ÏË ÎÏÍÅÒ %u × ÂÁÚÅ ÄÁÎÎÙÈ ÎÅ×ÅÒÎÙÊ -- ÐÒÏÐÕÓËÁÅÔÓÑ.\n" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %u)\n" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÍÅÎÉÔØ ÓÔÁÒÕÀ ÂÁÚÕ ÄÁÎÎÙÈ ÎÁ ÎÏ×ÕÀ!\n" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "ÆÁÊÌÙ × %s ÚÁÍÅÎÑÀÔÓÑ ÆÁÊÌÁÍÉ ÉÚ %s ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "ÕÄÁÌÑÅÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n" diff --git a/po/sk.po b/po/sk.po index f8b6905..840ab8e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -739,7 +739,7 @@ msgstr "Nie je mo msgid "Could not open %s: %s\n" msgstr "Otvorenie %s zlyhalo\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nie je mo¾né zapísa» balík: %s" @@ -769,7 +769,7 @@ msgstr "Nie je mo msgid "Unable to write payload to %s: %s\n" msgstr "Nie je mo¾né zapísa» balík: %s" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "Zapísané: %s\n" @@ -2238,76 +2238,76 @@ msgstr "o msgid "source package contains no .spec file\n" msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "%s vynechané - prenos zlyhal - %s\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "vykonanie skriptu zlyhalo" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "balík: %s-%s-%s test súborov = %d\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "Nie je mo¾né preèíta» ikonu: %s" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s neexistuje - pou¾ije sa root" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozbalenie archívu zlyhalo%s%s: %s" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr " pre súbor " -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nepodarilo sa otvori» %s: %s" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s zlyhalo" @@ -2318,131 +2318,131 @@ msgid "incorrect format: %s\n" msgstr "chyba formátu: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(neobsahuje ¾iadne súbory)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "normálny " -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "nahradený " -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "nein¹talovaný " -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "zdieµaný " -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(¾iadny stav) " -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(neznámy %d) " -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií" -#: lib/query.c:314 +#: lib/query.c:299 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "otázka na %s zlyhala\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "nie je mo¾né pýta» sa zdrojových balíkov v starom formáte\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "¾iadny z balíkov nespú¹»a %s\n" -#: lib/query.c:530 +#: lib/query.c:515 #, fuzzy msgid "no packages\n" msgstr "nájdených %d balíkov\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s neobsahuje ¾iadne balíky\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "¾iadny z balíkov nespú¹»a %s\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Nie je mo¾né preèíta» %s: %s." -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "¾iadny z balíkov nespú¹»a %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "¾iadny z balíkov nevy¾aduje %s\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "¾iadny z balíkov neposkytuje %s\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "súbor %s: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "chybné èíslo balíku: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "po¾aduje sa záznam èíslo %d\n" -#: lib/query.c:745 +#: lib/query.c:730 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "záznam %d nie je mo¾né preèíta»\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "balík %s nie je nain¹talovaný\n" @@ -3380,163 +3380,163 @@ msgstr "nie je mo msgid "cannot open %s index\n" msgstr "nie je mo¾né otvori» %s\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 #, fuzzy msgid "no dbpath has been set\n" msgstr "nebola nastavená ¾iadna dbpath" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "chyba pri naèítaní záznamu %s z %s" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "chyba pri zápise záznamu %s do %s" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "chyba pri naèítaní záznamu %s z %s" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuje sa index skupín\n" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraòuje sa index názvov\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "chyba pri naèítaní záznamu %s z %s" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "chyba pri zápise záznamu %s do %s" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "chyba pri odstraòovaní záznamu %s z %s" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "chyba pri hµadaní balíka %s\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "chyba pri zápise záznamu %s do %s" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "nebola nastavená ¾iadna dbpath" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu sa vytvára databáza v adresári %s\n" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "doèasná databáza %s u¾ existuje" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otvára sa stará databáza\n" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otvára sa nová databáza\n" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, fuzzy, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "nie je mo¾né prida» záznam pôvodne na %d" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "nepodarilo sa nahradi» starú databázu novou!\n" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, 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" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nepodarilo sa odstráni» adresár %s: %s\n" diff --git a/po/sl.po b/po/sl.po index f880bf8..3bd1268 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.371 2003/01/29 19:52:36 jbj Exp $ +# $Id: sl.po,v 1.372 2003/01/31 22:55:54 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga \n" "Language-Team: Slovenian \n" @@ -738,7 +738,7 @@ msgstr "Ikone %s ni mo msgid "Could not open %s: %s\n" msgstr "Ni mo¾no odpreti %s: %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Ni mo¾no zapisati paketa: %s" @@ -768,7 +768,7 @@ msgstr "Ikone %s ni mo msgid "Unable to write payload to %s: %s\n" msgstr "Ni mo¾no zapisati paketa %s: %s" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" @@ -2238,76 +2238,76 @@ msgstr "pri msgid "source package contains no .spec file\n" msgstr "izvorni paket ne vsebuje datoteke .spec" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "skript se ni uspe¹no izvedel" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "paket: %s-%s-%s datoteke test = %d\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "Ikone %s ni mo¾no prebrati: %s" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "uporabnik %s ne obstaja - uporabljam root" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s ne obstaja - uporabljam root" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr " za datoteko " -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "neuspe¹no odpiranje %s: %s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s neuspe¹en" @@ -2318,131 +2318,131 @@ msgid "incorrect format: %s\n" msgstr "napaka v obliki: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(ne vsebuje datotek)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "normalno " -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "nadome¹èeno " -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "ni name¹èeno " -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "omre¾ni " -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(brez stanja) " -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(neznano %3d) " -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id" -#: lib/query.c:314 +#: lib/query.c:299 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspe¹no: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "poizvedba po %s je bila neuspe¹na\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "noben paket ne pro¾i %s\n" -#: lib/query.c:530 +#: lib/query.c:515 #, fuzzy msgid "no packages\n" msgstr "ni paketov\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s ne vsebuje nobenega paketa\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "noben paket ne pro¾i %s\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Neuspe¹no branje %s: %s." -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "noben paket ne pro¾i %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "noben paket ne potrebuje %s\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "noben paket ne nudi %s\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "datoteka %s: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "datoteka %s ni del nobenega paketa\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "neveljavna ¹tevilka paketa: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "¹tevilka zapisa paketa: %d\n" -#: lib/query.c:745 +#: lib/query.c:730 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "zapisa %d ni mo¾no prebrati\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "paket %s ni name¹èen\n" @@ -3386,165 +3386,165 @@ msgstr "ni mo msgid "cannot open %s index\n" msgstr "ni mo¾no odpreti kazala %s:" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ni nastavljena" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "napaka(%d) pri pisanju zapisa %s v %s" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ni mo¾no prebrati glave pri 0x%x" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstranjevanje \"%s\" iz kazala %s.\n" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstranjevanje %d vnosov iz kazala %s\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "napaka(%d) pri pisanju zapisa %s v %s" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "napaka(%d) pri brisanju zapisa %s iz %s" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "napaka(%d) pri iskanju paketa %s\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "dodajanje \"%s\" v kazalo %s.\n" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "dodajanje %d vnosov v kazalo %s.\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "napaka(%d) pri pisanju zapisa %s v %s" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "dbpath ni nastavljena" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "zaèasna podatkovna zbirka %s ¾e obstaja" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ustvarjanje imenika: %s\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "ustvarjanje imenika: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "odpiranje stare podatkovne zbirke\n" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "odpiramo nove podatkovne zbirke z dbapi %d\n" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, fuzzy, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "zapis ¹t. %d v zbirki je po¹kodovan -- preskoèeno." -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "zapisa ni mo¾no dodati na %d" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ponovna izgradnja podatkovne zbirke je bila neuspe¹na; stara ostaja na\n" "istem mestu\n" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "zamenjava stare podatkovne zbirke z novo je bila neuspe¹na!\n" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "poskus povrnitve z nadomestitvijo datotek v %s z datotekami v %s" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "odstranjevanje imenika: %s\n" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspe¹na odstranitev imenika %s: %s\n" diff --git a/po/sr.po b/po/sr.po index 32d8f2e..2cefec0 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" @@ -728,7 +728,7 @@ msgstr "Ne mogu da upi msgid "Could not open %s: %s\n" msgstr "neuspelo otvaranje %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Ne mogu da upi¹em %s" @@ -758,7 +758,7 @@ msgstr "Ne mogu da upi msgid "Unable to write payload to %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2230,76 +2230,76 @@ msgstr "" msgid "source package contains no .spec file\n" msgstr "upit nad paketom koji ima " -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "neuspelo izvr¹avanje skripta" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "Ne mogu da upi¹em %s" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "grupa %s ne sadr¾i nijedan paket\n" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr "" -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "PGP omanuo" @@ -2310,132 +2310,132 @@ msgid "incorrect format: %s\n" msgstr "gre¹ka u formatu: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(nema datoteka)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "" -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "" -#: lib/query.c:251 +#: lib/query.c:236 #, fuzzy msgid "not installed " msgstr "paket %s nije instaliran\n" -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "" -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "" -#: lib/query.c:263 +#: lib/query.c:248 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(nepoznat tip)" -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "paket nema imena" -#: lib/query.c:314 +#: lib/query.c:299 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "paket nema imena" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "upit nad %s neuspeo\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "Upit se ne mo¾e izvesti nad izvorni paketima u starom formatu\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "nijedan paket ne aktivira %s\n" -#: lib/query.c:530 +#: lib/query.c:515 #, fuzzy msgid "no packages\n" msgstr "upit nad svim paketima" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupa %s ne sadr¾i nijedan paket\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "nijedan paket ne aktivira %s\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Neuspelo èitanje %s: %s." -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "nijedan paket ne aktivira %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "nijedan paket ne zahteva %s\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "nijedan paket ne obezbeðuje %s\n" -#: lib/query.c:708 +#: lib/query.c:693 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/query.c:745 +#: lib/query.c:730 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "ne mogu da proèitam slog %d\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "paket %s nije instaliran\n" @@ -3374,162 +3374,162 @@ msgstr "Ne mogu da otvorim datoteku %s: " msgid "cannot open %s index\n" msgstr "gre¹ka: ne mogu da otvorim %s\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath nije odreðen" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "gre¹ka kod uzimanja sloga %s iz %s" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "gre¹ka zapisivanja sloga %s u %s" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "ne mogu da proèitam zaglavlje na %d za proveru" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "gre¹ka kod uzimanja sloga %s iz %s" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "gre¹ka kod uzimanja sloga %s iz %s" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "gre¹ka zapisivanja sloga %s u %s" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "gre¹ka kod potrage za paketom %s\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "gre¹ka zapisivanja sloga %s u %s" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "dbpath nije odreðen" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "privremena baza podataka %s veæ postoji" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, fuzzy, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "ne mogu da dodam slog originalno na %d" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspelo otvaranje %s: %s" diff --git a/po/sv.po b/po/sv.po index 32119fe..371de7d 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.2\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2003-01-27 17:43+0100\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -716,7 +716,7 @@ msgstr "Kan inte l msgid "Could not open %s: %s\n" msgstr "Kunde inte öppna %s: %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunde inte skriva paket: %s\n" @@ -746,7 +746,7 @@ msgstr "Kan inte l msgid "Unable to write payload to %s: %s\n" msgstr "Kan inte skriva last till %s: %s\n" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" @@ -2139,77 +2139,77 @@ msgstr "k msgid "source package contains no .spec file\n" msgstr "källpaket innehåller ingen .spec-fil\n" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "%s: waitpid(%d) rk %d status %x\n" # Avslutande %s blir sökvägen till ldconfig. Det är en körning av # programmet man hoppar över. Alltså: överflödig körning. -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "%s: %s(%s-%s-%s) hoppar över överflödig \"%s\".\n" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "%s: %s(%s-%s-%s) start %ssynkront skript\n" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "%s(%s-%s-%s) skript misslyckades, waitpid(%d) rk %d: %s\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "%s(%s-%s-%s) skript misslyckades, slutstatus %d\n" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s har %d filer, test = %d\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n" -#: lib/psm.c:1665 +#: lib/psm.c:1668 msgid "Unable to reload signature header\n" msgstr "Kan inte läsa om signaturhuvud\n" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "användare %s finns inte - använder root\n" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "grupp %s finns inte - använder root\n" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "uppackning av arkiv misslyckades%s%s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr " vid fil " -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s misslyckades på fil %s: %s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, c-format msgid "%s failed: %s\n" msgstr "%s misslyckades: %s\n" @@ -2220,128 +2220,128 @@ msgid "incorrect format: %s\n" msgstr "fel format: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(innehåller inga filer)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "normal " -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "ersatt " -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "oinstallerat " -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "nätdelad " -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "fel färg " -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(ej tillstnd) " -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(okänd %3d) " -#: lib/query.c:281 +#: lib/query.c:266 msgid "package has not file owner/group lists\n" msgstr "paketet har inte filägare-/-grupplistor\n" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "paketet har varken filägare eller id-listor\n" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "misslyckades med att öppna %s: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "fråga av %s misslyckades\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "källpaket i gammalt format går inte att fråga om\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "%s: inte ett rpm-paket (eller paketspecifikation): %s\n" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "inga paket\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupp %s innehåller inga paket\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "inga paketutlösare %s\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, c-format msgid "malformed %s: %s\n" msgstr "felformaterad %s: %s\n" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, c-format msgid "no package matches %s: %s\n" msgstr "inga paket matchar %s: %s\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "inget paket behöver %s\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "inget paket tillhandahåller %s\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "filen %s tillhör inget paket\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "felaktigt paketnummer: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "paketpost nummer: %u\n" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "post %u kunde inte läsas\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "paket %s är inte installerat\n" @@ -3265,161 +3265,161 @@ msgstr "kan inte msgid "cannot open %s index\n" msgstr "kan inte öppna %s-indexet\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "ingen dbpath har satts\n" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "miFreeHeader: hoppar över" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "fel(%d) när post nr. %d sparades i %s\n" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "rpmdbNextIterator: hoppar över" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "rpmdb: skadat huvud nr. %u hämtat -- hoppar över.\n" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan inte läsa huvud vid 0x%x\n" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "fel(%d) när huvudpost nr. %d för %s skulle tas bort\n" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "tar bort \"%s\" från %s-indexet.\n" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, c-format msgid "removing %d entries from %s index.\n" msgstr "tar bort %d poster från %s-indexet.\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "fel(%d) när \"%s\"-poster från %s-indexet sattes\n" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "fel(%d) när post \"%s\" sparades i %s\n" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "fel(%d) när post \"%s\" togs bort från %s\n" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "fel(%d) vid allokering av ny paketinstans\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 msgid "rpmdbAdd: skipping" msgstr "rpmdbAdd: hoppar över" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "lägger till \"%s\" till %s-indexet.\n" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "lägger till %d poster till %s-indexet.\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "fel(%d) när post %s sparades i %s\n" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "tar bort %s efter lyckad db3-ombyggnad.\n" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "ingen dbpath har satts" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "bygger om databas %s till %s\n" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "tillfällig databas %s existerar redan\n" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, c-format msgid "creating directory %s\n" msgstr "skapar katalog %s\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, c-format msgid "creating directory %s: %s\n" msgstr "skapar katalog %s: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "öppnar gammal databas med dbapi %d\n" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "öppnar ny databas med dbapi %d\n" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "huvud nr. %u i databasen är felaktigt -- hoppar över.\n" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "kan inte lägga till post ursprungligen vid %u\n" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "kunde inte ersätta gammal databas med ny databas!\n" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, 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" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "tar bort katalog %s\n" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunde inte ta bort katalogen %s: %s\n" diff --git a/po/tr.po b/po/tr.po index 921bca9..ee37fc6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-01-29 14:03-0500\n" +"POT-Creation-Date: 2003-01-31 17:51-0500\n" "PO-Revision-Date: 2001-07-05 08:02+300\n" "Last-Translator: Nilgun Belma Buguner \n" "Language-Team: Turkish \n" @@ -730,7 +730,7 @@ msgstr "%s'den ba msgid "Could not open %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: build/pack.c:632 lib/psm.c:1653 +#: build/pack.c:632 lib/psm.c:1656 #, c-format msgid "Unable to write package: %s\n" msgstr "paket yazýlamadý: %s\n" @@ -760,7 +760,7 @@ msgstr "%s'den payload okunamad msgid "Unable to write payload to %s: %s\n" msgstr "%s'e payload yazýlamadý: %s\n" -#: build/pack.c:725 lib/psm.c:1943 +#: build/pack.c:725 lib/psm.c:1946 #, c-format msgid "Wrote: %s\n" msgstr "Yazýldý: %s\n" @@ -2202,76 +2202,76 @@ msgstr "kaynak paketi gerekirken msgid "source package contains no .spec file\n" msgstr "kaynak paketi .spec dosyasý içermiyor\n" -#: lib/psm.c:727 +#: lib/psm.c:730 #, c-format msgid "%s: waitpid(%d) rc %d status %x\n" msgstr "" -#: lib/psm.c:810 +#: lib/psm.c:813 #, c-format msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n" msgstr "" -#: lib/psm.c:818 +#: lib/psm.c:821 #, c-format msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n" msgstr "" -#: lib/psm.c:981 +#: lib/psm.c:984 #, c-format msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n" msgstr "" -#: lib/psm.c:1004 +#: lib/psm.c:1007 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n" msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n" -#: lib/psm.c:1010 +#: lib/psm.c:1013 #, fuzzy, c-format msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n" msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, çýkýþta durum %d\n" -#: lib/psm.c:1417 +#: lib/psm.c:1420 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n" -#: lib/psm.c:1556 +#: lib/psm.c:1559 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n" -#: lib/psm.c:1665 +#: lib/psm.c:1668 #, fuzzy msgid "Unable to reload signature header\n" msgstr "%s'den baþlýk okunamadý: %s\n" -#: lib/psm.c:1711 +#: lib/psm.c:1714 #, c-format msgid "user %s does not exist - using root\n" msgstr "kullanýcý %s yok - root kullanýlacak\n" -#: lib/psm.c:1720 +#: lib/psm.c:1723 #, c-format msgid "group %s does not exist - using root\n" msgstr "grup %s yok - root kullanýlacak\n" -#: lib/psm.c:1768 +#: lib/psm.c:1771 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1772 msgid " on file " msgstr " dosyada " -#: lib/psm.c:1951 +#: lib/psm.c:1954 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: lib/psm.c:1954 +#: lib/psm.c:1957 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s baþarýsýz\n" @@ -2282,129 +2282,129 @@ msgid "incorrect format: %s\n" msgstr "biçem yanlýþ: %s\n" #. @-boundswrite@ -#: lib/query.c:180 +#: lib/query.c:165 msgid "(contains no files)" msgstr "(hiç dosya içermiyor)" -#: lib/query.c:245 +#: lib/query.c:230 msgid "normal " msgstr "normal " -#: lib/query.c:248 +#: lib/query.c:233 msgid "replaced " msgstr "yerine " -#: lib/query.c:251 +#: lib/query.c:236 msgid "not installed " msgstr "yüklenmedi " -#: lib/query.c:254 +#: lib/query.c:239 msgid "net shared " msgstr "að paylaþýmlý " -#: lib/query.c:257 +#: lib/query.c:242 msgid "wrong color " msgstr "" -#: lib/query.c:260 +#: lib/query.c:245 msgid "(no state) " msgstr "(durumsuz) " -#: lib/query.c:263 +#: lib/query.c:248 #, c-format msgid "(unknown %3d) " msgstr "(bilinmeyen %3d)" -#: lib/query.c:281 +#: lib/query.c:266 #, fuzzy msgid "package has not file owner/group lists\n" msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n" -#: lib/query.c:314 +#: lib/query.c:299 msgid "package has neither file owner or id lists\n" msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n" -#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462 +#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 #: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" msgstr "%s açýlamadý: %s\n" -#: lib/query.c:458 +#: lib/query.c:443 #, c-format msgid "query of %s failed\n" msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n" -#: lib/query.c:468 +#: lib/query.c:453 msgid "old format source packages cannot be queried\n" msgstr "eski biçem kaynak paketleri sorgulanamaz\n" -#: lib/query.c:501 lib/rpminstall.c:606 +#: lib/query.c:486 lib/rpminstall.c:606 #, fuzzy, c-format msgid "%s: not an rpm package (or package manifest): %s\n" msgstr "%s tetikleyen paket yok\n" -#: lib/query.c:530 +#: lib/query.c:515 msgid "no packages\n" msgstr "paket yok\n" -#: lib/query.c:550 +#: lib/query.c:535 #, c-format msgid "group %s does not contain any packages\n" msgstr "%s grubu hiç paket içermiyor\n" -#: lib/query.c:559 +#: lib/query.c:544 #, c-format msgid "no package triggers %s\n" msgstr "%s tetikleyen paket yok\n" -#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647 +#: lib/query.c:557 lib/query.c:578 lib/query.c:598 lib/query.c:632 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "%s okunamadý: %s.\n" -#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652 +#: lib/query.c:567 lib/query.c:584 lib/query.c:608 lib/query.c:637 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "%s tetikleyen paket yok\n" -#: lib/query.c:662 +#: lib/query.c:647 #, c-format msgid "no package requires %s\n" msgstr "%s gerektiren paket yok\n" -#: lib/query.c:673 +#: lib/query.c:658 #, c-format msgid "no package provides %s\n" msgstr "%s saðlayan paket yok\n" -#: lib/query.c:708 +#: lib/query.c:693 #, c-format msgid "file %s: %s\n" msgstr "dosya %s: %s\n" -#: lib/query.c:712 +#: lib/query.c:697 #, c-format msgid "file %s is not owned by any package\n" msgstr "%s dosyasý, hiç bir pakete ait deðil\n" -#: lib/query.c:737 +#: lib/query.c:722 #, c-format msgid "invalid package number: %s\n" msgstr "geçersiz paket numarasý: %s\n" -#: lib/query.c:740 +#: lib/query.c:725 #, c-format msgid "package record number: %u\n" msgstr "paket kayýt numarasý: %u\n" -#: lib/query.c:745 +#: lib/query.c:730 #, c-format msgid "record %u could not be read\n" msgstr "%u. kayýt okunamadý\n" -#: lib/query.c:755 lib/rpminstall.c:777 +#: lib/query.c:740 lib/rpminstall.c:777 #, c-format msgid "package %s is not installed\n" msgstr "%s paketi kurulu deðil\n" @@ -3337,164 +3337,164 @@ msgstr "%s indeksi db%d - %s (%d) kullanarak a msgid "cannot open %s index\n" msgstr "%s indeksi açýlamadý\n" -#: rpmdb/rpmdb.c:945 +#: rpmdb/rpmdb.c:949 msgid "no dbpath has been set\n" msgstr "belirtilmiþ bir dbpath deðeri yok\n" -#: rpmdb/rpmdb.c:1219 rpmdb/rpmdb.c:1348 rpmdb/rpmdb.c:1399 rpmdb/rpmdb.c:2372 -#: rpmdb/rpmdb.c:2483 rpmdb/rpmdb.c:3212 +#: rpmdb/rpmdb.c:1223 rpmdb/rpmdb.c:1352 rpmdb/rpmdb.c:1403 rpmdb/rpmdb.c:2376 +#: rpmdb/rpmdb.c:2487 rpmdb/rpmdb.c:3216 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n" -#: rpmdb/rpmdb.c:1635 +#: rpmdb/rpmdb.c:1639 msgid "miFreeHeader: skipping" msgstr "" -#: rpmdb/rpmdb.c:1645 +#: rpmdb/rpmdb.c:1649 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n" -#: rpmdb/rpmdb.c:2265 +#: rpmdb/rpmdb.c:2269 msgid "rpmdbNextIterator: skipping" msgstr "" -#: rpmdb/rpmdb.c:2292 +#: rpmdb/rpmdb.c:2296 #, fuzzy, c-format msgid "rpmdb: damaged header #%u retrieved -- skipping.\n" msgstr "rpmdb: bozuk baþlýk örneði #%u alýndý, atlanýyor.\n" -#: rpmdb/rpmdb.c:2571 +#: rpmdb/rpmdb.c:2575 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: 0x%x de baþlýk okunamadý\n" -#: rpmdb/rpmdb.c:2634 +#: rpmdb/rpmdb.c:2638 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n" -#: rpmdb/rpmdb.c:2749 +#: rpmdb/rpmdb.c:2753 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "\"%s\" %s indeksinden siliniyor.\n" -#: rpmdb/rpmdb.c:2753 +#: rpmdb/rpmdb.c:2757 #, c-format msgid "removing %d entries from %s index.\n" msgstr "%d girdi %s indeksinden siliniyor.\n" -#: rpmdb/rpmdb.c:2781 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n" -#: rpmdb/rpmdb.c:2802 +#: rpmdb/rpmdb.c:2806 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n" -#: rpmdb/rpmdb.c:2812 +#: rpmdb/rpmdb.c:2816 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "hata(%d) %s kaydýn %s dosyasýndan silinmesi\n" -#: rpmdb/rpmdb.c:2961 +#: rpmdb/rpmdb.c:2965 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "yeni paket örneðini tutma hatasý(%d)\n" -#: rpmdb/rpmdb.c:3015 +#: rpmdb/rpmdb.c:3019 #, fuzzy msgid "rpmdbAdd: skipping" msgstr "rpmdb: bozuk baþlýk örneði #%u alýndý, atlanýyor.\n" -#: rpmdb/rpmdb.c:3187 +#: rpmdb/rpmdb.c:3191 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "\"%s\" %s indeksine ekleniyor.\n" -#: rpmdb/rpmdb.c:3191 +#: rpmdb/rpmdb.c:3195 #, c-format msgid "adding %d entries to %s index.\n" msgstr "%d girdi %s indeksine ekleniyor.\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3235 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n" -#: rpmdb/rpmdb.c:3630 +#: rpmdb/rpmdb.c:3634 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "baþarýlý db3 yeniden oluþturma ertesinde %s kaldýrýlýyor\n" -#: rpmdb/rpmdb.c:3668 +#: rpmdb/rpmdb.c:3672 msgid "no dbpath has been set" msgstr "belirtilmiþ bir dbpath yok" -#: rpmdb/rpmdb.c:3700 +#: rpmdb/rpmdb.c:3704 #, c-format msgid "rebuilding database %s into %s\n" msgstr "%s veritabaný %s içinde yeniden oluþturuluyor\n" -#: rpmdb/rpmdb.c:3704 +#: rpmdb/rpmdb.c:3708 #, c-format msgid "temporary database %s already exists\n" msgstr "geçici veritabaný %s zaten mevcut\n" -#: rpmdb/rpmdb.c:3710 +#: rpmdb/rpmdb.c:3714 #, c-format msgid "creating directory %s\n" msgstr "%s dizini oluþturuluyor\n" -#: rpmdb/rpmdb.c:3712 +#: rpmdb/rpmdb.c:3716 #, c-format msgid "creating directory %s: %s\n" msgstr "%s dizini oluþturuluyor: %s\n" -#: rpmdb/rpmdb.c:3719 +#: rpmdb/rpmdb.c:3723 #, c-format msgid "opening old database with dbapi %d\n" msgstr "eski veritabaný dbapi %d ile açýlýyor\n" -#: rpmdb/rpmdb.c:3732 +#: rpmdb/rpmdb.c:3736 #, c-format msgid "opening new database with dbapi %d\n" msgstr "yeni veritabaný dbapi %d ile açýlýyor\n" -#: rpmdb/rpmdb.c:3761 +#: rpmdb/rpmdb.c:3765 #, fuzzy, c-format msgid "header #%u in the database is bad -- skipping.\n" msgstr "veritabanýndaki %u. kayýt hatalý -- atlanýyor\n" -#: rpmdb/rpmdb.c:3801 +#: rpmdb/rpmdb.c:3805 #, c-format msgid "cannot add record originally at %u\n" msgstr "kayýt özgün olarak %u e eklenemedi\n" -#: rpmdb/rpmdb.c:3819 +#: rpmdb/rpmdb.c:3823 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "veritabaný yeniden oluþturulamadý: mevcut veritabaný deðiþmeden\n" "yerinde býrakýldý\n" -#: rpmdb/rpmdb.c:3827 +#: rpmdb/rpmdb.c:3831 msgid "failed to replace old database with new database!\n" msgstr "eski veritabanýnýn yenisiyle deðiþtirilirmesi baþarýsýz!\n" -#: rpmdb/rpmdb.c:3829 +#: rpmdb/rpmdb.c:3833 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "kurtarmak için %s içindeki dosyalar %s deki dosyalarla deðiþtiriliyor" -#: rpmdb/rpmdb.c:3839 +#: rpmdb/rpmdb.c:3843 #, c-format msgid "removing directory %s\n" msgstr "%s dizini siliniyor\n" -#: rpmdb/rpmdb.c:3841 +#: rpmdb/rpmdb.c:3845 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s dizininin silinmesi baþarýsýz: %s\n" diff --git a/rpm.spec.in b/rpm.spec.in index 87f621e..61c099d 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -20,7 +20,7 @@ Name: rpm %define version @VERSION@ Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 0.64 +Release: 0.65 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Copyright: GPL @@ -470,6 +470,10 @@ exit 0 %{__includedir}/popt.h %changelog +* Fri Jan 31 2003 Jeff Johnson 4.2-0.65 +- fix: trap SIGPIPE, close database(s). +- configurable default query output format. + * Wed Jan 29 2003 Jeff Johnson 4.2-0.64 - pay attention to package color when upgrading identical packages. diff --git a/rpmdb/rpmdb.c b/rpmdb/rpmdb.c index a5da7f7..ca44af0 100644 --- a/rpmdb/rpmdb.c +++ b/rpmdb/rpmdb.c @@ -631,14 +631,15 @@ static void handler(int signum); static struct sigtbl_s { int signum; int active; - struct sigaction act; + void (*handler) (int signum); struct sigaction oact; } satbl[] = { - { SIGHUP, 0, { {handler} } }, - { SIGINT, 0, { {handler} } }, - { SIGTERM, 0, { {handler} } }, - { SIGQUIT, 0, { {handler} } }, - { -1, 0, { {NULL} } }, + { SIGHUP, 0, handler }, + { SIGINT, 0, handler }, + { SIGTERM, 0, handler }, + { SIGQUIT, 0, handler }, + { SIGPIPE, 0, handler }, + { -1, 0, NULL }, }; /*@=fullinitblock@*/ @@ -669,8 +670,9 @@ static int enableSignals(void) /*@globals caught, satbl, fileSystem @*/ /*@modifies caught, satbl, fileSystem @*/ { - struct sigtbl_s * tbl; sigset_t newMask, oldMask; + struct sigtbl_s * tbl; + struct sigaction act; int rc; (void) sigfillset(&newMask); /* block all signals */ @@ -680,7 +682,9 @@ static int enableSignals(void) if (tbl->active++ > 0) continue; (void) sigdelset(&caught, tbl->signum); - rc = sigaction(tbl->signum, &tbl->act, &tbl->oact); + memset(&act, 0, sizeof(act)); + act.sa_handler = tbl->handler; + rc = sigaction(tbl->signum, &act, &tbl->oact); if (rc) break; } return sigprocmask(SIG_SETMASK, &oldMask, NULL); @@ -708,7 +712,7 @@ int rpmdbCheckSignals(void) if (terminate) { rpmdb db; - rpmMessage(RPMMESS_WARNING, "Exiting on signal ...\n"); + rpmMessage(RPMMESS_DEBUG, "Exiting on signal ...\n"); /*@-newreftrans@*/ while ((db = rpmdbRock) != NULL) { /*@i@*/ rpmdbRock = db->db_next; -- 2.7.4